lang
stringclasses
2 values
license
stringclasses
13 values
stderr
stringlengths
0
343
commit
stringlengths
40
40
returncode
int64
0
128
repos
stringlengths
6
87.7k
new_contents
stringlengths
0
6.23M
new_file
stringlengths
3
311
old_contents
stringlengths
0
6.23M
message
stringlengths
6
9.1k
old_file
stringlengths
3
311
subject
stringlengths
0
4k
git_diff
stringlengths
0
6.31M
Java
apache-2.0
e81ee641d7ee7dbb7e4dbde792d7e79af4a7df72
0
apache/jena,apache/jena,samaitra/jena,apache/jena,tr3vr/jena,atsolakid/jena,kidaa/jena,kamir/jena,kamir/jena,adrapereira/jena,kamir/jena,CesarPantoja/jena,CesarPantoja/jena,atsolakid/jena,kidaa/jena,CesarPantoja/jena,adrapereira/jena,jianglili007/jena,adrapereira/jena,apache/jena,atsolakid/jena,kamir/jena,atsolakid/jen...
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you...
jena-base/src/main/java/org/apache/jena/atlas/lib/cache/CacheGuava.java
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you...
Clean code.
jena-base/src/main/java/org/apache/jena/atlas/lib/cache/CacheGuava.java
Clean code.
<ide><path>ena-base/src/main/java/org/apache/jena/atlas/lib/cache/CacheGuava.java <ide> import java.util.Iterator ; <ide> import java.util.concurrent.Callable ; <ide> import java.util.concurrent.ExecutionException ; <del>import java.util.function.BiConsumer; <add>import java.util.function.BiConsumer ; <ide> <ide> impo...
Java
bsd-3-clause
7a7c784ec853481bc194629babafbde56959f320
0
tomfisher/tripleplay,joansmith/tripleplay,joansmith/tripleplay,joansmith/tripleplay,tomfisher/tripleplay,tomfisher/tripleplay,tomfisher/tripleplay,joansmith/tripleplay,tomfisher/tripleplay,joansmith/tripleplay
// // Triple Play - utilities for use in PlayN-based games // Copyright (c) 2011-2013, Three Rings Design, Inc. - All rights reserved. // http://github.com/threerings/tripleplay/blob/master/LICENSE package tripleplay.ui; import playn.core.PlayN; import pythagoras.f.Dimension; import pythagoras.f.IPoint; import pythag...
core/src/main/java/tripleplay/ui/MenuHost.java
// // Triple Play - utilities for use in PlayN-based games // Copyright (c) 2011-2013, Three Rings Design, Inc. - All rights reserved. // http://github.com/threerings/tripleplay/blob/master/LICENSE package tripleplay.ui; import playn.core.PlayN; import pythagoras.f.Dimension; import pythagoras.f.IPoint; import pythag...
Fix double menu pop bug This has been around for a while and not fixed because it's usually a logical error to popup a 2nd menu before the previous one is finished animating. However, very fast users can cause a crash by tapping quickly on a button that pops a menu. Fix by invoking the cleanup code later.
core/src/main/java/tripleplay/ui/MenuHost.java
Fix double menu pop bug
<ide><path>ore/src/main/java/tripleplay/ui/MenuHost.java <ide> // set up the activation <ide> final Activation activation = new Activation(pop); <ide> <del> // connect to deactivation signal and do our cleanup <del> activation.deactivated = pop.menu.deactivated().connect(new Slot<Menu>() ...
Java
apache-2.0
5be5e4addba99234d24335462122d561c9ae3e8a
0
mpi2/PhenotypeData,mpi2/PhenotypeData,mpi2/PhenotypeData,mpi2/PhenotypeData,mpi2/PhenotypeData,mpi2/PhenotypeData
/******************************************************************************* * Copyright 2015 EMBL - European Bioinformatics Institute * * Licensed under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at...
data-model-solr/src/main/java/org/mousephenotype/cda/solr/service/ImageService.java
/******************************************************************************* * Copyright 2015 EMBL - European Bioinformatics Institute * * Licensed under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at...
filters refactored
data-model-solr/src/main/java/org/mousephenotype/cda/solr/service/ImageService.java
filters refactored
<ide><path>ata-model-solr/src/main/java/org/mousephenotype/cda/solr/service/ImageService.java <ide> for (FacetField facetField : response.getFacetFields()) { <ide> Set<String> filter = new TreeSet<>(); <ide> for (Count facet : facetField.getValues()) { <del> if (facet.getName().equals("expression") || facetF...
Java
bsd-2-clause
84952522ffc07b6e4639c0bc09dbac90a112b0d1
0
imagej/imagej-launcher,imagej/imagej-launcher,imagej/imagej-launcher
/* * #%L * ImageJ software for multidimensional image processing and analysis. * %% * Copyright (C) 2009 - 2014 Board of Regents of the University of * Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck * Institute of Molecular Cell Biology and Genetics. * %% * Redistribution and use in sourc...
src/main/java/net/imagej/launcher/ClassLauncher.java
/* * #%L * ImageJ software for multidimensional image processing and analysis. * %% * Copyright (C) 2009 - 2014 Board of Regents of the University of * Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck * Institute of Molecular Cell Biology and Genetics. * %% * Redistribution and use in sourc...
ClassLauncher: respect ij.debug when set Previously, ClassLauncher only entered debug mode if the DEBUG_IJ_LAUNCHER environment variable was set.
src/main/java/net/imagej/launcher/ClassLauncher.java
ClassLauncher: respect ij.debug when set
<ide><path>rc/main/java/net/imagej/launcher/ClassLauncher.java <ide> <ide> static { <ide> try { <del> debug = System.getenv("DEBUG_IJ_LAUNCHER") != null; <add> debug = Boolean.getBoolean("ij.debug") || <add> System.getenv("DEBUG_IJ_LAUNCHER") != null; <ide> } catch (Throwable t) { <ide> // ignore; Java ...
Java
apache-2.0
ff0dbdf68236a39640c94e4e978da65553b426c9
0
inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service
/* * Copyright 2012-2013 inBloom, Inc. and its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
sli/api/src/main/java/org/slc/sli/api/security/context/resolver/EdOrgHelper.java
/* * Copyright 2012-2013 inBloom, Inc. and its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
de2950 handle cycles when determining the set of edorg children
sli/api/src/main/java/org/slc/sli/api/security/context/resolver/EdOrgHelper.java
de2950 handle cycles when determining the set of edorg children
<ide><path>li/api/src/main/java/org/slc/sli/api/security/context/resolver/EdOrgHelper.java <ide> <ide> package org.slc.sli.api.security.context.resolver; <ide> <del>import java.util.ArrayList; <del>import java.util.Collection; <del>import java.util.Collections; <del>import java.util.HashMap; <del>import java.util.Has...
Java
bsd-3-clause
ebcfd6e659d98d9895a319ea4c56a26a6c271fa9
0
MaddTheSane/MacPaf,MaddTheSane/MacPaf,MaddTheSane/MacPaf
//MyDocument.java //MAF //Created by Logan Allred on Sun Dec 22 2002. //Copyright (c) 2002-2004 RedBugz Software. All rights reserved. import java.io.*; import java.lang.reflect.InvocationTargetException; import java.util.*; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; import org.apache.com...
MAF/src/MyDocument.java
//MyDocument.java //MAF //Created by Logan Allred on Sun Dec 22 2002. //Copyright (c) 2002-2004 RedBugz Software. All rights reserved. import java.io.*; import java.lang.reflect.InvocationTargetException; import java.util.*; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; import org.apache.com...
fix problem where not suppressing updates during initial file loading git-svn-id: 905cbd6d4c038cf348b718896e036a05930cc957@139 2a4b192d-170f-0410-9940-9fa4d9b264c7
MAF/src/MyDocument.java
fix problem where not suppressing updates during initial file loading
<ide><path>AF/src/MyDocument.java <ide> log.debug("fileWrapperToLoad:"+fileWrapperToLoad); <ide> if (fileWrapperToLoad != null) { <ide> log.debug("posting loaddocumentdata notification..."); <add> startSuppressUpdates(); <ide> NSNotificationCenter.defaultCenter().postNotification(CocoaUtils.LOAD_DOCUME...
Java
apache-2.0
error: pathspec 'src/test/java/com/googlesource/gerrit/plugins/x-docs/AsciidoctorFormatterTest.java' did not match any file(s) known to git
a9d392f12b93757f41afc84ee3c54a1a15698d32
1
GerritCodeReview/plugins_x-docs,GerritCodeReview/plugins_x-docs
// Copyright (C) 2016 The Android Open Source Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable ...
src/test/java/com/googlesource/gerrit/plugins/x-docs/AsciidoctorFormatterTest.java
Add a unit test for the AsciidoctorFormatter Change-Id: Iceff1d61512b9489e3a0a2bee9e3c5b208635853
src/test/java/com/googlesource/gerrit/plugins/x-docs/AsciidoctorFormatterTest.java
Add a unit test for the AsciidoctorFormatter
<ide><path>rc/test/java/com/googlesource/gerrit/plugins/x-docs/AsciidoctorFormatterTest.java <add>// Copyright (C) 2016 The Android Open Source Project <add>// <add>// Licensed under the Apache License, Version 2.0 (the "License"); <add>// you may not use this file except in compliance with the License. <add>// You may...
Java
apache-2.0
d12db835288de323f00ef7010655aba3f81d3da4
0
zion64/spring-ldap,rwinch/spring-ldap,vitorgv/spring-ldap,fzilic/spring-ldap,zion64/spring-ldap,rwinch/spring-ldap,zion64/spring-ldap,eddumelendez/spring-ldap,ChunPIG/spring-ldap,eddumelendez/spring-ldap,spring-projects/spring-ldap,wilkinsona/spring-ldap,vitorgv/spring-ldap,jaune162/spring-ldap,wilkinsona/spring-ldap,r...
/* * Copyright 2005-2007 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requi...
spring-ldap/src/main/java/org/springframework/ldap/core/DirContextAdapter.java
/* * Copyright 2005-2007 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requi...
Minor javadoc fix
spring-ldap/src/main/java/org/springframework/ldap/core/DirContextAdapter.java
Minor javadoc fix
<ide><path>pring-ldap/src/main/java/org/springframework/ldap/core/DirContextAdapter.java <ide> * @see #getStringAttribute(String) <ide> * @see #getStringAttributes(String) <ide> * @see #getObjectAttribute(String) <add> * @see #addAttributeValue(String, Object) <add> * @see #removeAttributeValue(String, Object) <ide>...
Java
bsd-3-clause
3617f45bc6c1fc3abb06159f43ea46b841489afa
0
tangentforks/piccolo2d.java
package edu.umd.cs.piccolo; import java.awt.event.FocusEvent; import java.awt.event.KeyEvent; import java.awt.geom.Point2D; import junit.framework.TestCase; import edu.umd.cs.piccolo.event.PInputEvent; import edu.umd.cs.piccolo.util.PBounds; import edu.umd.cs.piccolo.util.PPickPath; public class PInputMan...
core/src/test/java/edu/umd/cs/piccolo/PInputManagerTest.java
package edu.umd.cs.piccolo; import java.awt.event.FocusEvent; import java.awt.event.KeyEvent; import java.awt.geom.Point2D; import junit.framework.TestCase; import edu.umd.cs.piccolo.event.PInputEvent; import edu.umd.cs.piccolo.event.PInputEventListener; import edu.umd.cs.piccolo.util.PBounds; import edu.um...
Moved mockListener out of methods and into the setUp. it's common enough to warrant it. git-svn-id: d976a3fa9fd96fa05fb374ae920b691bf85e82cb@466 aadc08cf-1350-0410-9b51-cf97fce99a1b
core/src/test/java/edu/umd/cs/piccolo/PInputManagerTest.java
Moved mockListener out of methods and into the setUp. it's common enough to warrant it.
<ide><path>ore/src/test/java/edu/umd/cs/piccolo/PInputManagerTest.java <ide> <ide> import junit.framework.TestCase; <ide> import edu.umd.cs.piccolo.event.PInputEvent; <del>import edu.umd.cs.piccolo.event.PInputEventListener; <ide> import edu.umd.cs.piccolo.util.PBounds; <ide> import edu.umd.cs.piccolo.util.PPickPath; ...
Java
apache-2.0
62311fcd2fae6f6d34f210d068809daeaded2431
0
JCTools/JCTools
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed u...
jctools-core/src/main/java/org/jctools/util/UnsafeRefArrayAccess.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed u...
Javadoc cleanup
jctools-core/src/main/java/org/jctools/util/UnsafeRefArrayAccess.java
Javadoc cleanup
<ide><path>ctools-core/src/main/java/org/jctools/util/UnsafeRefArrayAccess.java <ide> <ide> import static org.jctools.util.UnsafeAccess.UNSAFE; <ide> <del>/** <del> * A concurrent access enabling class used by circular array based queues this class exposes an offset computation <del> * method along with differently m...
Java
mit
3405d180ce7453fd56c16daaed20f37ca9b02801
0
kmdouglass/Micro-Manager,kmdouglass/Micro-Manager
package org.micromanager.asidispim; import ij.IJ; import ij.ImagePlus; import ij.ImageStack; import ij.process.ImageProcessor; import java.awt.Cursor; import java.awt.Insets; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.beans.PropertyChangeEvent; import java.beans.P...
plugins/ASIdiSPIM/src/org/micromanager/asidispim/DataAnalysisPanel.java
package org.micromanager.asidispim; import ij.IJ; import ij.ImagePlus; import ij.ImageStack; import ij.process.ImageProcessor; import java.awt.Insets; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; import java.util.logging.Level; import java.util.logging.Logg...
Added a progress bar to file saving git-svn-id: 03a8048b5ee8463be5048a3801110fb50f378627@13361 d0ab736e-dc22-4aeb-8dc9-08def0aa14fd
plugins/ASIdiSPIM/src/org/micromanager/asidispim/DataAnalysisPanel.java
Added a progress bar to file saving
<ide><path>lugins/ASIdiSPIM/src/org/micromanager/asidispim/DataAnalysisPanel.java <ide> import ij.ImagePlus; <ide> import ij.ImageStack; <ide> import ij.process.ImageProcessor; <add>import java.awt.Cursor; <ide> import java.awt.Insets; <ide> import java.awt.event.ActionEvent; <ide> import java.awt.event.ActionListener;...
Java
apache-2.0
be8f0d0879e2b9df1cd7773bc2fe88cde26c707d
0
real-logic/Aeron,EvilMcJerkface/Aeron,mikeb01/Aeron,real-logic/Aeron,real-logic/Aeron,mikeb01/Aeron,EvilMcJerkface/Aeron,EvilMcJerkface/Aeron,real-logic/Aeron,mikeb01/Aeron,mikeb01/Aeron,EvilMcJerkface/Aeron
/* * Copyright 2014-2019 Real Logic Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModule.java
/* * Copyright 2014-2019 Real Logic Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
[Java] Formatting.
aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModule.java
[Java] Formatting.
<ide><path>eron-cluster/src/main/java/io/aeron/cluster/ConsensusModule.java <ide> <ide> if (null == invalidRequestCounter) <ide> { <del> invalidRequestCounter = <del> aeron.addCounter(CLUSTER_INVALID_REQUEST_COUNT_TYPE_ID, "Invalid cluster request count"); <add...
Java
agpl-3.0
44998769b6e919140728cf06f52f6b93785c42d7
0
mkl-public/testarea-itext5,mkl-public/testarea-itext5,mkl-public/testarea-itext5
package mkl.testarea.signature.analyze; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.OutputStream; import java.lang.reflect.Field; import java.nio.file.FileSystems; import java.nio.file.Files; import java.nio.file.Paths; import java.security.GeneralSecurityException; import java.sec...
src/main/java/mkl/testarea/signature/analyze/SignatureAnalyzer.java
package mkl.testarea.signature.analyze; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.OutputStream; import java.lang.reflect.Field; import java.nio.file.FileSystems; import java.nio.file.Files; import java.nio.file.Paths; import java.security.GeneralSecurityException; import java.sec...
Analyze signature bytes even without signed attributes Even in case of primitive signature SignerInfos without signed attributes the analysis of the signature bytes is of interest; thus, they are now analyzed in that case, too. Furthermore, DEROutputStream has been deprecated. Now ASN1OutputStream with ASN1Encoding.D...
src/main/java/mkl/testarea/signature/analyze/SignatureAnalyzer.java
Analyze signature bytes even without signed attributes
<ide><path>rc/main/java/mkl/testarea/signature/analyze/SignatureAnalyzer.java <ide> import org.bouncycastle.asn1.ASN1Encoding; <ide> import org.bouncycastle.asn1.ASN1ObjectIdentifier; <ide> import org.bouncycastle.asn1.ASN1OctetString; <add>import org.bouncycastle.asn1.ASN1OutputStream; <ide> import org.bouncycastle.as...
Java
apache-2.0
b3e4b690d80fa4ad706d7e28f60126cb174eda3a
0
square/sqlbrite,square/sqlbrite,square/sqlbrite,gabrielittner/sqlbrite,gabrielittner/sqlbrite,gabrielittner/sqlbrite
/* * Copyright (C) 2015 Square, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
sqlbrite/src/main/java/com/squareup/sqlbrite/BriteDatabase.java
/* * Copyright (C) 2015 Square, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
Remove creation of synthetic accessor method.
sqlbrite/src/main/java/com/squareup/sqlbrite/BriteDatabase.java
Remove creation of synthetic accessor method.
<ide><path>qlbrite/src/main/java/com/squareup/sqlbrite/BriteDatabase.java <ide> public @interface ConflictAlgorithm { <ide> } <ide> <del> private static String indentSql(String sql) { <add> static String indentSql(String sql) { <ide> return sql.replace("\n", "\n "); <ide> } <ide>
Java
apache-2.0
c96c8f97a8828ec344cfa5ae43e8df24e8f4f76a
0
pyamsoft/power-manager,pyamsoft/power-manager
/* * Copyright 2016 Peter Kenji Yamanaka * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
src/main/java/com/pyamsoft/powermanager/app/manager/backend/ManagerDoze.java
/* * Copyright 2016 Peter Kenji Yamanaka * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
Log full command
src/main/java/com/pyamsoft/powermanager/app/manager/backend/ManagerDoze.java
Log full command
<ide><path>rc/main/java/com/pyamsoft/powermanager/app/manager/backend/ManagerDoze.java <ide> } <ide> <ide> @SuppressLint("NewApi") <del> public static void executeDumpsys(@NonNull Context context, @NonNull String command) { <add> public static void executeDumpsys(@NonNull Context context, @NonNull String cmd) { ...
Java
apache-2.0
2defc41268237ee7be58167064fbb8e7bee593c3
0
AmeBel/relex,opencog/relex,leungmanhin/relex,williampma/relex,opencog/relex,linas/relex,virneo/relex,williampma/relex,rodsol/relex,virneo/relex,ainishdave/relex,ainishdave/relex,ainishdave/relex,AmeBel/relex,linas/relex,williampma/relex,linas/relex,williampma/relex,opencog/relex,rodsol/relex,ainishdave/relex,virneo/rel...
/* * Copyright 2009 Linas Vepstas * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or...
src/java_test/relex/test/TestRelEx.java
/* * Copyright 2009 Linas Vepstas * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or...
Added test case for one failing sentence
src/java_test/relex/test/TestRelEx.java
Added test case for one failing sentence
<ide><path>rc/java_test/relex/test/TestRelEx.java <ide> "_advmod(run, quietly)\n" + <ide> "_subj(run, she)\n" + <ide> "conj_and(quickly, quietly)\n"); <add> // conjoined verbs same object <add> rc &= test_sentence ("He steals and eats the orange.", ...
JavaScript
mit
2d9ef421a21edadad6e2c7931af0eaf30110f145
0
d4rkd0s/bob,d4rkd0s/bob
$(function() { window.onload = function() { console.log("%c ~~~ Bob v0.2 - Developed by d4rkd0s ~~~ ", "color: #FFFFFF; font-size: 12px; background: #3F1338;"); var game = new Phaser.Game(1156, 650, Phaser.AUTO, '', { preload: preload, create: create, update: update }); function preload() { ...
game.js
$(function() { window.onload = function() { console.log("%c ~~~ Bob v0.2 - Developed by d4rkd0s ~~~ ", "color: #FFFFFF; font-size: 12px; background: #3F1338;"); var game = new Phaser.Game(1156, 650, Phaser.AUTO, '', { preload: preload, create: create, update: update }); function preload() { ...
Gen on apple get()
game.js
Gen on apple get()
<ide><path>ame.js <ide> <ide> horse.velocity = game.physics.arcade.accelerateToObject(horse, apple, 50, 50, 50); <ide> <del> randY = Math.floor(Math.random()*(800-50+1)+50); <del> randX = Math.floor(Math.random()*(300-50+1)+50); <add> <ide> <ide> if ( apple.alive == true){ <ide> ...
Java
bsd-2-clause
2d87b1fdb55b7eb38ded91d50db6600b5aa16a79
0
wsldl123292/jodd,javachengwc/jodd,oetting/jodd,Artemish/jodd,oetting/jodd,mtakaki/jodd,mohanaraosv/jodd,southwolf/jodd,vilmospapp/jodd,wsldl123292/jodd,wjw465150/jodd,mohanaraosv/jodd,wsldl123292/jodd,javachengwc/jodd,Artemish/jodd,Artemish/jodd,tempbottle/jodd,Artemish/jodd,mosoft521/jodd,vilmospapp/jodd,oblac/jodd,te...
// Copyright (c) 2003-2009, Jodd Team (jodd.org). All Rights Reserved. package examples.util; import static jodd.util.ref.ReferenceType.*; import jodd.util.ref.ReferenceMap; import jodd.util.ref.ReferenceSet; import jodd.util.ThreadUtil; public class Weaks { public static void main(String[] args) { valueExample(...
mod/samples/src/examples/util/Weaks.java
// Copyright (c) 2003-2009, Jodd Team (jodd.org). All Rights Reserved. package examples.util; import static jodd.util.ref.ReferenceType.*; import jodd.util.ref.ReferenceMap; import jodd.util.ref.ReferenceSet; import jodd.util.ThreadUtil; public class Weaks { public static void main(String[] args) { valueExample(...
generics added to the example
mod/samples/src/examples/util/Weaks.java
generics added to the example
<ide><path>od/samples/src/examples/util/Weaks.java <ide> } <ide> <ide> static void keyExample() { <del> ReferenceMap rm = new ReferenceMap(WEAK, STRONG); // true <add> ReferenceMap<String, String> rm = new ReferenceMap<String, String>(WEAK, STRONG); // true <ide> //ReferenceMap rm = new ReferenceMap(STRONG, ...
Java
mit
c66ec92e1a134d984c8bc395137b68454aa2ec51
0
mezz/JustEnoughItems,mezz/JustEnoughItems
package mezz.jei.load; import java.util.ArrayList; import java.util.List; import java.util.function.Consumer; import net.minecraft.resources.ResourceLocation; import com.google.common.base.Stopwatch; import mezz.jei.api.IModPlugin; import mezz.jei.plugins.vanilla.VanillaPlugin; import org.apache.logging.log4j.LogMan...
src/main/java/mezz/jei/load/PluginCaller.java
package mezz.jei.load; import java.util.ArrayList; import java.util.List; import java.util.function.Consumer; import net.minecraft.resources.ResourceLocation; import com.google.common.base.Stopwatch; import mezz.jei.api.IModPlugin; import mezz.jei.plugins.vanilla.VanillaPlugin; import org.apache.logging.log4j.LogMan...
Log plugin load times at info level
src/main/java/mezz/jei/load/PluginCaller.java
Log plugin load times at info level
<ide><path>rc/main/java/mezz/jei/load/PluginCaller.java <ide> for (IModPlugin plugin : plugins) { <ide> try { <ide> ResourceLocation pluginUid = plugin.getPluginUid(); <del> LOGGER.debug("{}: {} ...", title, pluginUid); <add> LOGGER.info("{}: {} ...", title, pluginUid); <ide> Stopwatch stopwatch = St...
Java
mit
a5a6841899f93fded5f413b569ef5c0ef23a43bc
0
mcflugen/wmt-rest,mcflugen/wmt-rest
/** * <License> */ package edu.colorado.csdms.wmt.client.control; import java.util.HashMap; import java.util.Map.Entry; import com.google.gwt.core.client.GWT; import com.google.gwt.core.client.JavaScriptObject; import com.google.gwt.http.client.Request; import com.google.gwt.http.client.RequestBuilder; import com.g...
gui/src/edu/colorado/csdms/wmt/client/control/DataTransfer.java
/** * <License> */ package edu.colorado.csdms.wmt.client.control; import java.util.HashMap; import java.util.Map.Entry; import com.google.gwt.core.client.GWT; import com.google.gwt.core.client.JavaScriptObject; import com.google.gwt.http.client.Request; import com.google.gwt.http.client.RequestBuilder; import com.g...
Fix issue with the "Save As" dialog popping up when saving an already-saved model Need to store id of saved model.
gui/src/edu/colorado/csdms/wmt/client/control/DataTransfer.java
Fix issue with the "Save As" dialog popping up when saving an already-saved model
<ide><path>ui/src/edu/colorado/csdms/wmt/client/control/DataTransfer.java <ide> data.setMetadata(jso); <ide> } <ide> if (type.matches("new/edit")) { <del> DataTransfer.getModelList(data); <ide> data.modelIsSaved(true); <ide> data.getPerspective().setModelPanelTitle...
JavaScript
apache-2.0
1434a54008bcb1c01f180801f6c7784c251bb5dd
0
redforks/closure-library,joeltine/closure-library,federkasten/closure-library,chone/closure-library,talshani/google-closure-library,gterzian/closure-library,redforks/closure-library,ducklord/closure-library,kencheung/closure-library,concavelenz/closure-library,jupeter/composer-closure-library,mail-apps/closure-library,...
// Copyright 2007 The Closure Library Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless requ...
closure/goog/ui/sliderbase.js
// Copyright 2007 The Closure Library Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless requ...
Fixed a memory leak. R=arv DELTA=8 (8 added, 0 deleted, 0 changed) Revision created by MOE tool push_codebase. MOE_MIGRATION=1290 git-svn-id: a40d3b3c31bd0c2f1a55c3521b995692a6f04bd9@840 0b95b8e8-c90f-11de-9d4f-f947ee5921c8
closure/goog/ui/sliderbase.js
<ide><path>losure/goog/ui/sliderbase.js <ide> this.mouseWheelHandler_.dispose(); <ide> delete this.mouseWheelHandler_; <ide> } <add> if (this.valueDragger_) { <add> this.valueDragger_.dispose(); <add> delete this.valueDragger_; <add> } <add> if (this.extentDragger_) { <add> this.extentDragger_.dis...
Java
apache-2.0
041b3e4b68139ab39f022dcf3c174a815501e4b9
0
baiwyc119/aerogear-unifiedpush-server,IvanGurtler/aerogear-unifiedpush-server,aerobase/unifiedpush-server,julioa/aerogear-unifiedpush-server,julioa/aerogear-unifiedpush-server,edewit/aerogear-unifiedpush-server,thradec/aerogear-unifiedpush-server,lfryc/aerogear-unifiedpush-server,andresgalante/aerogear-unifiedpush-serv...
/** * JBoss, Home of Professional Open Source * Copyright Red Hat, Inc., and individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/lic...
push/src/main/java/org/jboss/aerogear/unifiedpush/message/sender/WNSPushNotificationSender.java
/** * JBoss, Home of Professional Open Source * Copyright Red Hat, Inc., and individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licens...
Using AG logger
push/src/main/java/org/jboss/aerogear/unifiedpush/message/sender/WNSPushNotificationSender.java
Using AG logger
<ide><path>ush/src/main/java/org/jboss/aerogear/unifiedpush/message/sender/WNSPushNotificationSender.java <ide> * you may not use this file except in compliance with the License. <ide> * You may obtain a copy of the License at <ide> * <del> * http://www.apache.org/licenses/LICENSE-2.0 <add> * http://www.apache....
Java
apache-2.0
1d824b5f32207c4283141d65ad219ef113b93083
0
robertdale/tinkerpop,krlohnes/tinkerpop,jorgebay/tinkerpop,apache/incubator-tinkerpop,apache/tinkerpop,jorgebay/tinkerpop,artem-aliev/tinkerpop,krlohnes/tinkerpop,pluradj/incubator-tinkerpop,robertdale/tinkerpop,krlohnes/tinkerpop,artem-aliev/tinkerpop,krlohnes/tinkerpop,apache/incubator-tinkerpop,artem-aliev/tinkerpop...
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/CloseableIterator.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
Finalize a variable CTR
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/CloseableIterator.java
Finalize a variable CTR
<ide><path>remlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/CloseableIterator.java <ide> // do nothing by default <ide> } <ide> <del> public static <T> void closeIterator(Iterator<T> iterator) { <add> public static <T> void closeIterator(final Iterator<T> iterator) { <ide> ...
Java
mit
0d434ee2d5e19aea3e086884bad12d87a5c0d0d9
0
JCThePants/TPRegions
/* This file is part of TPRegions for Bukkit, licensed under the MIT License (MIT). * * Copyright (c) JCThePants (www.jcwhatever.com) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software w...
src/com/jcwhatever/bukkit/tpregions/regions/TPRegionManager.java
/* This file is part of TPRegions for Bukkit, licensed under the MIT License (MIT). * * Copyright (c) JCThePants (www.jcwhatever.com) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software w...
refactoring, add comments
src/com/jcwhatever/bukkit/tpregions/regions/TPRegionManager.java
refactoring, add comments
<ide><path>rc/com/jcwhatever/bukkit/tpregions/regions/TPRegionManager.java <ide> settings.runBatchOperation(new BatchOperation() { <ide> <ide> @Override <del> public void run(IDataNode config) { <add> public void run(IDataNode dataNode) { <ide> region.setCoords(p1, p2); <ide> } <ide> });
Java
epl-1.0
1c527f8a873f0e7fb47ec724faee479f7b8bea7d
0
gastaldi/furnace,forge/furnace,pplatek/furnace,koentsje/forge-furnace
/* ] * Copyright 2012 Red Hat, Inc. and/or its affiliates. * * Licensed under the Eclipse Public License version 1.0, available at * http://www.eclipse.org/legal/epl-v10.html */ package org.jboss.forge.furnace.impl.modules; import java.io.File; import java.io.IOException; import java.lang.reflect.Method; import ja...
container/src/main/java/org/jboss/forge/furnace/impl/modules/AddonModuleLoader.java
/* ] * Copyright 2012 Red Hat, Inc. and/or its affiliates. * * Licensed under the Eclipse Public License version 1.0, available at * http://www.eclipse.org/legal/epl-v10.html */ package org.jboss.forge.furnace.impl.modules; import java.io.File; import java.io.IOException; import java.lang.reflect.Method; import ja...
Fix classloader ordering
container/src/main/java/org/jboss/forge/furnace/impl/modules/AddonModuleLoader.java
Fix classloader ordering
<ide><path>ontainer/src/main/java/org/jboss/forge/furnace/impl/modules/AddonModuleLoader.java <ide> return null; <ide> } <ide> <del> builder.addDependency(DependencySpec.createLocalDependencySpec(PathFilters.acceptAll(), <del> PathFilter...
Java
apache-2.0
1439ba78081a6ad4293bc02f0e5ac419dc974824
0
sunhai1988/nutz-book-project,wendal/nutz-book-project,wendal/nutz-book-project,sunhai1988/nutz-book-project,sunhai1988/nutz-book-project,sunhai1988/nutz-book-project,wendal/nutz-book-project,wendal/nutz-book-project
src/org/nutz/integration/shiro/ShiroSessionProvider.java
package org.nutz.integration.shiro; import javax.servlet.ServletContext; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.shiro.web.servlet.ShiroHttpServletRequest; import org.nutz.mvc.SessionProvider; /** * ไปฃ็†Nutzๅ†…้ƒจไฝฟ็”จSession็š„่ฐƒ็”จไธบShiro็š„Shiro็š„session * @a...
remove: ShiroSessionProviderๅœจshiroๆ’ไปถๅทฒ็ปๆœ‰ๆไพ›
src/org/nutz/integration/shiro/ShiroSessionProvider.java
remove: ShiroSessionProviderๅœจshiroๆ’ไปถๅทฒ็ปๆœ‰ๆไพ›
<ide><path>rc/org/nutz/integration/shiro/ShiroSessionProvider.java <del>package org.nutz.integration.shiro; <del> <del>import javax.servlet.ServletContext; <del>import javax.servlet.http.HttpServletRequest; <del>import javax.servlet.http.HttpServletResponse; <del> <del>import org.apache.shiro.web.servlet.ShiroHttpServl...
Java
mit
8c48677789c4fa8e1d5ac74ea9a171094c375605
0
huangj7/doco,tj-recess/doco,marcosvidolin/doco
package com.vidolima.doco; import java.util.ArrayList; import java.util.Date; import java.util.List; import com.google.appengine.api.search.Document; import com.google.appengine.api.search.Field; import com.google.appengine.api.search.GeoPoint; import com.vidolima.doco.annotation.DocumentField; import com.vidolima.do...
src/main/java/com/vidolima/doco/DocumentParser.java
package com.vidolima.doco; import java.util.ArrayList; import java.util.Date; import java.util.List; import com.google.appengine.api.search.Document; import com.google.appengine.api.search.Field; import com.google.appengine.api.search.GeoPoint; import com.vidolima.doco.annotation.DocumentField; import com.vidolima.do...
Removed @SuppressWarnings(rawtypes)
src/main/java/com/vidolima/doco/DocumentParser.java
Removed @SuppressWarnings(rawtypes)
<ide><path>rc/main/java/com/vidolima/doco/DocumentParser.java <ide> * @throws IllegalAccessException <ide> * @throws IllegalArgumentException <ide> */ <del> @SuppressWarnings("rawtypes") <ide> Document parseDocument(Object obj, Class<?> classOfObj) <ide> throws IllegalArgumentException, IllegalAccessException...
JavaScript
mit
4d4e56006c52a5e3e71d68f5cc861cd759f362a6
0
briantanner/eris,Flyy-y/eris,Datamats/eris,abalabahaha/eris
"use strict"; const Bucket = require("./util/Bucket"); const Channel = require("./core/Channel"); const Collection = require("./util/Collection"); const Endpoints = require("./Constants").Endpoints; const EventEmitter = require("eventemitter3"); const ExtendedUser = require("./core/ExtendedUser"); const GroupChannel =...
lib/Client.js
"use strict"; const Bucket = require("./util/Bucket"); const Channel = require("./core/Channel"); const Collection = require("./util/Collection"); const Endpoints = require("./Constants").Endpoints; const EventEmitter = require("eventemitter3"); const ExtendedUser = require("./core/ExtendedUser"); const GroupChannel =...
Make docs on base64 parameters a bit clearer (#53) * Make docs on base64 string parameters a bit clearer * (โ•ฏยฐโ–กยฐ๏ผ‰โ•ฏ๏ธต โ”ปโ”โ”ป
lib/Client.js
Make docs on base64 parameters a bit clearer (#53)
<ide><path>ib/Client.js <ide> * @arg {String} channelID The ID of the channel <ide> * @arg {Object} options The properties to edit <ide> * @arg {String} [options.name] The name of the channel <del> * @arg {String} [options.icon] The icon of the channel as a base64 data string (group channels only) <add> ...
Java
mpl-2.0
9f91dcae0e0f7928e1284eb4f858b95b40e19f51
0
openMF/android-client,openMF/android-client
/* * This project is licensed under the open source MPL V2. * See https://github.com/openMF/android-client/blob/master/LICENSE.md */ package com.mifos.mifosxdroid.online.savingaccountsummary; import android.app.Activity; import android.os.Bundle; import android.support.v4.app.FragmentTransaction; import android.ut...
mifosng-android/src/main/java/com/mifos/mifosxdroid/online/savingaccountsummary/SavingsAccountSummaryFragment.java
/* * This project is licensed under the open source MPL V2. * See https://github.com/openMF/android-client/blob/master/LICENSE.md */ package com.mifos.mifosxdroid.online.savingaccountsummary; import android.app.Activity; import android.os.Bundle; import android.support.v4.app.FragmentTransaction; import android.ut...
Fix:Wrong Toolbar title in Savings Account summary
mifosng-android/src/main/java/com/mifos/mifosxdroid/online/savingaccountsummary/SavingsAccountSummaryFragment.java
Fix:Wrong Toolbar title in Savings Account summary
<ide><path>ifosng-android/src/main/java/com/mifos/mifosxdroid/online/savingaccountsummary/SavingsAccountSummaryFragment.java <ide> savingsAccountType = getArguments().getParcelable(Constants.SAVINGS_ACCOUNT_TYPE); <ide> parentFragment = getArguments().getBoolean(Constants.IS_A_PARENT_FRAGMENT); ...
Java
bsd-3-clause
f8b18fa275dce742d3141fcfb638db9ff8594605
0
compgen-io/ngsutilsj,compgen-io/ngsutilsj
package io.compgen.ngsutils.cli.bam; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.OutputStream; import java.nio.channels.FileChannel; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import htsjdk.samt...
src/java/io/compgen/ngsutils/cli/bam/BamDiscord.java
package io.compgen.ngsutils.cli.bam; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.OutputStream; import java.nio.channels.FileChannel; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import htsjdk.samt...
discord / concordant reads must have both pairs mapped.
src/java/io/compgen/ngsutils/cli/bam/BamDiscord.java
discord / concordant reads must have both pairs mapped.
<ide><path>rc/java/io/compgen/ngsutils/cli/bam/BamDiscord.java <ide> import io.compgen.ngsutils.bam.support.ReadUtils; <ide> import io.compgen.ngsutils.support.CloseableFinalizer; <ide> <del>@Command(name="bam-discord", desc="Extract all discordant reads from a BAM file", category="bam") <add>@Command(name="bam-discor...
Java
apache-2.0
077cf2dbf8b63b4600ff19b36de2e24448f84439
0
jboss-qa/jcontainer-manager,jboss-qa/jcontainer-manager
/* * Copyright 2015 Red Hat Inc. and/or its affiliates and other contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unle...
core/src/main/java/org/jboss/qa/jcontainer/util/PidUtils.java
package org.jboss.qa.jcontainer.util; import java.lang.management.ManagementFactory; import lombok.extern.slf4j.Slf4j; @Slf4j public class PidUtils { private static Long cachedPid; public static Long getPID() { if (cachedPid == null) { initPid(); } log.debug("My PID is {}", cachedPid); return cachedPi...
[relates #60] Fix checkstyle errors
core/src/main/java/org/jboss/qa/jcontainer/util/PidUtils.java
[relates #60] Fix checkstyle errors
<ide><path>ore/src/main/java/org/jboss/qa/jcontainer/util/PidUtils.java <add>/* <add> * Copyright 2015 Red Hat Inc. and/or its affiliates and other contributors. <add> * <add> * Licensed under the Apache License, Version 2.0 (the "License"); <add> * you may not use this file except in compliance with the License. <add>...
Java
apache-2.0
fcd5ae6d95cd2fa4e25a324945d4b8cb0075309c
0
philbritton/dswarm,dswarm/dswarm,zazi/dswarm,janpolowinski/dswarm,knutwalker/dswarm,zazi/dswarm,dswarm/dswarm,dswarm/dswarm,philbritton/dswarm,janpolowinski/dswarm,knutwalker/dswarm,knutwalker/dswarm,philbritton/dswarm,zazi/dswarm
/** * Copyright (C) 2013, 2014 SLUB Dresden & Avantgarde Labs GmbH (<code@dswarm.org>) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENS...
persistence/src/test/java/org/dswarm/persistence/service/schema/test/ClaszServiceTest.java
/** * Copyright (C) 2013, 2014 SLUB Dresden & Avantgarde Labs GmbH (<code@dswarm.org>) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENS...
[DD-701] refactored to the usage of Utility and removed DB cleanup
persistence/src/test/java/org/dswarm/persistence/service/schema/test/ClaszServiceTest.java
[DD-701] refactored to the usage of Utility and removed DB cleanup
<ide><path>ersistence/src/test/java/org/dswarm/persistence/service/schema/test/ClaszServiceTest.java <ide> */ <ide> package org.dswarm.persistence.service.schema.test; <ide> <del>import com.fasterxml.jackson.core.JsonProcessingException; <del>import com.fasterxml.jackson.databind.ObjectMapper; <del>import org.junit.A...
JavaScript
mit
0b255d8a93710f71357ac9273eca150df0dc632c
0
AlexanderLindsay/dailybudgeteer,AlexanderLindsay/dailybudgeteer,AlexanderLindsay/dailybudgeteer
var gulp = require('gulp'); var ts = require('gulp-typescript'); var concat = require('gulp-concat'); var merge = require('merge-stream'); var ignore = require('gulp-ignore'); var rimraf = require('gulp-rimraf'); var packager = require('electron-packager'); var semanticBuild = require('./semantic/tasks/build'); gulp.t...
gulpfile.js
var gulp = require('gulp'); var ts = require('gulp-typescript'); var concat = require('gulp-concat'); var merge = require('merge-stream'); var ignore = require('gulp-ignore'); var rimraf = require('gulp-rimraf'); var packager = require('electron-packager'); var semanticBuild = require('./semantic/tasks/build'); gulp.t...
changed name of packaged app to PerDay
gulpfile.js
changed name of packaged app to PerDay
<ide><path>ulpfile.js <ide> arch: "x64", <ide> dir: ".", <ide> platform: "win32", <del> name: "PerTurn", <add> name: "PerDay", <ide> version: "0.36.9", <ide> out: "builds", <ide> overwrite: true,
Java
apache-2.0
193b44dca1a484a50d37b9a03633a81400488895
0
ahb0327/intellij-community,blademainer/intellij-community,apixandru/intellij-community,ibinti/intellij-community,kool79/intellij-community,supersven/intellij-community,ryano144/intellij-community,muntasirsyed/intellij-community,allotria/intellij-community,joewalnes/idea-community,kdwink/intellij-community,diorcety/inte...
<caret>// "Make 'a' extend 'b'" "true" class a extends b { void f(b b, Runnable r) { f(this, null); } } class b { }
java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/changeParameterClass/after2.java
// "Make 'a' extend 'b'" "true" <caret>class a extends b { void f(b b, Runnable r) { f(this, null); } } class b { }
Empty import list placement and comment binding (test data fixed)
java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/changeParameterClass/after2.java
Empty import list placement and comment binding (test data fixed)
<ide><path>ava/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/changeParameterClass/after2.java <del>// "Make 'a' extend 'b'" "true" <del><caret>class a extends b { <add><caret>// "Make 'a' extend 'b'" "true" <add>class a extends b { <ide> void f(b b, Runnable r) { <ide> f(this, null); <ide> ...
Java
apache-2.0
baa6d3c7c23b33f2344f64f4aa332918061ca90c
0
cuba-platform/cuba,cuba-platform/cuba,cuba-platform/cuba,dimone-kun/cuba,dimone-kun/cuba,dimone-kun/cuba
/* * Copyright (c) 2008-2015 Haulmont. All rights reserved. * Use is subject to license terms, see http://www.cuba-platform.com/license for details. */ package com.haulmont.cuba.core.sys; import com.haulmont.bali.util.Preconditions; import com.haulmont.chile.core.model.MetaClass; import com.haulmont.chile.core.mod...
modules/core/src/com/haulmont/cuba/core/sys/FetchGroupManager.java
/* * Copyright (c) 2008-2015 Haulmont. All rights reserved. * Use is subject to license terms, see http://www.cuba-platform.com/license for details. */ package com.haulmont.cuba.core.sys; import com.haulmont.bali.util.Preconditions; import com.haulmont.chile.core.model.MetaClass; import com.haulmont.chile.core.mod...
"Cannot get unfetched attribute" when loading an object graph with one-to-many and one-to-one links. #PL-6405
modules/core/src/com/haulmont/cuba/core/sys/FetchGroupManager.java
"Cannot get unfetched attribute" when loading an object graph with one-to-many and one-to-one links. #PL-6405
<ide><path>odules/core/src/com/haulmont/cuba/core/sys/FetchGroupManager.java <ide> import com.haulmont.chile.core.model.MetaClass; <ide> import com.haulmont.chile.core.model.MetaProperty; <ide> import com.haulmont.chile.core.model.MetaPropertyPath; <add>import com.haulmont.chile.core.model.Range; <ide> import com.haulm...
Java
apache-2.0
b718d4183bf2ff31de285e0b0f3f0b5c23099ccd
0
apache/geronimo,apache/geronimo,apache/geronimo,apache/geronimo
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
applications/console-standard/src/java/org/apache/geronimo/console/databasemanager/wizard/DatabasePoolPortlet.java
/** * * Copyright 2003-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required...
Changed processing order for the max / min pool sizes in the DatabaseWizardPortlet git-svn-id: d69ffe4ccc4861bf06065bd0072b85c931fba7ed@356391 13f79535-47bb-0310-9956-ffa450edef68
applications/console-standard/src/java/org/apache/geronimo/console/databasemanager/wizard/DatabasePoolPortlet.java
Changed processing order for the max / min pool sizes in the DatabaseWizardPortlet
<ide><path>pplications/console-standard/src/java/org/apache/geronimo/console/databasemanager/wizard/DatabasePoolPortlet.java <ide> SinglePool pool = new SinglePool(); <ide> manager.setPoolSingle(pool); <ide> pool.setMatchOne(true); <add> // Max Size needs t...
Java
bsd-2-clause
25dc020a29b7f40124f58ce872017f7f6e10fb11
0
chototsu/MikuMikuStudio,chototsu/MikuMikuStudio,chototsu/MikuMikuStudio,chototsu/MikuMikuStudio
/* * Copyright (c) 2003, jMonkeyEngine - Mojo Monkey Coding * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this ...
src/com/jme/input/InputSystem.java
/* * Copyright (c) 2003, jMonkeyEngine - Mojo Monkey Coding * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this ...
Fixed bug where checking null of keyboard rather than mouse for getMouseInput. git-svn-id: 5afc437a751a4ff2ced778146f5faadda0b504ab@113 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
src/com/jme/input/InputSystem.java
Fixed bug where checking null of keyboard rather than mouse for getMouseInput.
<ide><path>rc/com/jme/input/InputSystem.java <ide> * @see com.jme.input.KeyInput <ide> * @see com.jme.input.MouseInput <ide> * @author Mark Powell <del> * @version $Id: InputSystem.java,v 1.1 2003-10-23 21:24:18 mojomonkey Exp $ <add> * @version $Id: InputSystem.java,v 1.2 2003-10-26 17:48:56 mojomonkey Exp $ <ide> ...
Java
mit
e685b4d5d1073a3f6a59698410419b8adc7943b2
0
mrunde/Bachelor-Thesis,mrunde/Bachelor-Thesis
package de.mrunde.bachelorthesis.activities; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.util.ArrayList; import java.util.Arrays; import java.util.Calendar; import java.util....
src/de/mrunde/bachelorthesis/activities/NaviActivity.java
package de.mrunde.bachelorthesis.activities; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.util.ArrayList; import java.util.Arrays; import java.util.Calendar; import java.util....
Fix error of displaying instruction image at first instruction
src/de/mrunde/bachelorthesis/activities/NaviActivity.java
Fix error of displaying instruction image at first instruction
<ide><path>rc/de/mrunde/bachelorthesis/activities/NaviActivity.java <ide> import de.mrunde.bachelorthesis.basics.Landmark; <ide> import de.mrunde.bachelorthesis.basics.LandmarkCategory; <ide> import de.mrunde.bachelorthesis.basics.Maneuver; <add>import de.mrunde.bachelorthesis.instructions.GlobalInstruction; <ide> impo...
JavaScript
mit
0e10ec81c02df01d9fae13ab239d278e375a844d
0
armandocat/steemit-more-info,armandocat/steemit-more-info
(function(){ var makePostBottomBarFloating = function() { var tags = $('.TagList__horizontal'); var postFooter = $('.PostFull__footer'); if(tags.length && postFooter.length) { if(tags.closest('.smi-post-footer-wrapper-2').length){ return; } $('#post_overlay').on('scroll', f...
src/post_floating_bottom_bar.js
(function(){ var makePostBottomBarFloating = function() { var tags = $('.TagList__horizontal'); var postFooter = $('.PostFull__footer'); if(tags.length && postFooter.length) { if(tags.parent().is('smi-post-footer-wrapper-2')){ return; } $('#post_overlay').on('scroll', funct...
Fix floating bar in posts
src/post_floating_bottom_bar.js
Fix floating bar in posts
<ide><path>rc/post_floating_bottom_bar.js <ide> <ide> if(tags.length && postFooter.length) { <ide> <del> if(tags.parent().is('smi-post-footer-wrapper-2')){ <add> if(tags.closest('.smi-post-footer-wrapper-2').length){ <ide> return; <ide> } <ide> <ide> }); <ide> <ide> window.SteemMoreI...
Java
bsd-3-clause
aadc0371ecf9b98845adb7d4a0b42983fac3aea6
0
NCIP/cagrid,NCIP/cagrid,NCIP/cagrid,NCIP/cagrid
/* * Created on Jun 11, 2006 */ package gov.nci.nih.cagrid.tests.core.steps; import gov.nci.nih.cagrid.tests.core.util.CaDSRExtractUtils; import gov.nih.nci.cadsr.umlproject.domain.Project; import gov.nih.nci.cadsr.umlproject.domain.SemanticMetadata; import gov.nih.nci.cadsr.umlproject.domain.UMLAttributeMetadata; i...
cagrid-1-0/tests/projects/coretests/test/src/java/gov/nci/nih/cagrid/tests/core/steps/CheckCaDSRServiceStep.java
/* * Created on Jun 11, 2006 */ package gov.nci.nih.cagrid.tests.core.steps; import gov.nci.nih.cagrid.tests.core.util.CaDSRExtractUtils; import gov.nih.nci.cadsr.umlproject.domain.Project; import gov.nih.nci.cadsr.umlproject.domain.SemanticMetadata; import gov.nih.nci.cadsr.umlproject.domain.UMLAttributeMetadata; i...
fixed a couple problems with package name checking and nulls
cagrid-1-0/tests/projects/coretests/test/src/java/gov/nci/nih/cagrid/tests/core/steps/CheckCaDSRServiceStep.java
fixed a couple problems with package name checking and nulls
<ide><path>agrid-1-0/tests/projects/coretests/test/src/java/gov/nci/nih/cagrid/tests/core/steps/CheckCaDSRServiceStep.java <ide> <ide> DomainModel extract = null; <ide> if (extractFile == null) { <del> //extract = CaDSRExtractUtils.findExtract(cadsr, "Genomic Identifiers"); <del> extract = CaDSRExtractUtils....
Java
apache-2.0
aa46de674ee8b7b25c5ae65a0d8e0668eece8ca9
0
FlamingoIndustries/Calculator3.0
package formulator; import java.util.HashMap; import java.util.Vector; import javax.swing.SwingUtilities; public class GraphControl { public Vector<GraphFunction> graphlist = new Vector<GraphFunction>(); public HashMap<String, FormulaElement> formulas; public String text; public GraphControl(Vector<GraphFunctio...
Calc3/src/formulator/GraphControl.java
package formulator; import java.util.HashMap; import java.util.Vector; import javax.swing.SwingUtilities; public class GraphControl { public Vector<GraphFunction> graphlist = new Vector<GraphFunction>(); public HashMap<String, FormulaElement> formulas; public GraphControl(Vector<GraphFunction> graphs, HashMap<St...
title thingy
Calc3/src/formulator/GraphControl.java
title thingy
<ide><path>alc3/src/formulator/GraphControl.java <ide> <ide> public Vector<GraphFunction> graphlist = new Vector<GraphFunction>(); <ide> public HashMap<String, FormulaElement> formulas; <del> public GraphControl(Vector<GraphFunction> graphs, HashMap<String, FormulaElement> map){ <add> public String text; <add> publ...
JavaScript
mit
395c3d524a0228244313093bbfa81bf795095b69
0
kovacsv/Online3DViewer,kovacsv/Online3DViewer,kovacsv/Online3DViewer,kovacsv/Online3DViewer
OV.ThreeImporter = class extends OV.ImporterBase { constructor () { super (); } CanImportExtension (extension) { return extension === 'fbx'; } GetKnownFileFormats () { return { 'fbx' : OV.FileFormat.Binary }; } GetUpDirection () ...
source/threejs/threeimporter.js
OV.ThreeImporter = class extends OV.ImporterBase { constructor () { super (); } CanImportExtension (extension) { return extension === 'fbx'; } GetKnownFileFormats () { return { 'fbx' : OV.FileFormat.Binary }; } GetUpDirection () ...
Transform meshes.
source/threejs/threeimporter.js
Transform meshes.
<ide><path>ource/threejs/threeimporter.js <ide> // TODO: merge same materials <ide> // TODO: PBR materials <ide> console.log (child); <del> setTimeout (() => { <del> console.log (child); <del> }, 200...
JavaScript
mit
c8a685c800a9a40b936c84a2c94f10526bab6823
0
Medallyon/exambot,Medallyon/exambot
// import external modules necessary for this project var Discord = require("Discord.js") , colors = require("colors/safe") , fs = require("fs-extra") , wikijs = require("wikijs"); // import external files, such as the config var config = require("./config.json"); // initiate a new client from the Discord.js library ...
index.js
// import external modules necessary for this project var Discord = require("Discord.js") , colors = require("colors/safe") , fs = require("fs-extra") , wikijs = require("wikijs"); // import external files, such as the config var config = require("./config.json"); // initiate a new client from the Discord.js library ...
Added comments.
index.js
Added comments.
<ide><path>ndex.js <ide> <ide> client.on("ready", function() <ide> { <add> // the bot is logged in - time to console.log() <ide> console.log(colors.log("Logged in and ready to go!\nCurrently serving " + client.guilds.size + " guilds and " + client.users.size + " users.")); <ide> }) <ide> <ide> client.on("messa...
Java
apache-2.0
a6a99d1328fbf94725b11a349ed1d1f379ca5f9d
0
blademainer/intellij-community,semonte/intellij-community,Distrotech/intellij-community,petteyg/intellij-community,semonte/intellij-community,ryano144/intellij-community,ibinti/intellij-community,idea4bsd/idea4bsd,jexp/idea2,FHannes/intellij-community,caot/intellij-community,izonder/intellij-community,slisson/intellij-...
package com.intellij.openapi.vcs.actions; import com.intellij.CommonBundle; import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.openapi.actionSystem.Presentation; import com.intellij.openapi.project.Project; import com.intellij.openapi.ui.Messages; import com.intellij.openapi.ui.popup.JBPopup; ...
vcs-impl/src/com/intellij/openapi/vcs/actions/CompareWithSelectedRevisionAction.java
package com.intellij.openapi.vcs.actions; import com.intellij.CommonBundle; import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.openapi.actionSystem.Presentation; import com.intellij.openapi.project.Project; import com.intellij.openapi.ui.Messages; import com.intellij.openapi.ui.popup.JBPopup; ...
show full error message (IDEADEV-30906)
vcs-impl/src/com/intellij/openapi/vcs/actions/CompareWithSelectedRevisionAction.java
show full error message (IDEADEV-30906)
<ide><path>cs-impl/src/com/intellij/openapi/vcs/actions/CompareWithSelectedRevisionAction.java <ide> <ide> } <ide> catch (VcsException e1) { <del> Messages.showErrorDialog(VcsBundle.message("message.text.cannot.show.differences"), CommonBundle.message("title.error")); <add> Messages.showErrorDialog(V...
JavaScript
mit
f9c12c154cd4aedd4e6b0903099f17bd6e80d6fc
0
viralpatel/jquery.shorten,gdseller/jquery.shorten,cookiespam/terratrix.github.io
๏ปฟ/* * jQuery Shorten plugin 1.0.0 * * Copyright (c) 2013 Viral Patel * http://viralpatel.net * * Licensed under the MIT license: * http://www.opensource.org/licenses/mit-license.php */ /* ** updated by Jeff Richardson ** Updated to use strict, ** IE 7 has a "bug" It is returning underfined when trying to...
src/jquery.shorten.js
๏ปฟ/* * jQuery Shorten plugin 1.0.0 * * Copyright (c) 2013 Viral Patel * http://viralpatel.net * * Licensed under the MIT license: * http://www.opensource.org/licenses/mit-license.php */ /* ** updated by Jeff Richardson ** Updated to use strict, ** IE 7 has a "bug" It is returning underfined when trying to...
Prevent the plugin to be attached more than once to an element.
src/jquery.shorten.js
Prevent the plugin to be attached more than once to an element.
<ide><path>rc/jquery.shorten.js <ide> $.fn.shorten = function (settings) { <ide> <ide> "use strict"; <del> <add> if ($(this).data('jquery.shorten')){ <add> return false; <add> } <add> $(this).data('jquery.shorten', true); <add> <ide> var config = { <ide> showChars: 100, <ide> ...
JavaScript
mit
ec49cc6effeebed643ddd705dc8021eadec44deb
0
Xiphe/grunt-codeclimate-reporter,MrBoolean/grunt-codeclimate-reporter
module.exports = function (grunt) { 'use strict'; grunt.initConfig({ jshint: { all: [ 'Gruntfile.js', 'tasks/*.js' ], options: { jshintrc: '.jshintrc' } }, eslint: { target: ['tasks/**/*.js', 'lib/**/*.js', 'Gruntfile.js'] } }); grunt.loadT...
Gruntfile.js
module.exports = function (grunt) { 'use strict'; grunt.initConfig({ jshint: { all: [ 'Gruntfile.js', 'tasks/*.js' ], options: { jshintrc: '.jshintrc' } }, eslint: { target: ['tasks/**/*.js', 'lib/**/*.js', 'Gruntfile.js'] }, mocha: { ...
Cleanup gruntfile
Gruntfile.js
Cleanup gruntfile
<ide><path>runtfile.js <ide> }, <ide> eslint: { <ide> target: ['tasks/**/*.js', 'lib/**/*.js', 'Gruntfile.js'] <del> }, <del> mocha: { <del> test: { <del> src: ['test/**/*.test.js'] <del> } <ide> } <ide> }); <ide> <ide> grunt.loadNpmTasks('grunt-eslint'); <ide> grunt.load...
Java
mit
3d03d668a97c24e028bc11eea34da0e153064b38
0
venkatramanm/swf-all,venkatramanm/swf-all,venkatramanm/swf-all
package com.venky.swf.plugins.mail.core; import com.venky.core.io.ByteArrayInputStream; import com.venky.core.io.StringReader; import com.venky.core.util.ObjectUtil; import com.venky.swf.db.Database; import com.venky.swf.db.annotations.column.ui.mimes.MimeType; import com.venky.swf.db.model.UserEmail; import com.venky...
swf-plugin-mail/src/main/java/com/venky/swf/plugins/mail/core/MailerTask.java
package com.venky.swf.plugins.mail.core; import java.io.Serializable; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.stream.Collectors; import javax.mail.Message.RecipientType; import com.venky.core.io.ByteArrayInputStream;...
Mailer error
swf-plugin-mail/src/main/java/com/venky/swf/plugins/mail/core/MailerTask.java
Mailer error
<ide><path>wf-plugin-mail/src/main/java/com/venky/swf/plugins/mail/core/MailerTask.java <ide> package com.venky.swf.plugins.mail.core; <ide> <del>import java.io.Serializable; <del>import java.util.ArrayList; <del>import java.util.Arrays; <del>import java.util.HashMap; <del>import java.util.List; <del>import java.util....
Java
apache-2.0
51a30322d1c24eba39811accbeb77c5d18d75c94
0
DavidWhitlock/PortlandStateJava,DavidWhitlock/PortlandStateJava
package edu.pdx.cs410J.grader; import com.google.common.base.Function; import com.google.common.collect.Maps; import javax.activation.DataHandler; import javax.activation.DataSource; import javax.activation.FileDataSource; import javax.mail.*; import javax.mail.internet.*; import java.io.*; import java.net.MalformedU...
grader/src/main/java/edu/pdx/cs410J/grader/Submit.java
package edu.pdx.cs410J.grader; import com.google.common.base.Function; import com.google.common.collect.Maps; import javax.activation.DataHandler; import javax.activation.DataSource; import javax.activation.FileDataSource; import javax.mail.*; import javax.mail.internet.*; import java.io.*; import java.net.MalformedU...
Make sure that the project name is one of the expected project names. This way, we can make sure that the project name matches the name of the one assignments in the grade book.
grader/src/main/java/edu/pdx/cs410J/grader/Submit.java
Make sure that the project name is one of the expected project names. This way, we can make sure that the project name matches the name of the one assignments in the grade book.
<ide><path>rader/src/main/java/edu/pdx/cs410J/grader/Submit.java <ide> private static final String NO_SUBMIT_LIST_URL = <ide> "http://www.cs.pdx.edu/~whitlock/no-submit"; <ide> <add> private static final String PROJECT_NAMES_LIST_URL = <add> "http://www.cs.pdx.edu/~whitlock/project-names"; <add> <ide> ////...
Java
apache-2.0
72288bd54c4cc7010d22d60e161646dc8ab5188c
0
apache/tinkerpop,apache/tinkerpop,jorgebay/tinkerpop,Lab41/tinkerpop3,apache/tinkerpop,n-tran/incubator-tinkerpop,samiunn/incubator-tinkerpop,vtslab/incubator-tinkerpop,apache/tinkerpop,mpollmeier/tinkerpop3,krlohnes/tinkerpop,artem-aliev/tinkerpop,samiunn/incubator-tinkerpop,gdelafosse/incubator-tinkerpop,vtslab/incub...
package com.tinkerpop.gremlin.driver; import com.tinkerpop.gremlin.driver.message.RequestMessage; import io.netty.channel.ChannelPromise; import java.net.InetSocketAddress; import java.net.URI; import java.util.concurrent.CompletableFuture; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.Co...
gremlin-driver/src/main/java/com/tinkerpop/gremlin/driver/Client.java
package com.tinkerpop.gremlin.driver; import com.tinkerpop.gremlin.driver.message.RequestMessage; import io.netty.channel.ChannelPromise; import java.net.InetSocketAddress; import java.net.URI; import java.util.concurrent.CompletableFuture; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.Co...
A Client can only be constructed internally by a Cluster.
gremlin-driver/src/main/java/com/tinkerpop/gremlin/driver/Client.java
A Client can only be constructed internally by a Cluster.
<ide><path>remlin-driver/src/main/java/com/tinkerpop/gremlin/driver/Client.java <ide> // todo: each host gets a connection pool? <ide> private ConcurrentMap<Host, Connection> connections = new ConcurrentHashMap<>(); <ide> <del> public Client(final Cluster cluster) { <add> Client(final Cluster cluster) { ...
JavaScript
mit
a152aab8bc5a928726b1f37fb00359966f4e8a03
0
grantila/awesome-phonenumber,grantila/awesome-phonenumber,grantila/awesome-phonenumber
const gulp = require( 'gulp' ); const child = require( 'child_process' ); const fs = require( 'fs' ); const rimraf = require( 'rimraf-promise' ); const mkdirp = require( 'mkdirp' ); const replace = require( 'replace' ); const libphonenumberVersion = fs.readFileSync( 'libphonenumber.version', 'utf8' ).toSt...
gulpfile.js
const gulp = require( 'gulp' ); const child = require( 'child_process' ); const fs = require( 'fs' ); const rimraf = require( 'rimraf-promise' ); const mkdirp = require( 'mkdirp' ); const replace = require( 'replace' ); const libphonenumberVersion = fs.readFileSync( 'libphonenumber.version', 'utf8' ).toSt...
build(upstream): libphonenumber has moved to a new upstream location
gulpfile.js
build(upstream): libphonenumber has moved to a new upstream location
<ide><path>ulpfile.js <ide> fs.readFileSync( 'libphonenumber.version', 'utf8' ).toString( ).trim( ); <ide> <ide> const buildRoot = './build'; <del>const libphonenumberUrl = 'https://github.com/googlei18n/libphonenumber/'; <add>const libphonenumberUrl = 'https://github.com/google/libphonenumber/'; <ide> const closureL...
JavaScript
mit
2a23f9408f09bcee51e6c53430ba39d590045095
0
melonjs/melonJS,melonjs/melonJS
import Vector2d from "./../math/vector2.js"; import timer from "./../system/timer.js"; import { randomFloat, clamp } from "./../math/math.js"; import Renderable from "./../renderable/renderable.js"; /** * @classdesc * Single Particle Object. * @augments Renderable */ class Particle extends Renderable { /** ...
src/particles/particle.js
import Vector2d from "./../math/vector2.js"; import timer from "./../system/timer.js"; import { randomFloat, clamp } from "./../math/math.js"; import Renderable from "./../renderable/renderable.js"; /** * @classdesc * Single Particle Object. * @augments Renderable */ class Particle extends Renderable { /** ...
fix particle pooling/recycling Renderable have no onResetEvent function by default, so calling the super function would not work
src/particles/particle.js
fix particle pooling/recycling
<ide><path>rc/particles/particle.js <ide> */ <ide> onResetEvent(emitter, newInstance = false) { <ide> if (newInstance === false) { <del> super.onResetEvent( <add> this.pos.set( <ide> emitter.getRandomPointX(), <del> emitter.getRandomPointY(), <add> ...
Java
apache-2.0
efd6ec96bf4470c174dd8ec0f3b18cd65fa68aa5
0
linkedin/parseq,linkedin/parseq,linkedin/parseq,linkedin/parseq
/* * Copyright 2016 LinkedIn, Inc * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
contrib/parseq-restli-client/src/test/java/com/linkedin/restli/client/TestRequestContextProvider.java
/* * Copyright 2016 LinkedIn, Inc * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
fixing test in TestRequestContextProvider (#107)
contrib/parseq-restli-client/src/test/java/com/linkedin/restli/client/TestRequestContextProvider.java
fixing test in TestRequestContextProvider (#107)
<ide><path>ontrib/parseq-restli-client/src/test/java/com/linkedin/restli/client/TestRequestContextProvider.java <ide> .build()); <ide> GetRequest<Greeting> request = new GreetingsBuilders().get().id(1L).build(); <ide> Task<?> task = _parseqClient.createTask(request); <del> runAndWait(getTestC...
JavaScript
mit
ade3d46d08bc92eb070fd1033d8030158aaf0398
0
cramhead/meteor-autoform,mizzao/meteor-autoform,andrerpena/meteor-autoform,abecks/meteor-autoform,aldeed/meteor-autoform,devgrok/meteor-autoform,Chun-Yang/meteor-autoform,challett/meteor-autoform,poetic/meteor-autoform,vimes1984/meteor-autoform,aldeed/meteor-autoform,mrphu3074/meteor-react-autoform,poetic/meteor-autofo...
/* global AutoForm:true, SimpleSchema, Utility, Hooks, deps, globalDefaultTemplate:true, defaultTypeTemplates:true, getFormValues, formValues, _validateForm, validateField, arrayTracker, getInputType, ReactiveVar */ // This file defines the public, exported API AutoForm = AutoForm || {}; //exported AutoForm.Utility ...
autoform-api.js
/* global AutoForm:true, SimpleSchema, Utility, Hooks, deps, globalDefaultTemplate:true, defaultTypeTemplates:true, getFormValues, formValues, _validateForm, validateField, arrayTracker, getInputType, ReactiveVar */ // This file defines the public, exported API AutoForm = AutoForm || {}; //exported AutoForm.Utility ...
fix for string schema attribute
autoform-api.js
fix for string schema attribute
<ide><path>utoform-api.js <ide> AutoForm.getFormSchema = function (formId) { <ide> var schema = AutoForm.getCurrentDataForForm(formId).schema; <ide> if (schema) { <del> return schema; <add> return AutoForm.Utility.lookup(schema); <ide> } else { <ide> var collection = AutoForm.getFormCollection(formId); ...
Java
mit
a0721b159938a449543ea54ed6dc20e6ab517d61
0
instructure/CanvasAPI
package com.instructure.canvasapi.api; import android.content.Context; import android.util.Log; import com.instructure.canvasapi.model.Attachment; import com.instructure.canvasapi.model.CanvasColor; import com.instructure.canvasapi.model.CanvasContext; import com.instructure.canvasapi.model.Enrollment; import com.ins...
src/main/java/com/instructure/canvasapi/api/UserAPI.java
package com.instructure.canvasapi.api; import android.content.Context; import android.util.Log; import com.instructure.canvasapi.model.Attachment; import com.instructure.canvasapi.model.CanvasColor; import com.instructure.canvasapi.model.CanvasContext; import com.instructure.canvasapi.model.Enrollment; import com.ins...
Add api to remove student from airwolf databases. Change-Id: Ic6a3d7dfdc7db4a7485cc7ef19aa75da87bec977
src/main/java/com/instructure/canvasapi/api/UserAPI.java
Add api to remove student from airwolf databases.
<ide><path>rc/main/java/com/instructure/canvasapi/api/UserAPI.java <ide> import java.util.LinkedHashMap; <ide> <ide> import retrofit.Callback; <add>import retrofit.client.Response; <ide> import retrofit.http.Body; <ide> import retrofit.http.DELETE; <ide> import retrofit.http.GET; <ide> <ide> @DELETE("/users/s...
Java
apache-2.0
2939e4c219263b7f2ebd94f7369150dc48d4a5cc
0
rprabhat/orientdb,rprabhat/orientdb,cstamas/orientdb,tempbottle/orientdb,intfrr/orientdb,joansmith/orientdb,alonsod86/orientdb,jdillon/orientdb,mbhulin/orientdb,joansmith/orientdb,giastfader/orientdb,sanyaade-g2g-repos/orientdb,mbhulin/orientdb,giastfader/orientdb,orientechnologies/orientdb,mmacfadden/orientdb,wyzssw/o...
/* * Copyright 1999-2005 Luca Garulli (l.garulli--at-orientechnologies.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 ...
core/src/main/java/com/orientechnologies/orient/core/profiler/OJVMProfiler.java
/* * Copyright 1999-2005 Luca Garulli (l.garulli--at-orientechnologies.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 ...
Profiler: created new metrics about OS information
core/src/main/java/com/orientechnologies/orient/core/profiler/OJVMProfiler.java
Profiler: created new metrics about OS information
<ide><path>ore/src/main/java/com/orientechnologies/orient/core/profiler/OJVMProfiler.java <ide> @Override <ide> public Object getValue() { <ide> return metricProcessors; <add> } <add> }); <add> registerHookValue(getSystemMetric("config.os.name"), new OProfilerHookValue() { <add> @Ove...
JavaScript
bsd-3-clause
b0dfe1d509ba7779cd568da8fdb7692b0c98b564
0
CartoDB/CartoDB-SQL-API,CartoDB/CartoDB-SQL-API
#!/usr/bin/env node /* * SQL API loader * =============== * * node app [environment] * * environments: [development, test, production] * */ var fs = require('fs'); var path = require('path'); var argv = require('yargs') .usage('Usage: $0 <environment> [options]') .help('h') .example( '$0 productio...
app.js
#!/usr/bin/env node /* * SQL API loader * =============== * * node app [environment] * * environments: [development, test, production] * */ var fs = require('fs'); var path = require('path'); var argv = require('yargs') .usage('Usage: $0 <environment> [options]') .help('h') .example( '$0 productio...
Only reload log files if logger exists
app.js
Only reload log files if logger exists
<ide><path>pp.js <ide> console.log('Log files reloaded'); <ide> }); <ide> <del> server.batch.logger.reopenFileStreams(); <add> if (server.batch && server.batch.logger) { <add> server.batch.logger.reopenFileStreams(); <add> } <ide> }); <ide> <ide> process.on('SIGTERM', function () {
JavaScript
mit
c0648728e9bb5fb103a5c581552d83b251eaf681
0
UniSiegenCSCW/remotino,UniSiegenCSCW/remotino,UniSiegenCSCW/remotino
import path from 'path'; export default { module: { loaders: [{ test: /\.jsx?$/, loaders: ['babel-loader'], exclude: /node_modules/ }, { test: /\.json$/, loader: 'json-loader' }, { test: /\.html$/, loader: 'html' }] }, output: { path: path.join(__dir...
webpack.config.base.js
import path from 'path'; export default { module: { loaders: [{ test: /\.jsx?$/, loaders: ['babel-loader'], exclude: /node_modules/ }, { test: /\.json$/, loader: 'json-loader' }] }, output: { path: path.join(__dirname, 'dist'), filename: 'bundle.js', libraryT...
add html loader to webpack
webpack.config.base.js
add html loader to webpack
<ide><path>ebpack.config.base.js <ide> }, { <ide> test: /\.json$/, <ide> loader: 'json-loader' <add> }, { <add> test: /\.html$/, <add> loader: 'html' <ide> }] <ide> }, <ide> output: {
Java
lgpl-2.1
316a10f9a08a29fd43e8361f009a13df40ff3811
0
RockManJoe64/swingx,RockManJoe64/swingx
/* * $Id$ * * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle, * Santa Clara, California 95054, U.S.A. All rights reserved. */ package org.jdesktop.swingx; import java.awt.BorderLayout; import java.awt.Color; import java.awt.Component; import java.awt.Container; import java.awt.Dimension; import java....
swingx-core/src/test/java/org/jdesktop/swingx/JXTableVisualCheck.java
/* * $Id$ * * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle, * Santa Clara, California 95054, U.S.A. All rights reserved. */ package org.jdesktop.swingx; import java.awt.BorderLayout; import java.awt.Color; import java.awt.Component; import java.awt.Container; import java.awt.Dimension; import java....
Issue #1374: RolloverProducer fires when table is not enabled updated JXTableVisualCheck to see behaviour
swingx-core/src/test/java/org/jdesktop/swingx/JXTableVisualCheck.java
Issue #1374: RolloverProducer fires when table is not enabled updated JXTableVisualCheck to see behaviour
<ide><path>wingx-core/src/test/java/org/jdesktop/swingx/JXTableVisualCheck.java <ide> <ide> import org.jdesktop.swingx.action.AbstractActionExt; <ide> import org.jdesktop.swingx.decorator.AbstractHighlighter; <add>import org.jdesktop.swingx.decorator.ColorHighlighter; <ide> import org.jdesktop.swingx.decorator.Compone...
Java
mit
58cc5584345c05a1efef3f64c0b4cc9a4347cffe
0
grobmeier/postmark4j
// The MIT License // // Copyright (c) 2010 Jared Holdcroft // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy,...
src/test/java/de/grobmeier/postmark/TestClient.java
// The MIT License // // Copyright (c) 2010 Jared Holdcroft // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy,...
organized imports
src/test/java/de/grobmeier/postmark/TestClient.java
organized imports
<ide><path>rc/test/java/de/grobmeier/postmark/TestClient.java <ide> // THE SOFTWARE. <ide> <ide> package de.grobmeier.postmark; <del> <del>import de.grobmeier.postmark.NameValuePair; <del>import de.grobmeier.postmark.PostmarkClient; <del>import de.grobmeier.postmark.PostmarkException; <del>import de.grobmeier.postmark...
Java
lgpl-2.1
8fd2f1869f744e60131e3362d725677899267fb1
0
ggiudetti/opencms-core,gallardo/opencms-core,ggiudetti/opencms-core,alkacon/opencms-core,gallardo/opencms-core,alkacon/opencms-core,gallardo/opencms-core,alkacon/opencms-core,gallardo/opencms-core,ggiudetti/opencms-core,alkacon/opencms-core,ggiudetti/opencms-core
/* * This library is part of OpenCms - * the Open Source Content Management System * * Copyright (c) Alkacon Software GmbH (http://www.alkacon.com) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free So...
src/org/opencms/jsp/search/config/CmsSearchConfigurationFacetQuery.java
/* * This library is part of OpenCms - * the Open Source Content Management System * * Copyright (c) Alkacon Software GmbH (http://www.alkacon.com) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free So...
Added equals(..) and hashCode() to CmsFacetQueryItem. This eases testing.
src/org/opencms/jsp/search/config/CmsSearchConfigurationFacetQuery.java
Added equals(..) and hashCode() to CmsFacetQueryItem.
<ide><path>rc/org/opencms/jsp/search/config/CmsSearchConfigurationFacetQuery.java <ide> } <ide> <ide> /** <add> * @see java.lang.Object#equals(java.lang.Object) <add> */ <add> @Override <add> public boolean equals(final Object queryItem) { <add> <add> if (this.h...
Java
apache-2.0
3f65ba1a31fbb7c04b77ff644e86fcd5112bf3a5
0
ibrahimshbat/JGroups,deepnarsay/JGroups,belaban/JGroups,belaban/JGroups,pferraro/JGroups,pruivo/JGroups,rhusar/JGroups,tristantarrant/JGroups,ibrahimshbat/JGroups,rvansa/JGroups,kedzie/JGroups,ibrahimshbat/JGroups,danberindei/JGroups,pferraro/JGroups,ligzy/JGroups,rhusar/JGroups,vjuranek/JGroups,TarantulaTechnology/JGr...
// $Id: GossipData.java,v 1.3 2006/10/11 14:35:45 belaban Exp $ package org.jgroups.stack; import org.jgroups.Address; import org.jgroups.util.Streamable; import org.jgroups.util.Util; import java.io.*; import java.util.Vector; import java.util.List; import java.util.ArrayList; import java.util.LinkedList; /** *...
src/org/jgroups/stack/GossipData.java
// $Id: GossipData.java,v 1.2 2004/03/30 06:47:27 belaban Exp $ package org.jgroups.stack; import org.jgroups.Address; import java.io.Externalizable; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.util.Vector; /** * Encapsulates data sent between GossipServer an...
changed to use Streamable
src/org/jgroups/stack/GossipData.java
changed to use Streamable
<ide><path>rc/org/jgroups/stack/GossipData.java <del>// $Id: GossipData.java,v 1.2 2004/03/30 06:47:27 belaban Exp $ <add>// $Id: GossipData.java,v 1.3 2006/10/11 14:35:45 belaban Exp $ <ide> <ide> package org.jgroups.stack; <ide> <ide> <ide> import org.jgroups.Address; <add>import org.jgroups.util.Streamable; <add>...
Java
apache-2.0
cad615e8e49c8acd65d55d1a609890244863aca8
0
GabrielBrascher/cloudstack,jcshen007/cloudstack,wido/cloudstack,GabrielBrascher/cloudstack,argv0/cloudstack,wido/cloudstack,wido/cloudstack,GabrielBrascher/cloudstack,jcshen007/cloudstack,jcshen007/cloudstack,GabrielBrascher/cloudstack,GabrielBrascher/cloudstack,wido/cloudstack,DaanHoogland/cloudstack,cinderella/incuba...
/** : * Copyright (C) 2010 Cloud.com, Inc. All rights reserved. * * This software is licensed under the GNU General Public License v3 or later. * * It is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, ...
core/src/com/cloud/hypervisor/xen/resource/CitrixResourceBase.java
/** : * Copyright (C) 2010 Cloud.com, Inc. All rights reserved. * * This software is licensed under the GNU General Public License v3 or later. * * It is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, ...
support multiple patch files
core/src/com/cloud/hypervisor/xen/resource/CitrixResourceBase.java
support multiple patch files
<ide><path>ore/src/com/cloud/hypervisor/xen/resource/CitrixResourceBase.java <ide> } <ide> <ide> SCPClient scp = new SCPClient(sshConnection); <del> File file = new File(_patchPath); <del> <del> Properties props = new Properties(); <del> prop...
Java
apache-2.0
45a7457e3a9ae4e2db529fcb9ed852bfc389bde1
0
getlantern/lantern-common
package org.lantern; import java.net.InetSocketAddress; import java.nio.charset.Charset; /** * Constants for Lantern. */ public class LanternConstants { public static final int DASHCACHE_MAXAGE = 60 * 5; public static final String API_VERSION = "0.0.1"; public static final String BUILD_TIME = "build_...
src/main/java/org/lantern/LanternConstants.java
package org.lantern; import java.net.InetSocketAddress; import java.nio.charset.Charset; /** * Constants for Lantern. */ public class LanternConstants { public static final int DASHCACHE_MAXAGE = 60 * 5; public static final String API_VERSION = "0.0.1"; public static final String BUILD_TIME = "build_...
added back region since we need it for SQS
src/main/java/org/lantern/LanternConstants.java
added back region since we need it for SQS
<ide><path>rc/main/java/org/lantern/LanternConstants.java <ide> <ide> public static final int KSCOPE_ADVERTISEMENT = 0x2111; <ide> public static final String KSCOPE_ADVERTISEMENT_KEY = "ksak"; <add> <add> public static final String AWS_REGION = "ap-southeast-1"; <ide> <ide> public static final Char...
Java
lgpl-2.1
2b0236465c9af838d02ab005a43eb841ef243a20
0
rhusar/wildfly,tadamski/wildfly,iweiss/wildfly,pferraro/wildfly,wildfly/wildfly,99sono/wildfly,iweiss/wildfly,pferraro/wildfly,golovnin/wildfly,xasx/wildfly,wildfly/wildfly,xasx/wildfly,iweiss/wildfly,xasx/wildfly,rhusar/wildfly,tadamski/wildfly,tomazzupan/wildfly,pferraro/wildfly,tadamski/wildfly,99sono/wildfly,golovn...
/* * JBoss, Home of Professional Open Source. * Copyright 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
undertow/src/main/java/org/wildfly/extension/undertow/deployment/UndertowJSRWebSocketDeploymentProcessor.java
/* * JBoss, Home of Professional Open Source. * Copyright 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
Fix NPE
undertow/src/main/java/org/wildfly/extension/undertow/deployment/UndertowJSRWebSocketDeploymentProcessor.java
Fix NPE
<ide><path>ndertow/src/main/java/org/wildfly/extension/undertow/deployment/UndertowJSRWebSocketDeploymentProcessor.java <ide> <ide> for (ServerApplicationConfig config : configInstances) { <ide> allAnnotatedEndpoints = config.getAnnotatedEndpointClasses(allAnnotatedEndpoints); <del> serv...
JavaScript
mit
5e15dbf974bc6af778bc5651b008a00a46353798
0
Travelport-Ukraine/uapi-json
var proxy = require('proxyquire'); var sinon = require('sinon'); var assert = require('assert'); var fs = require('fs'); var _ = require('lodash'); const ParserUapi = require('../../src/uapi-parser'); const xmlFolder = __dirname + '/../FakeResponses/Air'; describe('#AirParser', function () { describe('AIR_LOW_FARE...
test/Air/AirParser.test.js
var proxy = require('proxyquire'); var sinon = require('sinon'); var assert = require('assert'); var fs = require('fs'); var _ = require('lodash'); const ParserUapi = require('../../src/uapi-parser'); const xmlFolder = __dirname + '/../FakeResponses/Air'; describe('#AirParser', function () { describe('AIR_LOW_FARE...
Fix: missing line
test/Air/AirParser.test.js
Fix: missing line
<ide><path>est/Air/AirParser.test.js <ide> testBooking(jsonResult); <ide> }).catch(err => assert(false, 'Error during parsing' + err.stack)); <ide> }); <del> }); <ide> <ide> it('should test parsing of reservation with segment failure', () => { <ide> const uParser = new ParserUapi('universa...
Java
apache-2.0
e454ccb2541bfc409a62fda6e8ea856325839f53
0
dlwhitehurst/blackboard,dlwhitehurst/blackboard
package org.dlw.ai.blackboard.dao; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.dlw.ai.blackboard.dao.hibernate.GenericDaoHibernate; import org.dlw.ai.blackboard.rule.RuleSet; import org.hibernate.SessionFactory; import static org.junit.Assert.assertEquals; import sta...
src/test/java/org/dlw/ai/blackboard/dao/GenericDaoTest.java
package org.dlw.ai.blackboard.dao; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.dlw.ai.blackboard.dao.hibernate.GenericDaoHibernate; import org.dlw.ai.blackboard.rule.RuleSet; import org.hibernate.SessionFactory; import static org.junit.Assert.assertEquals; import sta...
Method name refactor
src/test/java/org/dlw/ai/blackboard/dao/GenericDaoTest.java
Method name refactor
<ide><path>rc/test/java/org/dlw/ai/blackboard/dao/GenericDaoTest.java <ide> } <ide> <ide> @Test <del> public void getUser() { <add> public void getRuleSet() { <ide> RuleSet ruleSet = genericDao.get(-1L); <ide> assertNotNull(ruleSet); <ide> assertEquals("PatternMatching",ruleSet.ge...
Java
mit
7d0792754e86a6c0cf8ae8a5086f53d7272937c7
0
DominikRidder/ImageExtractor
package tools; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.util.HashMap; public class ImageExtractorConfig { private HashMap<String, String> options = new HashMap<String, String>(); ...
src/tools/ImageExtractorConfig.java
package tools; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.util.HashMap; import com.sun.xml.internal.ws.policy.privateutil.PolicyUtils.Text; public class ImageExtractorConfig { priva...
removed import, because of warnings by NetBeans
src/tools/ImageExtractorConfig.java
removed import, because of warnings by NetBeans
<ide><path>rc/tools/ImageExtractorConfig.java <ide> import java.io.FileWriter; <ide> import java.io.IOException; <ide> import java.util.HashMap; <del> <del>import com.sun.xml.internal.ws.policy.privateutil.PolicyUtils.Text; <ide> <ide> public class ImageExtractorConfig { <ide>
JavaScript
mit
28d39bd819069051c5c4147ce55a00227d026f79
0
unclegigi/two-way-binding,unclegigi/two-way-binding
var express = require('express'); var app = express(); app.use(express.static(__dirname + '/')); var server = app.listen(3000, function() { var host = server.address().address var port = server.address().port console.log('Server listening at http://%s:%s', host, port) });
Server.js
var express = require('express').express(); var server = express.listen(3000, function89 { var host = server.address().address var port = server.address().port console.log('Server listening at http://%s:%s', host, port) });
Change Server.js
Server.js
Change Server.js
<ide><path>erver.js <del>var express = require('express').express(); <add>var express = require('express'); <add>var app = express(); <ide> <add>app.use(express.static(__dirname + '/')); <ide> <del>var server = express.listen(3000, function89 { <add>var server = app.listen(3000, function() { <ide> var host = server...
Java
apache-2.0
89b96b5bab2b5addc3b65c894cf4ff949cfd67ac
0
jandockx/ppwcode-recovered-from-google-code,jandockx/ppwcode-recovered-from-google-code,jandppw/ppwcode-recovered-from-google-code,jandockx/ppwcode-recovered-from-google-code,jandockx/ppwcode-recovered-from-google-code,jandppw/ppwcode-recovered-from-google-code,jandppw/ppwcode-recovered-from-google-code,jandockx/ppwcod...
/*<license> Copyright 2004 - $Date$ by PeopleWare n.v.. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed t...
java/vernacular/value/trunk/src/test/java/org/ppwcode/vernacular/value_III/stubs/StubAbstractValueEditor.java
/*<license> Copyright 2004 - $Date$ by PeopleWare n.v.. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed t...
StubValue replaced by StubAbstractValue
java/vernacular/value/trunk/src/test/java/org/ppwcode/vernacular/value_III/stubs/StubAbstractValueEditor.java
StubValue replaced by StubAbstractValue
<ide><path>ava/vernacular/value/trunk/src/test/java/org/ppwcode/vernacular/value_III/stubs/StubAbstractValueEditor.java <ide> import org.ppwcode.vernacular.value_III.AbstractValueEditor; <ide> <ide> <del>public class StubAbstractValueEditor extends AbstractValueEditor<StubValue> { <add>public class StubAbstractValueE...
Java
agpl-3.0
73f2f6b106b4aedc4ae671a2fef1a4570195d324
0
duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test
2d1d3ce8-2e62-11e5-9284-b827eb9e62be
hello.java
2d17d352-2e62-11e5-9284-b827eb9e62be
2d1d3ce8-2e62-11e5-9284-b827eb9e62be
hello.java
2d1d3ce8-2e62-11e5-9284-b827eb9e62be
<ide><path>ello.java <del>2d17d352-2e62-11e5-9284-b827eb9e62be <add>2d1d3ce8-2e62-11e5-9284-b827eb9e62be
JavaScript
mit
a487821461148c9fa175a4b6bba622c4a97b679a
0
ryogeisya/vue,ryogeisya/vue
var utils = require('../utils') /** * Binding for partials */ module.exports = { isLiteral: true, bind: function () { var id = this.expression if (!id) return var el = this.el, compiler = this.compiler, partial = compiler.getOption('partials', id) ...
src/directives/partial.js
var utils = require('../utils') /** * Binding for partials */ module.exports = { isLiteral: true, bind: function () { var id = this.expression if (!id) return var el = this.el, compiler = this.compiler, partial = compiler.getOption('partials', id) ...
strip newline at end
src/directives/partial.js
strip newline at end
JavaScript
isc
39433338901821f882380226e880ff2801d7b3ba
0
dbp/latinamerica,dbp/latinamerica,dbp/latinamerica,dbp/latinamerica
function init(set_year, initial_year, close_callback, load_entry, load_year) { var set_year_wrap = function(year) { execF(execF(set_year, year), null); }; $(document).ready(function() { $(".slider").slider({ min: 1491, max: 2020, step: 1, value: initial_year, }); var reqP...
site.js
function init(set_year, initial_year, close_callback, load_entry, load_year) { var set_year_wrap = function(year) { execF(execF(set_year, year), null); }; $(document).ready(function() { $(".slider").slider({ min: 1491, max: 2020, step: 1, value: initial_year, }); $(".slid...
partial fix for faster load - load on sliding, with a minor delay Conflicts: site.js
site.js
partial fix for faster load - load on sliding, with a minor delay
<ide><path>ite.js <ide> value: initial_year, <ide> }); <ide> <add> var reqPending = false; <add> <ide> $(".slider").bind("slide", function(event, ui) { <del> set_year_wrap(ui.value); <add> if (!reqPending) { <add> reqPending = true; <add> setTimeout(function () { <add> ...
Java
mit
a2f60c61338a74e2b80932886d517d3b3c65e1b9
0
ictrobot/Cubes,ictrobot/Cubes,RedTroop/Cubes_2,RedTroop/Cubes_2
package ethanjones.modularworld.core.compatibility; import com.badlogic.gdx.Application; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.files.FileHandle; import ethanjones.modularworld.ModularWorld; import ethanjones.modularworld.core.logging.Log; import ethanjones.modularworld.graphics.AssetManager; import jav...
core/src/ethanjones/modularworld/core/compatibility/Compatibility.java
package ethanjones.modularworld.core.compatibility; import com.badlogic.gdx.Application; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.files.FileHandle; import ethanjones.modularworld.ModularWorld; import ethanjones.modularworld.core.logging.Log; import ethanjones.modularworld.graphics.AssetManager; import jav...
Fix assets on non exploded installs (try 2)
core/src/ethanjones/modularworld/core/compatibility/Compatibility.java
Fix assets on non exploded installs (try 2)
<ide><path>ore/src/ethanjones/modularworld/core/compatibility/Compatibility.java <ide> * Extracts from jar <ide> */ <ide> protected void extractAssets(AssetManager assetManager) { <add> String assets = "assets"; <ide> try { <ide> CodeSource src = Compatibility.class.getProtectionDomain().getCodeSou...
Java
apache-2.0
2f8a3be465fde0bc8e8278c8ec46f5a9d15ebcac
0
subutai-io/Subutai,subutai-io/Subutai,subutai-io/Subutai,subutai-io/base,subutai-io/Subutai,subutai-io/Subutai,subutai-io/base,subutai-io/Subutai,subutai-io/base,subutai-io/base
package io.subutai.core.kurjun.manager.impl; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.util.Properties; import javax.ws.rs.core.Response; import org.bouncycastle.openpgp.PGPPublicKeyRing; import org.apache.commons.configuration.ConfigurationException; impor...
management/server/core/kurjun-manager/kurjun-manager-impl/src/main/java/io/subutai/core/kurjun/manager/impl/KurjunManagerImpl.java
package io.subutai.core.kurjun.manager.impl; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.util.Properties; import javax.ws.rs.core.Response; import org.bouncycastle.openpgp.PGPPublicKeyRing; import org.apache.commons.configuration.ConfigurationException; impor...
added global and local kurjun urls
management/server/core/kurjun-manager/kurjun-manager-impl/src/main/java/io/subutai/core/kurjun/manager/impl/KurjunManagerImpl.java
added global and local kurjun urls
<ide><path>anagement/server/core/kurjun-manager/kurjun-manager-impl/src/main/java/io/subutai/core/kurjun/manager/impl/KurjunManagerImpl.java <ide> import org.apache.commons.configuration.ConfigurationException; <ide> import org.apache.commons.configuration.PropertiesConfiguration; <ide> import org.apache.cxf.jaxrs.clie...
Java
apache-2.0
61196f1a951e0d8aeacd224e9c5878b19bcae57c
0
gkqzdxajh/dubbo,dangdangdotcom/dubbox,atreeyang/dubbo,delavior/dubbo,grayaaa/dubbo,remoting/dubbox,lovepoem/dubbo,gyk001/dubbox,youjava/dubbo,wtmilk/dubbo,BianWenlong/dubbo,finch0219/dubbo,11wuqingchao/dubbo,kyle-liu/dubbo2study,nichoding/dubbo,ykqabc/dubbo,damy/dubbo,wthuan/dubbox,gjhuai/dubbo,DR-YangLong/dubbox,Karan...
/* * Copyright 1999-2011 Alibaba Group. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appl...
dubbo-config/src/main/java/com/alibaba/dubbo/config/spring/schema/DubboBeanDefinitionParser.java
/* * Copyright 1999-2011 Alibaba Group. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appl...
DUBBO-149 <dubbo:protocolๆœช้…nameๆ—ถ๏ผŒ็”Ÿๆˆ็š„็ผบ็œidไนŸๅบ”ไธบdubbo๏ผŒไพฟไบŽ-Dๅ‚ๆ•ฐ่ฆ†็›– git-svn-id: 3d0e7b608a819e97e591a7b753bfd1a27aaeb5ee@697 1a56cb94-b969-4eaa-88fa-be21384802f2
dubbo-config/src/main/java/com/alibaba/dubbo/config/spring/schema/DubboBeanDefinitionParser.java
DUBBO-149 <dubbo:protocolๆœช้…nameๆ—ถ๏ผŒ็”Ÿๆˆ็š„็ผบ็œidไนŸๅบ”ไธบdubbo๏ผŒไพฟไบŽ-Dๅ‚ๆ•ฐ่ฆ†็›–
<ide><path>ubbo-config/src/main/java/com/alibaba/dubbo/config/spring/schema/DubboBeanDefinitionParser.java <ide> if ((id == null || id.length() == 0) && required) { <ide> String generatedBeanName = element.getAttribute("name"); <ide> if (generatedBeanName == null || generatedBeanName.length() ...
Java
bsd-3-clause
28496234fc873f273f1a719eb678609366c2994f
0
guywithnose/iCal4j,guywithnose/iCal4j,guywithnose/iCal4j
/* * $Id$ [05-Apr-2004] * * Copyright (c) 2004, Ben Fortuna * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * o Redistributions of source code must retain the above copyright * not...
source/net/fortuna/ical4j/model/PropertyFactoryImpl.java
/* * $Id$ [05-Apr-2004] * * Copyright (c) 2004, Ben Fortuna * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * o Redistributions of source code must retain the above copyright * not...
pass parameters, value for to XProperty constructor
source/net/fortuna/ical4j/model/PropertyFactoryImpl.java
pass parameters, value for to XProperty constructor
<ide><path>ource/net/fortuna/ical4j/model/PropertyFactoryImpl.java <ide> return new XProperty(name, parameters, value); <ide> } <ide> else if (allowIllegalNames()) { <del> return new XProperty(name); <add> return new XProperty(name, parameters, value); <ide> } <...
JavaScript
mit
3526b27b1890ba5237ac8244004e84699739c027
0
hakovala/elec-trans
"use strict"; // RegExp for checking if string is HTML const re_html = /^\s*<(\w+|!)[^>]*>/; /** * DomUtil class contains collection of static methods for common * DOM functions. */ class DomUtil { /** * Check whether the given object is a DOM Element. */ static isElement(obj) { return !!(obj && obj.nodeT...
lib/dom-util.js
"use strict"; // RegExp for checking if string is HTML const re_html = /^\s*<(\w+|!)[^>]*>/; /** * Check whether the given object is a DOM Element. */ function isElement(obj) { return !!(obj && obj.nodeType === 1); } /** * Check whether the given object is a DOM Text Node. */ function isTextNode(obj) { return ...
Refactor DomUtil to class with static methods Signed-off-by: Harri Kovalainen <2ecf1d4f49b9d136d53b819dc389c152487e9e18@gmail.com>
lib/dom-util.js
Refactor DomUtil to class with static methods
<ide><path>ib/dom-util.js <ide> const re_html = /^\s*<(\w+|!)[^>]*>/; <ide> <ide> /** <del> * Check whether the given object is a DOM Element. <add> * DomUtil class contains collection of static methods for common <add> * DOM functions. <ide> */ <del>function isElement(obj) { <del> return !!(obj && obj.nodeType === 1...
JavaScript
apache-2.0
eb2451916e09bf525e42657ee3423249a738ecef
0
mdmower/doi-resolver-chrome,mdmower/doi-resolver-chrome,mdmower/doi-resolver-chrome
/*! Copyright (C) 2016 Matthew D. Mower Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing...
autolink.js
/*! Copyright (C) 2016 Matthew D. Mower Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing...
Autolink: Try/Catch main routine
autolink.js
Autolink: Try/Catch main routine
<ide><path>utolink.js <ide> <ide> // https://stackoverflow.com/questions/1444409/in-javascript-how-can-i-replace-text-in-an-html-page-without-affecting-the-tags <ide> function replaceDOIsWithLinks() { <del> replaceInElement(document.body, definitions.findDoi, function(match) { <del> var link = document.createElement(...
JavaScript
apache-2.0
720d2298cec7548dc0a0f3f3b7d8d84f398b4291
0
raunakkathuria/binary-static,fayland/binary-static,4p00rv/binary-static,ashkanx/binary-static,ashkanx/binary-static,binary-com/binary-static,binary-com/binary-static,4p00rv/binary-static,raunakkathuria/binary-static,fayland/binary-static,teo-binary/binary-static,4p00rv/binary-static,kellybinary/binary-static,ashkanx/bi...
var Platforms = (function () { var sections = []; function init() { sections = ['more-tools', 'trading-platforms', 'platforms-comparison']; var sidebarListItem = $('.sidebar-nav li'); sidebarListItem.click(function(e) { sidebarListItem.removeClass('selected'); $(t...
src/javascript/binary/static_pages/platforms.js
var Platforms = (function () { var sections = []; function init() { sections = ['more-tools', 'trading-platforms', 'platforms-comparison']; var sidebarListItem = $('.sidebar-nav li'); sidebarListItem.click(function(e) { sidebarListItem.removeClass('selected'); $(t...
hide all sections on resize from mobile
src/javascript/binary/static_pages/platforms.js
hide all sections on resize from mobile
<ide><path>rc/javascript/binary/static_pages/platforms.js <ide> ); <ide> } <ide> function showSelectedDiv() { <del> if ($('.sections[id="' + get_hash().substring(1) + '"]').is(':visible')) return; <add> if ($('.sections[id="' + get_hash().substring(1) + '"]').is(':visible') && <add> ...
Java
mit
error: pathspec 'SecurityServicesAndApplications/SSA_RSA/src/uma/seguridad/RSA.java' did not match any file(s) known to git
f50d5d6912937f1ffb0bc243234985ffc6a84bb0
1
frisinacho/UMA,frisinacho/UMA
package uma.seguridad; /************************************************************************* * Compilation: javac RSA.java * Execution: java RSA N * * Generate an N-bit public and private RSA key and use to encrypt * and decrypt a random message. * * % java RSA 50 * public = 65537 * privat...
SecurityServicesAndApplications/SSA_RSA/src/uma/seguridad/RSA.java
RSA java Main RSA file
SecurityServicesAndApplications/SSA_RSA/src/uma/seguridad/RSA.java
RSA java
<ide><path>ecurityServicesAndApplications/SSA_RSA/src/uma/seguridad/RSA.java <add>package uma.seguridad; <add> <add>/************************************************************************* <add> * Compilation: javac RSA.java <add> * Execution: java RSA N <add> * <add> * Generate an N-bit public and private R...
Java
apache-2.0
ba5b6b152e7c4a9fe8140b79d4bc38e900cdaab1
0
DaanHoogland/cloudstack,GabrielBrascher/cloudstack,wido/cloudstack,jcshen007/cloudstack,jcshen007/cloudstack,DaanHoogland/cloudstack,GabrielBrascher/cloudstack,resmo/cloudstack,GabrielBrascher/cloudstack,wido/cloudstack,wido/cloudstack,GabrielBrascher/cloudstack,wido/cloudstack,wido/cloudstack,DaanHoogland/cloudstack,r...
// // Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you ...
utils/src/com/cloud/utils/StringUtils.java
// // Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you ...
findbugs: deal with all the encoding issues in a unified way further getBytes() calls can getBytes(StringUtils.getPrefferedCharset()) instead Signed-off-by: Daan Hoogland <daan.hoogland@gmail.com> This closes #467 This closes #467
utils/src/com/cloud/utils/StringUtils.java
findbugs: deal with all the encoding issues in a unified way further getBytes() calls can getBytes(StringUtils.getPrefferedCharset()) instead
<ide><path>tils/src/com/cloud/utils/StringUtils.java <ide> <ide> package com.cloud.utils; <ide> <add>import java.nio.charset.Charset; <ide> import java.util.ArrayList; <ide> import java.util.HashMap; <ide> import java.util.Iterator; <ide> <ide> public class StringUtils { <ide> private static final char[] hexChar...
Java
mit
48157f558a625e33340f74d36d10bb87ffd8e5f9
0
bewitharindam/GSOC_PSU_PCBAutoplacer
/* * Copyright 2014 Arindam Bannerjee * This work is distributed under the terms of the "MIT license". Please see the file * LICENSE in this distribution for license terms. * */ package edu.pdx.partitioner; import java.util.*; import edu.pdx.placer.*; import edu.pdx.pcbparser.*; import edu.pdx.parser.*; /** * @auth...
src/edu/pdx/partitioner/FmHeuristic.java
/** * */ package edu.pdx.partitioner; import java.util.*; import edu.pdx.placer.*; import edu.pdx.pcbparser.*; import edu.pdx.parser.*; /** * @author Arindam Banerjee * */ public class FmHeuristic { String netlistFile=""; String pcbFile=""; List<String> leftBucket = new ArrayList<String>(); List<String>...
added License pointer in Partitioner file
src/edu/pdx/partitioner/FmHeuristic.java
added License pointer in Partitioner file
<ide><path>rc/edu/pdx/partitioner/FmHeuristic.java <del>/** <del> * <del> */ <add>/* <add>* Copyright 2014 Arindam Bannerjee <add>* This work is distributed under the terms of the "MIT license". Please see the file <add>* LICENSE in this distribution for license terms. <add>* <add>*/ <add> <ide> package edu.pdx.partit...
Java
mit
a80acc136e316d4d82bc8585af9c7547de83bc16
0
jbosboom/streamjit,jbosboom/streamjit
package edu.mit.streamjit.impl.compiler; import edu.mit.streamjit.api.Identity; import edu.mit.streamjit.impl.common.MethodNodeBuilder; import edu.mit.streamjit.impl.compiler.insts.CallInst; import edu.mit.streamjit.impl.compiler.insts.ReturnInst; import edu.mit.streamjit.impl.compiler.types.MethodType; import edu.mit...
src/edu/mit/streamjit/impl/compiler/MethodResolver.java
package edu.mit.streamjit.impl.compiler; import edu.mit.streamjit.api.Identity; import edu.mit.streamjit.impl.common.MethodNodeBuilder; import edu.mit.streamjit.impl.compiler.insts.CallInst; import edu.mit.streamjit.impl.compiler.insts.ReturnInst; import edu.mit.streamjit.impl.compiler.types.MethodType; import edu.mit...
MethodResolver: istore and friends
src/edu/mit/streamjit/impl/compiler/MethodResolver.java
MethodResolver: istore and friends
<ide><path>rc/edu/mit/streamjit/impl/compiler/MethodResolver.java <ide> assert frame.locals[var].getType() instanceof ReferenceType; <ide> frame.stack.push(frame.locals[var]); <ide> break; <add> case Opcodes.ISTORE: <add> assert frame.stack.peek().getType().isSubtypeOf(typeFactory.getType(int.class)); ...
JavaScript
mit
a901e247a723a17154c8ee4d60c5663ad84a7dd0
0
ccxt/ccxt,ccxt/ccxt,ccxt/ccxt,ccxt/ccxt,ccxt/ccxt
'use strict'; // --------------------------------------------------------------------------- const Exchange = require ('./base/Exchange'); const { ArgumentsRequired, AuthenticationError, ExchangeError, InsufficientFunds, InvalidOrder, BadSymbol, PermissionDenied, BadRequest } = require ('./base/errors'); const { TIC...
js/ascendex.js
'use strict'; // --------------------------------------------------------------------------- const Exchange = require ('./base/Exchange'); const { ArgumentsRequired, AuthenticationError, ExchangeError, InsufficientFunds, InvalidOrder, BadSymbol, PermissionDenied, BadRequest } = require ('./base/errors'); const { TIC...
Ascendex fetchClosedOrders() Swap Functionality https://ascendex.github.io/ascendex-futures-pro-api-v2/#list-current-history-orders
js/ascendex.js
Ascendex fetchClosedOrders() Swap Functionality
<ide><path>s/ascendex.js <ide> market = this.market (symbol); <ide> request['symbol'] = market['id']; <ide> } <del> const method = this.safeValue (options, 'method', 'v1PrivateAccountGroupGetOrderHist'); <add> let method = this.safeValue (options, 'method', 'v1PrivateAccoun...
Java
apache-2.0
error: pathspec 'src/main/java/com/redhat/ceylon/compiler/js/DocVisitor.java' did not match any file(s) known to git
e7c739047e90c3eed2e269f13f989c0dda358c8f
1
ceylon/ceylon-js,ceylon/ceylon-js,ceylon/ceylon-js
package com.redhat.ceylon.compiler.js; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import com.redhat.ceylon.compiler.typechecker.model.Annotation; import com.redhat.ceylon.compiler.typechecker.tree.Tree.MemberOrTypeExpression; import com.redhat.ceylon.compiler.ty...
src/main/java/com/redhat/ceylon/compiler/js/DocVisitor.java
This visitor gathers all references to available ceylondoc descriptions. This is why the "doc" annotation kicks javadoc's comments' ass any day.
src/main/java/com/redhat/ceylon/compiler/js/DocVisitor.java
This visitor gathers all references to available ceylondoc descriptions. This is why the "doc" annotation kicks javadoc's comments' ass any day.
<ide><path>rc/main/java/com/redhat/ceylon/compiler/js/DocVisitor.java <add>package com.redhat.ceylon.compiler.js; <add> <add>import java.util.ArrayList; <add>import java.util.HashMap; <add>import java.util.List; <add>import java.util.Map; <add> <add>import com.redhat.ceylon.compiler.typechecker.model.Annotation; <add>i...
JavaScript
mit
e1f89ccac12cc15d6d636d3360fba43d3fb13af0
0
sibartlett/jquery-ui-lookup
๏ปฟ/*! * jQuery UI Lookup 0.1.0 * * Copyright 2011, Simon Bartlett * Dual licensed under the MIT or GPL Version 2 licenses. * * https://github.com/SimonBartlett/jquery-ui-lookup */ (function ($) { $.lookup = { createBodyTemplate: function (name) { return '<div id="' + name + '" style="displa...
jquery.ui.lookup.js
๏ปฟ/*! * jQuery UI Lookup 0.1.0 * * Copyright 2011, Simon Bartlett * Dual licensed under the MIT or GPL Version 2 licenses. * * https://github.com/SimonBartlett/jquery-ui-lookup */ (function ($) { $.lookup = { createBodyTemplate: function (name) { return '<div id="' + name ...
Fixing whitespace.
jquery.ui.lookup.js
Fixing whitespace.
<ide><path>query.ui.lookup.js <ide> <ide> (function ($) { <ide> <del> $.lookup = { <add> $.lookup = { <ide> <del> createBodyTemplate: function (name) { <del> return '<div id="' + name + '" style="display:none;">' + <del> '<div style="height: 30px;"><label style="display: inline;">...
Java
apache-2.0
83540fe9500d91932545bcce87453ca835318dec
0
mark-friedman/web-appinventor,weihuali0509/web-appinventor,weihuali0509/web-appinventor,mark-friedman/web-appinventor,weihuali0509/web-appinventor,mark-friedman/web-appinventor,weihuali0509/web-appinventor,mark-friedman/web-appinventor,weihuali0509/web-appinventor,mark-friedman/web-appinventor
// -*- mode: java; c-basic-offset: 2; -*- // Copyright 2009-2011 Google, All Rights reserved // Copyright 2011-2012 MIT, All rights reserved // Released under the Apache License, Version 2.0 // http://www.apache.org/licenses/LICENSE-2.0 package com.google.appinventor.server.storage; import com.google.appengine.api.bl...
appinventor/appengine/src/com/google/appinventor/server/storage/ObjectifyStorageIo.java
// -*- mode: java; c-basic-offset: 2; -*- // Copyright 2009-2011 Google, All Rights reserved // Copyright 2011-2012 MIT, All rights reserved // Released under the Apache License, Version 2.0 // http://www.apache.org/licenses/LICENSE-2.0 package com.google.appinventor.server.storage; import com.google.appengine.api.bl...
Made pickup change to ObjectifyStorageIO.java
appinventor/appengine/src/com/google/appinventor/server/storage/ObjectifyStorageIo.java
Made pickup change to ObjectifyStorageIO.java
<ide><path>ppinventor/appengine/src/com/google/appinventor/server/storage/ObjectifyStorageIo.java <ide> fileCount.t++; <ide> } <ide> <del> // Add the bootstrap library to the zip output. <del> String bootstrapFileName = importFile.getFileName(); <del> ...
Java
apache-2.0
e60bd4b5abd7e6f01966c1b356a931a8ea13c1be
0
d3sw/conductor,d3sw/conductor,d3sw/conductor,d3sw/conductor,d3sw/conductor,d3sw/conductor
package com.netflix.conductor.dao.es6rest.dao; import com.fasterxml.jackson.databind.ObjectMapper; import com.netflix.conductor.common.metadata.events.EventExecution; import com.netflix.conductor.common.metadata.events.EventHandler; import com.netflix.conductor.common.metadata.tasks.Task; import com.netflix.conductor....
es6rest-persistence/src/main/java/com/netflix/conductor/dao/es6rest/dao/Elasticsearch6RestMetricsDAO.java
package com.netflix.conductor.dao.es6rest.dao; import com.fasterxml.jackson.databind.ObjectMapper; import com.netflix.conductor.common.metadata.events.EventExecution; import com.netflix.conductor.common.metadata.events.EventHandler; import com.netflix.conductor.common.metadata.tasks.Task; import com.netflix.conductor....
ONECOND-1039 Get future failed java.lang.NullPointerException. Minor improvements
es6rest-persistence/src/main/java/com/netflix/conductor/dao/es6rest/dao/Elasticsearch6RestMetricsDAO.java
ONECOND-1039 Get future failed java.lang.NullPointerException. Minor improvements
<ide><path>s6rest-persistence/src/main/java/com/netflix/conductor/dao/es6rest/dao/Elasticsearch6RestMetricsDAO.java <ide> initMetric(map, String.format("%s.event_published%s.%s", PREFIX, toLabel(today), subject)); <ide> } <ide> <del> QueryBuilder mainQuery = QueryBuilders.termsQuery("subject.keyword", SINK_SUBJE...
Java
bsd-3-clause
1804af2fcaef4933ac0d6452df20ec727620db37
0
ClemsonRSRG/RESOLVE,ClemsonRSRG/RESOLVE,yushan87/RESOLVE,ClemsonRSRG/RESOLVE,mikekab/RESOLVE,NighatYasmin/RESOLVE,yushan87/RESOLVE,NighatYasmin/RESOLVE,yushan87/RESOLVE,NighatYasmin/RESOLVE,mikekab/RESOLVE
/** * Utilities.java * --------------------------------- * Copyright (c) 2015 * RESOLVE Software Research Group * School of Computing * Clemson University * All rights reserved. * --------------------------------- * This file is subject to the terms and conditions defined in * file 'LICENSE.txt', which is par...
src/main/java/edu/clemson/cs/r2jt/vcgeneration/Utilities.java
/** * Utilities.java * --------------------------------- * Copyright (c) 2015 * RESOLVE Software Research Group * School of Computing * Clemson University * All rights reserved. * --------------------------------- * This file is subject to the terms and conditions defined in * file 'LICENSE.txt', which is par...
Added javadoc
src/main/java/edu/clemson/cs/r2jt/vcgeneration/Utilities.java
Added javadoc
<ide><path>rc/main/java/edu/clemson/cs/r2jt/vcgeneration/Utilities.java <ide> return Z; <ide> } <ide> <add> /** <add> * <p>Gets all the unique symbols in an expression.</p> <add> * <add> * @param exp The searching <code>Exp</code>. <add> * <add> * @return The set of symbols. <add> ...
Java
apache-2.0
64aaf38dc3d4a079f803cdfb7c713beee0cac681
0
HuangLS/neo4j,HuangLS/neo4j,HuangLS/neo4j,HuangLS/neo4j,HuangLS/neo4j
/* * Copyright (c) 2002-2015 "Neo Technology," * Network Engine for Objects in Lund AB [http://neotechnology.com] * * This file is part of Neo4j. * * Neo4j is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundatio...
community/kernel/src/test/java/org/neo4j/graphdb/impl/notification/NotificationCodeTest.java
/* * Copyright (c) 2002-2015 "Neo Technology," * Network Engine for Objects in Lund AB [http://neotechnology.com] * * This file is part of Neo4j. * * Neo4j is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundatio...
Fix NotificationCodeTest on Java8
community/kernel/src/test/java/org/neo4j/graphdb/impl/notification/NotificationCodeTest.java
Fix NotificationCodeTest on Java8
<ide><path>ommunity/kernel/src/test/java/org/neo4j/graphdb/impl/notification/NotificationCodeTest.java <ide> <ide> import org.junit.Test; <ide> <del>import java.util.HashSet; <ide> import java.util.Set; <add>import java.util.TreeSet; <ide> <ide> import org.neo4j.graphdb.InputPosition; <ide> import org.neo4j.graphdb....
JavaScript
agpl-3.0
395d00619dc88eaa385f690c23aaf87e5d03f592
0
ONLYOFFICE/sdkjs,ONLYOFFICE/sdkjs,ONLYOFFICE/sdkjs,ONLYOFFICE/sdkjs,ONLYOFFICE/sdkjs
/* * (c) Copyright Ascensio System SIA 2010-2019 * * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation. In accordance with * Section 7(a) of the GNU AGPL its S...
common/Drawings/Format/Format.js
/* * (c) Copyright Ascensio System SIA 2010-2019 * * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation. In accordance with * Section 7(a) of the GNU AGPL its S...
Fix bug #58595
common/Drawings/Format/Format.js
Fix bug #58595
<ide><path>ommon/Drawings/Format/Format.js <ide> blipFill.setRasterImageId(url); <ide> } <ide> }; <del> CBullet.prototype.drawSquareImage = function (divId, relativeIndent) { <del> relativeIndent = relativeIndent || 0; <del> <del> var url = this.getImageBulletURL(); <del> var Api = editor || Asc.editor;...
Java
epl-1.0
b11a5dc2d6c9254222cb3af1d207c93dd41c2b1f
0
paritoshdave/Convert-For-Each-Loop-to-Lambda-Expression-Eclipse-Plugin,mdarefin/Convert-For-Each-Loop-to-Lambda-Expression-Eclipse-Plugin
package edu.cuny.citytech.foreachlooptolambda.ui.refactorings; import java.text.MessageFormat; import java.util.Arrays; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.List; import java.util.Set; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IProgressMonitor...
edu.cuny.citytech.foreachlooptolambda.ui/src/edu/cuny/citytech/foreachlooptolambda/ui/refactorings/ForeachLoopToLambdaRefactoring.java
package edu.cuny.citytech.foreachlooptolambda.ui.refactorings; import java.text.MessageFormat; import java.util.Arrays; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.List; import java.util.Set; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IProgressMonitor...
#8 some progress
edu.cuny.citytech.foreachlooptolambda.ui/src/edu/cuny/citytech/foreachlooptolambda/ui/refactorings/ForeachLoopToLambdaRefactoring.java
#8 some progress
<ide><path>du.cuny.citytech.foreachlooptolambda.ui/src/edu/cuny/citytech/foreachlooptolambda/ui/refactorings/ForeachLoopToLambdaRefactoring.java <ide> import org.eclipse.core.runtime.OperationCanceledException; <ide> import org.eclipse.core.runtime.SubProgressMonitor; <ide> import org.eclipse.jdt.core.ICompilationUnit;...
Java
apache-2.0
error: pathspec 'src/main/java/gr/forth/DateRangeLabel.java' did not match any file(s) known to git
a10b7b1a8cb48998da6d5fc5d7eb552907d74824
1
isl/x3ml,isl/x3ml,isl/x3ml
/*============================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you...
src/main/java/gr/forth/DateRangeLabel.java
added a new LabelGenerator (provided by BritishMuseum)
src/main/java/gr/forth/DateRangeLabel.java
added a new LabelGenerator (provided by BritishMuseum)
<ide><path>rc/main/java/gr/forth/DateRangeLabel.java <add>/*============================================================================== <add>Licensed to the Apache Software Foundation (ASF) under one <add>or more contributor license agreements. See the NOTICE file <add>distributed with this work for additional info...
Java
agpl-3.0
a14fef5417a0689a4c764afcf2a605c3606ef43f
0
RBGKew/eMonocot,RBGKew/eMonocot,RBGKew/eMonocot
package org.emonocot.checklist.view.oai; import java.io.StringReader; import java.util.HashMap; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.custommonkey.xmlunit.Diff; import org.custommonkey.xmlunit.Validator; import org.custommonkey.x...
emonocot-checklist/src/test/java/org/emonocot/checklist/view/oai/AbstractOaiPmhViewTestCase.java
package org.emonocot.checklist.view.oai; import java.io.StringReader; import java.util.HashMap; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.custommonkey.xmlunit.Diff; import org.custommonkey.xmlunit.Validator; import org.custommonkey.x...
Last commit failed - "Just fixing bug trapped by test (Inherited XStream elements)"
emonocot-checklist/src/test/java/org/emonocot/checklist/view/oai/AbstractOaiPmhViewTestCase.java
Last commit failed - "Just fixing bug trapped by test (Inherited XStream elements)"
<ide><path>monocot-checklist/src/test/java/org/emonocot/checklist/view/oai/AbstractOaiPmhViewTestCase.java <ide> */ <ide> public final void testView() throws Exception { <ide> view.render(model, request, response); <del> System.out.println(((MockHttpServletResponse) response) <add> ...
Java
lgpl-2.1
04ec1567bcaa8aae196bd92c5e3523782c2ada95
0
xwiki/xwiki-platform,xwiki/xwiki-platform,xwiki/xwiki-platform,pbondoer/xwiki-platform,pbondoer/xwiki-platform,xwiki/xwiki-platform,xwiki/xwiki-platform,pbondoer/xwiki-platform,pbondoer/xwiki-platform,pbondoer/xwiki-platform
/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * th...
xwiki-core/src/main/java/com/xpn/xwiki/plugin/feed/FeedPlugin.java
/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * th...
[cleanup] Improved codestyle git-svn-id: d23d7a6431d93e1bdd218a46658458610974b053@25710 f329d543-caf0-0310-9063-dda96c69346f
xwiki-core/src/main/java/com/xpn/xwiki/plugin/feed/FeedPlugin.java
[cleanup] Improved codestyle
<ide><path>wiki-core/src/main/java/com/xpn/xwiki/plugin/feed/FeedPlugin.java <ide> return feed; <ide> } catch (Exception ex) { <ide> if (ignoreInvalidFeeds) { <add> @SuppressWarnings("unchecked") <ide> Map<String, Exception> map = (Map<String, Exception>) c...
Java
mit
7fc601af00c99afad9300cf3b930d7246f7ae04d
0
mairdl/jabref,Siedlerchr/jabref,Mr-DLib/jabref,Braunch/jabref,ayanai1/jabref,tschechlovdev/jabref,jhshinn/jabref,Siedlerchr/jabref,shitikanth/jabref,mairdl/jabref,JabRef/jabref,obraliar/jabref,oscargus/jabref,mredaelli/jabref,tobiasdiez/jabref,sauliusg/jabref,Mr-DLib/jabref,oscargus/jabref,bartsch-dev/jabref,Braunch/ja...
/////////////////////////////////////////////////////////////////////////////// // Filename: $RCSfile$ // Purpose: Atom representation. // Language: Java // Compiler: JDK 1.4 // Authors: Joerg K. Wegner // Version: $Revision$ // $Date$ // $Author$ // // Copyright (c) Dept. Computer Archi...
src/java/net/sf/jabref/export/layout/format/RemoveWhitespace.java
/////////////////////////////////////////////////////////////////////////////// // Filename: $RCSfile$ // Purpose: Atom representation. // Language: Java // Compiler: JDK 1.4 // Authors: Joerg K. Wegner // Version: $Revision$ // $Date$ // $Author$ // // Copyright (c) Dept. Computer Archi...
Reformatted for readability. Some improvements for speed-up.
src/java/net/sf/jabref/export/layout/format/RemoveWhitespace.java
Reformatted for readability.
<ide><path>rc/java/net/sf/jabref/export/layout/format/RemoveWhitespace.java <ide> <ide> import net.sf.jabref.export.layout.LayoutFormatter; <ide> <del> <ide> /** <ide> * Remove non printable character formatter. <del> * <add> * <ide> * Based on the RemoveBrackets.java class (Revision 1.2) by mortenalver <add> * <...
Java
apache-2.0
1bec95ee186451bb02dda3b5b8fed212207c81e3
0
vvv1559/intellij-community,apixandru/intellij-community,mglukhikh/intellij-community,asedunov/intellij-community,asedunov/intellij-community,asedunov/intellij-community,allotria/intellij-community,ibinti/intellij-community,da1z/intellij-community,ibinti/intellij-community,allotria/intellij-community,apixandru/intellij-...
/* /* * Copyright 2000-2016 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
platform/lang-impl/src/com/intellij/util/ui/tree/PerFileConfigurableBase.java
/* /* * Copyright 2000-2016 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
DBE: tooltips
platform/lang-impl/src/com/intellij/util/ui/tree/PerFileConfigurableBase.java
DBE: tooltips
<ide><path>latform/lang-impl/src/com/intellij/util/ui/tree/PerFileConfigurableBase.java <ide> import javax.swing.*; <ide> import javax.swing.table.*; <ide> import java.awt.*; <add>import java.awt.event.MouseEvent; <ide> import java.io.File; <ide> import java.util.*; <ide> import java.util.List; <ide> public JComponen...
Java
mit
ad1afd44c29026c0dbf45998517481812f7371dd
0
hamadycisse/hackathon2017
app/src/main/java/hackathon/rc/ca/hackathon/client/TestRebaseBoris.java
package hackathon.rc.ca.hackathon.client; /** * Created by Boris on 2017-03-25. */ public class TestRebaseBoris { }
Test un peu con de la classe TestRebaseBoris dans Client
app/src/main/java/hackathon/rc/ca/hackathon/client/TestRebaseBoris.java
Test un peu con de la classe TestRebaseBoris dans Client
<ide><path>pp/src/main/java/hackathon/rc/ca/hackathon/client/TestRebaseBoris.java <del>package hackathon.rc.ca.hackathon.client; <del> <del>/** <del> * Created by Boris on 2017-03-25. <del> */ <del> <del>public class TestRebaseBoris { <del>}
JavaScript
mit
ed711e5f2b5b9c384cebea7574f397a50ac214b7
0
nabab/bbn-vue,nabab/bbn-vue
/** * @file bbn-markdown component * * @description bbn-markdown is a component that allows you to easily format the Markdown text. * It's an editor that enable you to create textual content, to insert lists, image management and hyperlinks. * * @copyright BBN Solutions * * @author BBN Solutions */ //Markdow...
src/components/markdown/markdown.js
/** * @file bbn-markdown component * * @description bbn-markdown is a component that allows you to easily format the Markdown text. * It's an editor that enable you to create textual content, to insert lists, image management and hyperlinks. * * @copyright BBN Solutions * * @author BBN Solutions */ //Markdow...
Markdown w/ Nerd fonts
src/components/markdown/markdown.js
Markdown w/ Nerd fonts
<ide><path>rc/components/markdown/markdown.js <ide> //Markdown editor use simpleMDe <ide> (function(bbn, SimpleMDE){ <ide> "use strict"; <add> <add> const toolbar = [ <add> { <add> "name": "bold", <add> "className": "nf nf-fa-bold", <add> "title": bbn._("Bold"), <add> "default": true <add> ...
Java
mit
error: pathspec 'src/main/java/kr/co/leehana/controller/MainController.java' did not match any file(s) known to git
62e3be0da396c7b48ecd4f5f0534534fa3b65814
1
Hana-Lee/pc-bang
package kr.co.leehana.controller; import kr.co.leehana.view.LoginFrame; import kr.co.leehana.view.ManageView; /** * @author Hana Lee * @since 2015-11-14 03-28 */ public class MainController { private LoginFrame loginFrame; private ManageView manageView; }
src/main/java/kr/co/leehana/controller/MainController.java
์„œ๋ฒ„์™€ ํด๋ผ์ด์–ธํŠธ ํ†ต์‹  ๋ฐ ์‚ฌ์šฉ์ž ํ™”๋ฉด๋“ค์„ ๊ด€๋ฆฌ ํ•˜๊ธฐ ์œ„ํ•œ ๋ฉ”์ธ ์ปจํŠธ๋กค ํด๋ž˜์Šค ์ถ”๊ฐ€.
src/main/java/kr/co/leehana/controller/MainController.java
์„œ๋ฒ„์™€ ํด๋ผ์ด์–ธํŠธ ํ†ต์‹  ๋ฐ ์‚ฌ์šฉ์ž ํ™”๋ฉด๋“ค์„ ๊ด€๋ฆฌ ํ•˜๊ธฐ ์œ„ํ•œ ๋ฉ”์ธ ์ปจํŠธ๋กค ํด๋ž˜์Šค ์ถ”๊ฐ€.
<ide><path>rc/main/java/kr/co/leehana/controller/MainController.java <add>package kr.co.leehana.controller; <add> <add>import kr.co.leehana.view.LoginFrame; <add>import kr.co.leehana.view.ManageView; <add> <add>/** <add> * @author Hana Lee <add> * @since 2015-11-14 03-28 <add> */ <add>public class MainController { <add...