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 | 0c2e554e2735954ef3180dcc99ccaacb78aa5f0a | 0 | hs-jenkins-bot/Singularity,evertrue/Singularity,tejasmanohar/Singularity,calebTomlinson/Singularity,nvoron23/Singularity,hs-jenkins-bot/Singularity,calebTomlinson/Singularity,evertrue/Singularity,acbellini/Singularity,evertrue/Singularity,nvoron23/Singularity,nvoron23/Singularity,HubSpot/Singularity,HubSpot/Singularity... | package com.hubspot.singularity;
import java.util.List;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
import org.quartz.CronExpression;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annota... | src/main/java/com/hubspot/singularity/SingularityRequest.java | package com.hubspot.singularity;
import java.util.List;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
import org.quartz.CronExpression;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annota... | fix this | src/main/java/com/hubspot/singularity/SingularityRequest.java | fix this | <ide><path>rc/main/java/com/hubspot/singularity/SingularityRequest.java
<ide>
<ide> if (dayOfWeek.equals("*")) {
<ide> dayOfWeek = "?";
<del> } else {
<add> } else if (!dayOfWeek.equals("?")) {
<ide> dayOfMonth = "?";
<ide> }
<ide> | |
Java | apache-2.0 | 621a9f25e9ae969566c0fdda5bfa0cc801a52176 | 0 | andyshao/zxing,GeekHades/zxing,gank0326/zxing,qianchenglenger/zxing,praveen062/zxing,ikenneth/zxing,tanelihuuskonen/zxing,graug/zxing,layeka/zxing,juoni/zxing,zxing/zxing,GeorgeMe/zxing,angrilove/zxing,ptrnov/zxing,Solvoj/zxing,peterdocter/zxing,sitexa/zxing,0111001101111010/zxing,BraveAction/zxing,JasOXIII/zxing,ikenn... | /*
* Copyright 2007 ZXing 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 required by applicable law o... | core/src/com/google/zxing/qrcode/detector/FinderPatternFinder.java | /*
* Copyright 2007 ZXing 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 required by applicable law o... | Switch to integer math in a critical QR Code detector method for speed and tweak a few things before I start investigating this method and the infamous "270 issue"
git-svn-id: b10e9e05a96f28f96949e4aa4212c55f640c8f96@485 59b500cc-1b3d-0410-9834-0bbf25fbcc57
| core/src/com/google/zxing/qrcode/detector/FinderPatternFinder.java | Switch to integer math in a critical QR Code detector method for speed and tweak a few things before I start investigating this method and the infamous "270 issue" | <ide><path>ore/src/com/google/zxing/qrcode/detector/FinderPatternFinder.java
<ide> private static final int CENTER_QUORUM = 2;
<ide> private static final int MIN_SKIP = 3; // 1 pixel/module times 3 modules/center
<ide> private static final int MAX_MODULES = 57; // support up to version 10 for mobile clients
<add>... | |
Java | apache-2.0 | dc91cf9ef27fb16f05c0dfc001997b00ebadaac6 | 0 | Hocdoc/lettuce,pulse00/lettuce,Hocdoc/lettuce,taer/lettuce,taer/lettuce,pulse00/lettuce,lettuce-io/lettuce-core,mp911de/lettuce,lettuce-io/lettuce-core,lettuce-io/lettuce-core,lettuce-io/lettuce-core,mp911de/lettuce | // Copyright (C) 2011 - Will Glozer. All rights reserved.
package com.lambdaworks.redis.pubsub;
import java.util.concurrent.BlockingQueue;
import com.lambdaworks.redis.codec.RedisCodec;
import com.lambdaworks.redis.protocol.CommandHandler;
import com.lambdaworks.redis.protocol.CommandOutput;
import com.lambdaworks.... | src/main/java/com/lambdaworks/redis/pubsub/PubSubCommandHandler.java | // Copyright (C) 2011 - Will Glozer. All rights reserved.
package com.lambdaworks.redis.pubsub;
import java.util.concurrent.BlockingQueue;
import com.lambdaworks.redis.codec.RedisCodec;
import com.lambdaworks.redis.protocol.CommandHandler;
import com.lambdaworks.redis.protocol.CommandOutput;
import com.lambdaworks.... | only discard bytes once they have been fully used
| src/main/java/com/lambdaworks/redis/pubsub/PubSubCommandHandler.java | only discard bytes once they have been fully used | <ide><path>rc/main/java/com/lambdaworks/redis/pubsub/PubSubCommandHandler.java
<ide> while (rsm.decode(buffer, output)) {
<ide> ctx.fireChannelRead(output);
<ide> output = new PubSubOutput<K, V>(codec);
<add> buffer.discardReadBytes();
<ide> }
<del>
<del> ... | |
Java | apache-2.0 | 218d1a7694824cca4096a521492cd2fc58b26cec | 0 | edlectrico/android-dynamic-ui,edlectrico/android-dynamic-ui | package es.deusto.deustotech.dynamicui.modules;
import java.util.HashMap;
import android.content.Context;
import android.util.Log;
import com.hp.hpl.jena.ontology.Individual;
import com.hp.hpl.jena.ontology.OntClass;
import com.hp.hpl.jena.ontology.OntModel;
import com.hp.hpl.jena.ontology.OntModelSpec;
import com.h... | src/es/deusto/deustotech/dynamicui/modules/UIReasoner.java | package es.deusto.deustotech.dynamicui.modules;
import java.util.HashMap;
import android.content.Context;
import android.util.Log;
import com.hp.hpl.jena.ontology.Individual;
import com.hp.hpl.jena.ontology.OntClass;
import com.hp.hpl.jena.ontology.OntModel;
import com.hp.hpl.jena.ontology.OntModelSpec;
import com.h... | Few changes
| src/es/deusto/deustotech/dynamicui/modules/UIReasoner.java | Few changes | <ide><path>rc/es/deusto/deustotech/dynamicui/modules/UIReasoner.java
<ide> * This method loads any rule to be executed by the reasoner
<ide> * @return A String containing every rule
<ide> */
<del> private String loadRules() {
<del> String rules = "";
<del>
<del> String adaptViewSize_1 = ... | |
Java | apache-2.0 | aa56c3cc08190a8b864d61026a9dce95b6d76bc3 | 0 | paulmadore/woodcoinj,lavajumper/bitcoinj-scrypt,funkshelper/bitcoinj,lavajumper/bitcoinj-scrypt,lavajumper/bitcoinj-scrypt | package com.google.bitcoin.tools;
import com.google.bitcoin.core.*;
import org.litecoin.LitecoinParams;
import com.google.bitcoin.store.BlockStore;
import com.google.bitcoin.store.MemoryBlockStore;
import com.google.bitcoin.utils.BriefLogFormatter;
import com.google.bitcoin.utils.Threading;
import java.io.DataOutputS... | tools/src/main/java/com/google/bitcoin/tools/BuildCheckpoints.java | package com.google.bitcoin.tools;
import com.google.bitcoin.core.*;
import com.google.bitcoin.params.MainNetParams;
import com.google.bitcoin.store.BlockStore;
import com.google.bitcoin.store.MemoryBlockStore;
import com.google.bitcoin.utils.BriefLogFormatter;
import com.google.bitcoin.utils.Threading;
import java.io... | Litecoin: generate checkpointslitecoin
| tools/src/main/java/com/google/bitcoin/tools/BuildCheckpoints.java | Litecoin: generate checkpointslitecoin | <ide><path>ools/src/main/java/com/google/bitcoin/tools/BuildCheckpoints.java
<ide> package com.google.bitcoin.tools;
<ide>
<ide> import com.google.bitcoin.core.*;
<del>import com.google.bitcoin.params.MainNetParams;
<add>import org.litecoin.LitecoinParams;
<ide> import com.google.bitcoin.store.BlockStore;
<ide> import... | |
Java | apache-2.0 | a3eb32dce8dee5788ace4c34aba2a623f05c5fa3 | 0 | coekie/gentyref,leangen/geantyref | package com.googlecode.gentyref;
import java.io.Serializable;
import java.lang.reflect.Array;
import java.lang.reflect.Field;
import java.lang.reflect.GenericArrayType;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Li... | src/test/java/com/googlecode/gentyref/AbstractGenericsReflectorTest.java | package com.googlecode.gentyref;
import java.io.Serializable;
import java.lang.reflect.Array;
import java.lang.reflect.GenericArrayType;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.RandomAcces... | add tests related to capture conversion
git-svn-id: 326906f25eac0196cf968068262a06313b1d5d7a@18 9a24f7ba-d458-11dd-86d7-074df07e0730
| src/test/java/com/googlecode/gentyref/AbstractGenericsReflectorTest.java | add tests related to capture conversion | <ide><path>rc/test/java/com/googlecode/gentyref/AbstractGenericsReflectorTest.java
<ide> package com.googlecode.gentyref;
<ide> import java.io.Serializable;
<ide> import java.lang.reflect.Array;
<add>import java.lang.reflect.Field;
<ide> import java.lang.reflect.GenericArrayType;
<ide> import java.lang.reflect.Paramete... | |
Java | apache-2.0 | 4f902f30d6d770003ebb8ab6fd420d1c00dc520d | 0 | etnetera/jmeter,d0k1/jmeter,ThiagoGarciaAlves/jmeter,etnetera/jmeter,irfanah/jmeter,hemikak/jmeter,thomsonreuters/jmeter,hizhangqi/jmeter-1,irfanah/jmeter,ra0077/jmeter,fj11/jmeter,tuanhq/jmeter,ubikfsabbe/jmeter,ThiagoGarciaAlves/jmeter,etnetera/jmeter,ubikloadpack/jmeter,ubikfsabbe/jmeter,ubikfsabbe/jmeter,fj11/jmete... | /*
* 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 may ... | src/jorphan/org/apache/jorphan/logging/LoggingManager.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 may ... | Allow more room for thread name (20 chars)
git-svn-id: 7c053b8fbd1fb5868f764c6f9536fc6a9bbe7da9@654760 13f79535-47bb-0310-9956-ffa450edef68
| src/jorphan/org/apache/jorphan/logging/LoggingManager.java | Allow more room for thread name (20 chars) | <ide><path>rc/jorphan/org/apache/jorphan/logging/LoggingManager.java
<ide> + "%{category}: %{message} %{throwable}"; //$NON_NLS-1$
<ide>
<ide> private static final String PATTERN_THREAD_PREFIX = "%{time:yyyy/MM/dd HH:mm:ss} %5.5{priority} " //$NON_NLS-1$
<del> + "%12{thread} %{category}: %{message} %{throwable}... | |
Java | apache-2.0 | 368030cf0bd22f8e6020befa6dfed6de0a3ed136 | 0 | 1and1/cosmo,1and1/cosmo,1and1/cosmo,astrolox/cosmo,astrolox/cosmo,astrolox/cosmo | /*
* Copyright 2006 Open Source Applications 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 by a... | cosmo-core/src/main/java/org/unitedinternet/cosmo/dao/ContentDao.java | /*
* Copyright 2006 Open Source Applications 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 by a... | Marked update/remove content methods as @ExternalizableContent | cosmo-core/src/main/java/org/unitedinternet/cosmo/dao/ContentDao.java | Marked update/remove content methods as @ExternalizableContent | <ide><path>osmo-core/src/main/java/org/unitedinternet/cosmo/dao/ContentDao.java
<ide> * content item to update
<ide> * @return updated content item
<ide> */
<add> @ExternalizableContent
<ide> public ContentItem updateContent(ContentItem content);
<ide>
<ide>
<ide> * @param con... | |
Java | epl-1.0 | 9a8ca2930d934d7053e6e3f0b4d1e152ca104b20 | 0 | debrief/debrief,debrief/debrief,theanuradha/debrief,theanuradha/debrief,theanuradha/debrief,debrief/debrief,theanuradha/debrief,debrief/debrief,theanuradha/debrief,debrief/debrief,theanuradha/debrief,debrief/debrief,theanuradha/debrief | package Debrief.ReaderWriter.NMEA;
import java.awt.Color;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import j... | org.mwc.debrief.legacy/src/Debrief/ReaderWriter/NMEA/ImportNMEA.java | package Debrief.ReaderWriter.NMEA;
import java.awt.Color;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import j... | change processing so we can optionally choose to generate DR track from organic sensors rather than using GPS locations
| org.mwc.debrief.legacy/src/Debrief/ReaderWriter/NMEA/ImportNMEA.java | change processing so we can optionally choose to generate DR track from organic sensors rather than using GPS locations | <ide><path>rg.mwc.debrief.legacy/src/Debrief/ReaderWriter/NMEA/ImportNMEA.java
<ide> private enum MsgType
<ide> {
<ide> VESSEL_NAME, OS_POS, CONTACT, TIMESTAMP, UNKNOWN, AIS, OS_DEPTH,
<del> OS_COURSE_SPEED;
<add> OS_COURSE_SPEED, OS_COURSE, OS_SPEED;
<ide> }
<ide>
<ide> private static class State
<i... | |
Java | bsd-3-clause | a4c876f87ead8fd84668c8f76189c0775c48a4a6 | 0 | jamie-dryad/dryad-repo,ojacobson/dryad-repo,ojacobson/dryad-repo,jimallman/dryad-repo,jimallman/dryad-repo,jimallman/dryad-repo,rnathanday/dryad-repo,jimallman/dryad-repo,ojacobson/dryad-repo,rnathanday/dryad-repo,jamie-dryad/dryad-repo,jamie-dryad/dryad-repo,ojacobson/dryad-repo,jimallman/dryad-repo,jimallman/dryad-re... | /*
* DSQuery.java
*
* Version: $Revision$
*
* Date: $Date$
*
* Copyright (c) 2002, Hewlett-Packard Company and Massachusetts
* Institute of Technology. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condit... | dspace/src/org/dspace/search/DSQuery.java | /*
* DSQuery.java
*
* Version: $Revision$
*
* Date: $Date$
*
* Copyright (c) 2002, Hewlett-Packard Company and Massachusetts
* Institute of Technology. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condit... | Added hack to allow boolean searching. Basically, I transform 'AND' into '&&',
'OR' into '||' and 'NOT' into '!' brefore I make the query string lowercase.
git-svn-id: 39c64a9546defcc59b5f71fe8fe20b2d01c24c1f@564 9c30dcfa-912a-0410-8fc2-9e0234be79fd
| dspace/src/org/dspace/search/DSQuery.java | Added hack to allow boolean searching. Basically, I transform 'AND' into '&&', 'OR' into '||' and 'NOT' into '!' brefore I make the query string lowercase. | <ide><path>space/src/org/dspace/search/DSQuery.java
<ide>
<ide> import org.apache.log4j.Logger;
<ide>
<add>//Jakarta-ORO classes (regular expressions)
<add>import org.apache.oro.text.perl.Perl5Util;
<add>
<ide> // dspace classes
<ide> import org.dspace.content.Collection;
<ide> import org.dspace.content.Community;
<i... | |
JavaScript | bsd-3-clause | 339f12d1b02774aee1065f92376be797c1fc5ef0 | 0 | rlugojr/VivaGraphJS,rshipp/VivaGraphJS,hochshi/VivaGraphJS,aigeano/recommendation-visualizer,aigeano/recommendation-visualizer,dikshay/VivaGraphJS,dikshay/VivaGraphJS,rlugojr/VivaGraphJS,rshipp/VivaGraphJS,hochshi/VivaGraphJS | /**
* @author Andrei Kashcha (aka anvaka) / http://anvaka.blogspot.com
*/
/*global Viva, window*/
/*jslint sloppy: true, vars: true, plusplus: true, bitwise: true, nomen: true */
Viva.Graph.Utils = Viva.Graph.Utils || {};
// TODO: Add support for touch events: http://www.sitepen.com/blog/2008/07/10/touching-and-gest... | src/Input/dragndrop.js | /**
* @author Andrei Kashcha (aka anvaka) / http://anvaka.blogspot.com
*/
/*global Viva, window*/
/*jslint sloppy: true, vars: true, plusplus: true, bitwise: true, nomen: true */
Viva.Graph.Utils = Viva.Graph.Utils || {};
// TODO: Add support for touch events: http://www.sitepen.com/blog/2008/07/10/touching-and-gest... | Fixed drag'n'drop onStop argument | src/Input/dragndrop.js | Fixed drag'n'drop onStop argument | <ide><path>rc/Input/dragndrop.js
<ide> window.document.onselectstart = prevSelectStart;
<ide> dragObject.ondragstart = prevDragStart;
<ide> dragObject = null;
<del> if (end) { end(); }
<add> if (end) { end(e); }
<ide> },
<ide>
<ide> handleMouseW... | |
JavaScript | mit | f29594354ef88e1ec7856927c5a919844fd75c9e | 0 | alfl/plur | describe("The plurivalent logic test suite", function() {
var plur = require('../src/plur.js');
it("contains spec with an expectation", function() {
expect(true).toBe(true);
});
it("can validate the value True", function() {
var True = plur.True();
expect(True).not.toBe(undefined);
expect(Tru... | spec/plurSpec.js | describe("The plurivalent logic test suite", function() {
var plur = require('../src/plur.js');
it("contains spec with an expectation", function() {
expect(true).toBe(true);
});
it("can validate the value True", function() {
var True = plur.True();
expect(True).not.toBe(undefined);
expect(Tru... | Added test spec. TDD FTW.
| spec/plurSpec.js | Added test spec. TDD FTW. | <ide><path>pec/plurSpec.js
<ide> expect(Ineffable.not().value.size).toBe(1);
<ide> expect(Ineffable.not().value.has(NaN)).toBe(true);
<ide> });
<add>
<add> it("can validate IS operations", function() {
<add> var True = plur.True();
<add> var False = plur.False();
<add> var Paradox = plur.Paradox();
... | |
Java | agpl-3.0 | 01bb415be92703ef9ee2b07c9ae6cc780a3c5c8a | 0 | geomajas/geomajas-project-client-gwt2,geomajas/geomajas-project-client-gwt2,geomajas/geomajas-project-client-gwt,geomajas/geomajas-project-server,geomajas/geomajas-project-client-gwt,geomajas/geomajas-project-server,geomajas/geomajas-project-server,geomajas/geomajas-project-client-gwt | /*
* This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
*
* Copyright 2008-2013 Geosparc nv, http://www.geosparc.com/, Belgium.
*
* The program is available in open source according to the GNU Affero
* General Public License. All contributions in this program are covered
* by the Geomajas Contr... | plugin/geomajas-plugin-wmsclient/wmsclient/src/main/java/org/geomajas/plugin/wmsclient/client/layer/WmsLayerImpl.java | /*
* This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
*
* Copyright 2008-2013 Geosparc nv, http://www.geosparc.com/, Belgium.
*
* The program is available in open source according to the GNU Affero
* General Public License. All contributions in this program are covered
* by the Geomajas Contr... | Removed some double @Override annotations (because of {@inheritDoc} ?)
| plugin/geomajas-plugin-wmsclient/wmsclient/src/main/java/org/geomajas/plugin/wmsclient/client/layer/WmsLayerImpl.java | Removed some double @Override annotations (because of {@inheritDoc} ?) | <ide><path>lugin/geomajas-plugin-wmsclient/wmsclient/src/main/java/org/geomajas/plugin/wmsclient/client/layer/WmsLayerImpl.java
<ide> }
<ide>
<ide> @Override
<del> @Override
<ide> public List<RasterTile> getTiles(double scale, Bbox worldBounds) {
<ide> List<TileCode> codes = tileService.getTileCodesForBounds(getV... | |
JavaScript | apache-2.0 | 3c287e3c01da9371a3ff8da9c41a0ec7bdd05158 | 0 | tiobe/closure-compiler,monetate/closure-compiler,ChadKillingsworth/closure-compiler,ChadKillingsworth/closure-compiler,Yannic/closure-compiler,vobruba-martin/closure-compiler,vobruba-martin/closure-compiler,vobruba-martin/closure-compiler,ChadKillingsworth/closure-compiler,ChadKillingsworth/closure-compiler,google/clos... | /*
* Copyright 2011 The Closure Compiler 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 required by applicable... | contrib/externs/google_youtube_iframe.js | /*
* Copyright 2011 The Closure Compiler 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 required by applicable... | Adding the YouTube 360 video iframe API to google_youtube_iframe.js.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=200310123
| contrib/externs/google_youtube_iframe.js | Adding the YouTube 360 video iframe API to google_youtube_iframe.js. | <ide><path>ontrib/externs/google_youtube_iframe.js
<ide> * @nosideeffects
<ide> */
<ide> YT.Player.prototype.getAvailablePlaybackRates = function() {};
<add>
<add>
<add>/**
<add> * Gets the spherical video config object, with information about the viewport
<add> * headings and zoom level.
<add> *
<add> * @return {{ya... | |
Java | apache-2.0 | 60c6fed4d93d2346aecee5d072ef1ba41049985f | 0 | gioma68/mondrian-dsp | /*
*
* Custom Schema processor which helps to implement dynamic security roles
*
* This software is subject to the terms of the Eclipse Public License v1.0
* Agreement, available at the following URL: http://www.eclipse.org/legal/epl-v10.html.
* You must accept the terms of that agreement to use this software.
*
* @au... | src/com/mysample/mondrian/dsp/DynamicSchemaProcessor.java | /*
*
* Custom Schema processor which helps to implement dynamic security roles
*
* This software is subject to the terms of the Eclipse Public License v1.0
* Agreement, available at the following URL: http://www.eclipse.org/legal/epl-v10.html.
* You must accept the terms of that agreement to use this software.
*
* @au... | Update DynamicSchemaProcessor.java | src/com/mysample/mondrian/dsp/DynamicSchemaProcessor.java | Update DynamicSchemaProcessor.java | <ide><path>rc/com/mysample/mondrian/dsp/DynamicSchemaProcessor.java
<ide> import org.apache.log4j.Logger;
<ide> import java.io.InputStream;
<ide> import java.util.regex.PatternSyntaxException;
<del>/* used to log to console for first debug purpose */
<add>/* used to log to console for debugging purpose */
<ide> import... | |
Java | mit | 936aeb29ae695fd9178028114dc3d074347ba8de | 0 | srarcbrsent/tc,srarcbrsent/tc,srarcbrsent/tc,srarcbrsent/tc | package com.ysu.zyw.tc.components.cache.codis.ops;
import com.ysu.zyw.tc.components.cache.TcAbstractOpsForGroupedValue;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.sprin... | tc-components/src/main/java/com/ysu/zyw/tc/components/cache/codis/ops/TcCodisOpsForGroupedValue.java | package com.ysu.zyw.tc.components.cache.codis.ops;
import com.ysu.zyw.tc.components.cache.TcAbstractOpsForGroupedValue;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
i... | project optimize (58)
| tc-components/src/main/java/com/ysu/zyw/tc/components/cache/codis/ops/TcCodisOpsForGroupedValue.java | project optimize (58) | <ide><path>c-components/src/main/java/com/ysu/zyw/tc/components/cache/codis/ops/TcCodisOpsForGroupedValue.java
<ide>
<ide> import com.ysu.zyw.tc.components.cache.TcAbstractOpsForGroupedValue;
<ide> import lombok.extern.slf4j.Slf4j;
<add>import org.apache.commons.lang3.StringUtils;
<ide> import org.springframework.bean... | |
Java | agpl-3.0 | abdfa8a9b326312371f701fed69a8722f247b49b | 0 | DeanWay/phenotips,veronikaslc/phenotips,DeanWay/phenotips,teyden/phenotips,JKereliuk/phenotips,danielpgross/phenotips,itaiGershtansky/phenotips,teyden/phenotips,teyden/phenotips,mjshepherd/phenotips,mjshepherd/phenotips,phenotips/phenotips,phenotips/phenotips,JKereliuk/phenotips,phenotips/phenotips,tmarathe/phenotips,d... | /*
* 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... | components/patient-data/api/src/main/java/org/phenotips/data/internal/PhenoTipsPatient.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... | Issue #693: Export the version of HPO used when recording the patient data in the patient's JSON export
Bulletproofing, changed the name of ontology versions to include a "_version" suffix, improved error handling
| components/patient-data/api/src/main/java/org/phenotips/data/internal/PhenoTipsPatient.java | Issue #693: Export the version of HPO used when recording the patient data in the patient's JSON export Bulletproofing, changed the name of ontology versions to include a "_version" suffix, improved error handling | <ide><path>omponents/patient-data/api/src/main/java/org/phenotips/data/internal/PhenoTipsPatient.java
<ide> for (BaseObject versionObject : ontologyVersionObjects) {
<ide> String versionType = versionObject.getStringValue("name");
<ide> String versionString = versionObject.getStringValue... | |
JavaScript | bsd-3-clause | dfaa7238a6a86bbe90cfebb5d02e5f17e4605914 | 0 | openAgile/CommitStream.Web,JogoShugh/CommitStream.Web,JogoShugh/CommitStream.Web,openAgile/CommitStream.Web,openAgile/CommitStream.Web,JogoShugh/CommitStream.Web,openAgile/CommitStream.Web,JogoShugh/CommitStream.Web | (function(){
'use strict';
function CommitStreamAdminBoot(el) {
var persistentOptions = {
headers: { Bearer: '' }
};
var app = angular.module('commitStreamAdmin', ['commitStreamAdmin.config',
'angular-hal', 'ngRoute', 'ui.bootstrap','cgPrompt']);
app.config(['$sceProvider', '$sceDelega... | src/app/client/js/admin.js | (function(){
'use strict';
function CommitStreamAdminBoot(el) {
var persistentOptions = {
headers: { Bearer: '' }
};
var app = angular.module('commitStreamAdmin', ['commitStreamAdmin.config',
'angular-hal', 'ngRoute', 'ui.bootstrap','cgPrompt']);
app.config(['$sceProvider', '$sceDelega... | S-52318: ditto
| src/app/client/js/admin.js | S-52318: ditto | <ide><path>rc/app/client/js/admin.js
<ide> var app = angular.module('commitStreamAdmin', ['commitStreamAdmin.config',
<ide> 'angular-hal', 'ngRoute', 'ui.bootstrap','cgPrompt']);
<ide> app.config(['$sceProvider', '$sceDelegateProvider', function($sceProvider, $sceDelegateProvider) {
<del> $sceProvid... | |
Java | apache-2.0 | c8d04e5df3f52c567d9992a364115478d4489072 | 0 | isururanawaka/disruptor,epickrram/disruptor,AllenRay/disruptor,epickrram/disruptor,biddyweb/disruptor,isururanawaka/disruptor,Spikhalskiy/disruptor,isururanawaka/disruptor,hejunbinlan/disruptor,iacdingping/disruptor,fengshao0907/disruptor,LMAX-Exchange/disruptor,killbug2004/disruptor,azureplus/disruptor,eclipseek/disru... | /*
* Copyright 2011 LMAX 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in wri... | code/src/main/com/lmax/disruptor/ClaimStrategy.java | /*
* Copyright 2011 LMAX 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in wri... | Add padding to prevent false sharing on minProcessorSequence field. Unicast can now do 50m+ events per second :-)
| code/src/main/com/lmax/disruptor/ClaimStrategy.java | Add padding to prevent false sharing on minProcessorSequence field. Unicast can now do 50m+ events per second :-) | <ide><path>ode/src/main/com/lmax/disruptor/ClaimStrategy.java
<ide> private final int SEQ_INDEX = 7;
<ide> private final int bufferSize;
<ide> private final long[] sequence = new long[15]; // cache line padded
<del> private long minProcessorSequence = RingBuffer.INITIAL_CURSOR_VALUE;
<add... | |
Java | apache-2.0 | 16e922c64a88d25aba733ca3329f8cd118aa92fb | 0 | genedelisa/rockymusic | package com.rockhoppertech.music;
/*
* #%L
* Rocky Music Core
* %%
* Copyright (C) 1996 - 2013 Rockhopper Technologies
* %%
* 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
*
* ... | rockymusic-core/src/main/java/com/rockhoppertech/music/Pitch.java | package com.rockhoppertech.music;
/*
* #%L
* Rocky Music Core
* %%
* Copyright (C) 1996 - 2013 Rockhopper Technologies
* %%
* 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
*
* ... | spelling fix | rockymusic-core/src/main/java/com/rockhoppertech/music/Pitch.java | spelling fix | <ide><path>ockymusic-core/src/main/java/com/rockhoppertech/music/Pitch.java
<ide> // this.frequency = Pitch.midiFq(this.midiNumber);
<ide> frequency = PitchFactory.EQUAL_TEMPERAMENT.get(midiNumber);
<ide> this.preferredSpelling = PitchFormat.getInstance().format(n);
<add> logger.debug("sp... | |
JavaScript | mit | 150403fa800fd93ce22c8df28a3c1dd596bfcfe8 | 0 | tamiadev/grunt-tamia-sprite | /**
* Sprite generator for Tâmia
*
* @requires GraphicsMagick or Cairo
* @author Artem Sapegin (http://sapegin.me)
*/
/*jshint node:true */
module.exports = function(grunt) {
'use strict';
var fs = require('fs');
var path = require('path');
var spritesmith = require('spritesmith');
var _ = grunt.util._;
va... | tasks/sprite.js | /**
* Sprite generator for Tâmia
*
* @requires GraphicsMagick or Cairo
* @author Artem Sapegin (http://sapegin.me)
*/
/*jshint node:true */
module.exports = function(grunt) {
'use strict';
var fs = require('fs');
var path = require('path');
var spritesmith = require('spritesmith');
var _ = grunt.util._;
va... | Fingerprint.
| tasks/sprite.js | Fingerprint. | <ide><path>asks/sprite.js
<ide>
<ide> if (!options.skipStyl) {
<ide> // Generate Stylus variables
<add> var maxFingerprint = 0;
<ide> var lines = _.map(result.coordinates, function(coords, filename) {
<add> var fingerprint = fs.statSync(filename).mtime.getTime();
<add> if (fingerprint > maxFinger... | |
Java | bsd-2-clause | d7f0d6e914477e41d8c68484906a818b564f24a3 | 0 | alopatindev/smsnenado,alopatindev/smsnenado | package com.sbar.smsnenado;
import android.app.ActivityManager;
import android.content.ContentValues;
import android.content.Context;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.SharedPreferences;
import android.database.Cursor;
import android.net.Connectivit... | src/com/sbar/smsnenado/Common.java | package com.sbar.smsnenado;
import android.app.ActivityManager;
import android.content.ContentValues;
import android.content.Context;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.SharedPreferences;
import android.database.Cursor;
import android.net.Connectivit... | crash fix
| src/com/sbar/smsnenado/Common.java | crash fix | <ide><path>rc/com/sbar/smsnenado/Common.java
<ide> public static String getPhoneNumber(Context context) {
<ide> TelephonyManager tm = (TelephonyManager)
<ide> context.getSystemService(Context.TELEPHONY_SERVICE);
<del> return tm.getLine1Number();
<add> String result = tm.getLine1Num... | |
Java | mit | 92b0c5a4090ba24f313f5db0f766dd7799b33a43 | 0 | CS2103JAN2017-W14-B2/main,CS2103JAN2017-W14-B2/main | package seedu.taskboss.logic.parser;
import static seedu.taskboss.commons.core.Messages.MESSAGE_INVALID_COMMAND_FORMAT;
import static seedu.taskboss.logic.parser.CliSyntax.PREFIX_CATEGORY;
import static seedu.taskboss.logic.parser.CliSyntax.PREFIX_END_DATE;
import static seedu.taskboss.logic.parser.CliSyntax.PREFIX_IN... | src/main/java/seedu/taskboss/logic/parser/EditCommandParser.java | package seedu.taskboss.logic.parser;
import static seedu.taskboss.commons.core.Messages.MESSAGE_INVALID_COMMAND_FORMAT;
import static seedu.taskboss.logic.parser.CliSyntax.PREFIX_CATEGORY;
import static seedu.taskboss.logic.parser.CliSyntax.PREFIX_END_DATE;
import static seedu.taskboss.logic.parser.CliSyntax.PREFIX_IN... | Increase SLAP::EditCommandParser
| src/main/java/seedu/taskboss/logic/parser/EditCommandParser.java | Increase SLAP::EditCommandParser | <ide><path>rc/main/java/seedu/taskboss/logic/parser/EditCommandParser.java
<ide>
<ide> Optional<DateTime> startDateTimeOp = ParserUtil.
<ide> parseDateTime(argsTokenizer.getValue(PREFIX_START_DATE));
<del> // if user input is "edit INDEX sd/", remove the current startDateTime... | |
JavaScript | mit | 3761a449c1c713d4d6102ef5d10c3d9487c62195 | 0 | tjcsl/director,tjcsl/director,tjcsl/director,tjcsl/director | $(document).ready(function() {
$("#console").click(function() {
$("#input").focus();
});
$.ajaxSetup({
beforeSend: function(xhr, settings) {
xhr.setRequestHeader("X-CSRFToken", csrf_token);
}
});
var history = [];
var history_point = 0;
$(document).keydown... | web3/static/js/sql_console.js | $(document).ready(function() {
$("#console").click(function() {
$("#input").focus();
});
$.ajaxSetup({
beforeSend: function(xhr, settings) {
xhr.setRequestHeader("X-CSRFToken", csrf_token);
}
});
var history = [];
var history_point = 0;
$(document).keydown... | prevent flicker
| web3/static/js/sql_console.js | prevent flicker | <ide><path>eb3/static/js/sql_console.js
<ide> if (e.which == 13) {
<ide> var val = $(this).val();
<ide> if (val) {
<del> $(this).val("");
<ide> if (val == "exit" || val == "\\q" || val == ".q") {
<ide> window.location.href = back_endpoin... | |
Java | apache-2.0 | 6a774ee31c8ca7aeda23b8e24fda299aace5dc18 | 0 | maboelhassan/alluxio,maboelhassan/alluxio,wwjiang007/alluxio,bf8086/alluxio,maobaolong/alluxio,Reidddddd/mo-alluxio,jsimsa/alluxio,maobaolong/alluxio,apc999/alluxio,maobaolong/alluxio,EvilMcJerkface/alluxio,madanadit/alluxio,EvilMcJerkface/alluxio,maboelhassan/alluxio,jswudi/alluxio,Reidddddd/alluxio,jswudi/alluxio,wwj... | /*
* Licensed to the University of California, Berkeley 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 may no... | servers/src/main/java/tachyon/worker/block/TieredBlockStore.java | /*
* Licensed to the University of California, Berkeley 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 may no... | move BlockMetaEventListener hooks so they are triggered also by eviction
| servers/src/main/java/tachyon/worker/block/TieredBlockStore.java | move BlockMetaEventListener hooks so they are triggered also by eviction | <ide><path>ervers/src/main/java/tachyon/worker/block/TieredBlockStore.java
<ide>
<ide> @Override
<ide> public boolean commitBlock(long userId, long blockId) {
<del> TempBlockMeta tempBlock = mMetaManager.getTempBlockMeta(blockId).orNull();
<del> for (BlockMetaEventListener listener: mMetaEventListeners) {
<d... | |
Java | mit | ad1f139320fa475a4128d55bde24764da648a8e5 | 0 | conveyal/r5,conveyal/r5,conveyal/r5,conveyal/r5,conveyal/r5 | package org.opentripplanner.analyst.cluster;
import com.amazonaws.regions.Region;
import com.amazonaws.regions.Regions;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.AmazonS3Client;
import com.conveyal.geojson.GeoJsonModule;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterx... | src/main/java/org/opentripplanner/analyst/cluster/AnalystWorker.java | package org.opentripplanner.analyst.cluster;
import com.amazonaws.regions.Region;
import com.amazonaws.regions.Regions;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.AmazonS3Client;
import com.conveyal.geojson.GeoJsonModule;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterx... | prebuild stop tree cache as well as graph, fixes #2051.
Former-commit-id: e839021758dec795d132eaf2ec6a823fb4ea82f0
| src/main/java/org/opentripplanner/analyst/cluster/AnalystWorker.java | prebuild stop tree cache as well as graph, fixes #2051. | <ide><path>rc/main/java/org/opentripplanner/analyst/cluster/AnalystWorker.java
<ide> // build the graph, iff we know what graph to build
<ide> if (graphId != null) {
<ide> LOG.info("Prebuilding graph {}", graphId);
<del> clusterGraphBuilder.getGraph(graphId);
<add> Grap... | |
JavaScript | apache-2.0 | f3315fe5e4183a9db3edffe309113238effe5949 | 0 | mongoh/tuid | /* Copyright 2014 Rishi Sharma
*
* 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... | tuid.js | /* Copyright 2012 Mozilla 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 by applicable law or agreed... | Updated copyright.
| tuid.js | Updated copyright. | <ide><path>uid.js
<del>/* Copyright 2012 Mozilla Foundation
<add>/* Copyright 2014 Rishi Sharma
<ide> *
<ide> * Licensed under the Apache License, Version 2.0 (the "License");
<ide> * you may not use this file except in compliance with the License. | |
Java | apache-2.0 | f658fb0a6aececaab949eea9410faadd91d606e2 | 0 | TheAks999/libgdx,davebaol/libgdx,Deftwun/libgdx,ztv/libgdx,ryoenji/libgdx,katiepino/libgdx,jasonwee/libgdx,sarkanyi/libgdx,zhimaijoy/libgdx,bsmr-java/libgdx,czyzby/libgdx,alireza-hosseini/libgdx,antag99/libgdx,tommycli/libgdx,BlueRiverInteractive/libgdx,kotcrab/libgdx,josephknight/libgdx,fwolff/libgdx,Xhanim/libgdx,fir... | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* 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:... | backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/AndroidApplication.java | /*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* 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:... | Add logging for hideStatusBar exception | backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/AndroidApplication.java | Add logging for hideStatusBar exception | <ide><path>ackends/gdx-backend-android/src/com/badlogic/gdx/backends/android/AndroidApplication.java
<ide> m.invoke(rootView, 0x0);
<ide> m.invoke(rootView, 0x1);
<ide> } catch (Exception e) {
<add> log("AndroidApplication", "Can't hide status bar", e);
<ide> }
<ide> }
<ide> | |
Java | apache-2.0 | 2d33976948498d9d952e3d896e3cf0ebfb93859e | 0 | SynBioDex/SBOLDesigner,SynBioDex/SBOLDesigner | /*
* Copyright (c) 2012 - 2015, Clark & Parsia, LLC. <http://www.clarkparsia.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
*
... | src/main/java/edu/utah/ece/async/sboldesigner/sbol/editor/dialog/RegistryInputDialog.java | /*
* Copyright (c) 2012 - 2015, Clark & Parsia, LLC. <http://www.clarkparsia.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
*
... | Flipped AllCollections and root.
| src/main/java/edu/utah/ece/async/sboldesigner/sbol/editor/dialog/RegistryInputDialog.java | Flipped AllCollections and root. | <ide><path>rc/main/java/edu/utah/ece/async/sboldesigner/sbol/editor/dialog/RegistryInputDialog.java
<ide> updateCollection = false;
<ide> if (registryChanged) {
<ide> // display only "rootCollections"
<add> IdentifiedMetadata allCollections = new IdentifiedMetadata();
<add> allCollections.setName("All Collec... | |
Java | bsd-3-clause | 32a6d7f83744f75dc1765bcfd62151f16ae348f0 | 0 | lockss/lockss-daemon,lockss/lockss-daemon,edina/lockss-daemon,lockss/lockss-daemon,edina/lockss-daemon,lockss/lockss-daemon,edina/lockss-daemon,lockss/lockss-daemon,lockss/lockss-daemon,edina/lockss-daemon,edina/lockss-daemon,edina/lockss-daemon,edina/lockss-daemon,lockss/lockss-daemon | /*
* $Id: IpAccessControl.java,v 1.5 2003-07-14 06:45:07 tlipkis Exp $
*/
/*
Copyright (c) 2000-2003 Board of Trustees of Leland Stanford Jr. University,
all rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Softw... | src/org/lockss/servlet/IpAccessControl.java | /*
* $Id: IpAccessControl.java,v 1.4 2003-06-26 23:53:31 eaalto Exp $
*/
/*
Copyright (c) 2000-2003 Board of Trustees of Leland Stanford Jr. University,
all rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Softwa... | Use ConfigManager instance for writing config file.
git-svn-id: 293778eaa97c8c94097d610b1bd5133a8f478f36@1697 4f837ed2-42f5-46e7-a7a5-fa17313484d4
| src/org/lockss/servlet/IpAccessControl.java | Use ConfigManager instance for writing config file. | <ide><path>rc/org/lockss/servlet/IpAccessControl.java
<ide> /*
<del> * $Id: IpAccessControl.java,v 1.4 2003-06-26 23:53:31 eaalto Exp $
<add> * $Id: IpAccessControl.java,v 1.5 2003-07-14 06:45:07 tlipkis Exp $
<ide> */
<ide>
<ide> /*
<ide>
<ide> static Logger log = Logger.getLogger("IpAcc");
<ide>
<del>// publi... | |
Java | epl-1.0 | b1b77a7bc79b061ee1116b29b3a8d4e123343d23 | 0 | Charling-Huang/birt,rrimmana/birt-1,rrimmana/birt-1,rrimmana/birt-1,sguan-actuate/birt,Charling-Huang/birt,Charling-Huang/birt,sguan-actuate/birt,sguan-actuate/birt,Charling-Huang/birt,sguan-actuate/birt,Charling-Huang/birt,rrimmana/birt-1,sguan-actuate/birt,rrimmana/birt-1 | /*******************************************************************************
* Copyright (c) 2004 Actuate Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is availabl... | UI/org.eclipse.birt.report.designer.ui.views/src/org/eclipse/birt/report/designer/internal/ui/views/RenameListener.java | /*******************************************************************************
* Copyright (c) 2004 Actuate Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is availabl... | - Summary: fix Bugzilla Bug 172817
NPE is thrown when press F2 in outline
- Bugzilla Bug (s) Resolved:172817
- Description:
Resolved NPE is thrown when press F2 on item which is not a ReportItem.
- Tests Description :
Manual test
- Files Edited:
- Files Added:
- Files Deleted:
- Notes to Build Team:
- Notes... | UI/org.eclipse.birt.report.designer.ui.views/src/org/eclipse/birt/report/designer/internal/ui/views/RenameListener.java | - Summary: fix Bugzilla Bug 172817 NPE is thrown when press F2 in outline | <ide><path>I/org.eclipse.birt.report.designer.ui.views/src/org/eclipse/birt/report/designer/internal/ui/views/RenameListener.java
<ide>
<ide> public class RenameListener extends KeyAdapter implements
<ide> MouseListener,
<del> SelectionListener, IDoubleClickListener
<add> SelectionListener,
<add> IDoubleClickList... | |
Java | mpl-2.0 | 2739adae9c167d02a4e8839a0a6fe3ae9fe63d0b | 0 | msteinhoff/hello-world | 846b5a6b-cb8e-11e5-beec-00264a111016 | src/main/java/HelloWorld.java | 845fa382-cb8e-11e5-af6f-00264a111016 | updated some files | src/main/java/HelloWorld.java | updated some files | <ide><path>rc/main/java/HelloWorld.java
<del>845fa382-cb8e-11e5-af6f-00264a111016
<add>846b5a6b-cb8e-11e5-beec-00264a111016 | |
JavaScript | mit | 1a3820f810c75c089b744c0b0d0253a6a78376a2 | 0 | jaden/HotPocket,jaden/HotPocket | 'use strict';
var browserify = require('browserify');
var gulp = require('gulp');
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
var uglify = require('gulp-uglify');
var sourcemaps = require('gulp-sourcemaps');
var gutil = require('gulp-util');
var minify_css ... | gulpfile.js | 'use strict';
// TODO Run jshint on build
var browserify = require('browserify');
var gulp = require('gulp');
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
var uglify = require('gulp-uglify');
var sourcemaps = require('gulp-sourcemaps');
var gutil = require('gulp-util');
gulp.tas... | Add cache busting for CSS and JS files
Clean up old files, generate new files with the timestamp suffix and
update the index.php file with the new timestamp path.
| gulpfile.js | Add cache busting for CSS and JS files | <ide><path>ulpfile.js
<ide> 'use strict';
<ide>
<del>// TODO Run jshint on build
<add>var browserify = require('browserify');
<add>var gulp = require('gulp');
<add>var source = require('vinyl-source-stream');
<add>var buffer = require('vinyl-buffer');
<add>var uglify = require('gulp-uglify');
<add>va... | |
Java | mit | 410e430a1e7b8d32c62d21ecb55f4530a761fae7 | 0 | gabelew/SimCity201 | package city.animationPanels;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.Tim... | src/city/animationPanels/ApartmentAnimationPanel.java | package city.animationPanels;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.Tim... | Updated Apartment GUI, added grill to animation
| src/city/animationPanels/ApartmentAnimationPanel.java | Updated Apartment GUI, added grill to animation | <ide><path>rc/city/animationPanels/ApartmentAnimationPanel.java
<ide> private SimCityGui simCityGui;
<ide>
<ide> private static BufferedImage kitchen = null;
<add> private static BufferedImage grill = null;
<ide> private static BufferedImage fridge = null;
<ide> private static BufferedImage table = null;
<ide> p... | |
Java | lgpl-2.1 | 3eb361b456b67f0b5ccdb7bdaccc964fda68a5ae | 0 | levants/lightmare | package org.lightmare.jpa;
import java.io.IOException;
import java.net.URL;
import java.util.Collection;
import java.util.Enumeration;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import javax.naming.Context;
import javax.naming... | src/main/java/org/lightmare/jpa/JPAManager.java | package org.lightmare.jpa;
import java.io.IOException;
import java.net.URL;
import java.util.Collection;
import java.util.Enumeration;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import javax.naming.Context;
import javax.naming... | organized imports in JPAManager class | src/main/java/org/lightmare/jpa/JPAManager.java | organized imports in JPAManager class | <ide><path>rc/main/java/org/lightmare/jpa/JPAManager.java
<ide> import javax.naming.NamingException;
<ide> import javax.persistence.EntityManagerFactory;
<ide> import javax.persistence.Persistence;
<del>import javax.persistence.PersistenceException;
<ide>
<ide> import org.apache.log4j.Logger;
<ide> import org.lightmar... | |
Java | mit | 0b652e73728997263ad1e56b5b97a01803e7876f | 0 | chuangxian/lib-edge | package myzd.domain;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* Created by Chen Baichuan on 18/07/2017.
*/
@AllArgsConstructor
@NoArgsConstructor
@Data
public class HttpRequestDomain {
private String requestId;
private String remoteAddr;
private String reques... | src/main/java/myzd/domain/HttpRequestDomain.java | package myzd.domain;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* Created by Chen Baichuan on 18/07/2017.
*/
@AllArgsConstructor
@NoArgsConstructor
@Data
public class HttpRequestDomain {
private String requestId;
private String remoteAddr;
private String reques... | 修改httpRequestDomain的get,set方法
| src/main/java/myzd/domain/HttpRequestDomain.java | 修改httpRequestDomain的get,set方法 | <ide><path>rc/main/java/myzd/domain/HttpRequestDomain.java
<ide> private long timestamp;
<ide> private String sessionId;
<ide>
<del> public String getRequestId() {
<del> return requestId;
<del> }
<del>
<del> public void setRequestId(String requestId) {
<del> this.requestId = requestId;
<del> }
<del>
<del... | |
Java | apache-2.0 | 3d30b7371fe99e3432d300a843f366fc32fae704 | 0 | jpechane/debezium,debezium/debezium,debezium/debezium,jpechane/debezium,debezium/debezium,debezium/debezium,jpechane/debezium,jpechane/debezium | /*
* Copyright Debezium Authors.
*
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/
package io.debezium.connector.oracle;
import java.time.Clock;
import java.time.Duration;
import java.time.Instant;
import java.time.OffsetDateTime;
import java.uti... | debezium-connector-oracle/src/main/java/io/debezium/connector/oracle/OracleStreamingChangeEventSourceMetrics.java | /*
* Copyright Debezium Authors.
*
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/
package io.debezium.connector.oracle;
import java.time.Clock;
import java.time.Duration;
import java.time.Instant;
import java.time.OffsetDateTime;
import java.uti... | DBZ-3664 Wording fix | debezium-connector-oracle/src/main/java/io/debezium/connector/oracle/OracleStreamingChangeEventSourceMetrics.java | DBZ-3664 Wording fix | <ide><path>ebezium-connector-oracle/src/main/java/io/debezium/connector/oracle/OracleStreamingChangeEventSourceMetrics.java
<ide>
<ide> if (currentBatchSize == batchSizeMax) {
<ide> if (!lobEnabled) {
<del> LOGGER.info("LogMiner is now using the maximum batch size {}. This could be i... | |
Java | mit | 0c17cac11ca3078a9c930f82537ec1dd60596d5e | 0 | tdd-pingis/tdd-pingpong,tdd-pingis/tdd-pingpong,Heliozoa/tdd-pingpong,Heliozoa/tdd-pingpong,tdd-pingis/tdd-pingpong,tdd-pingis/tdd-pingpong,Heliozoa/tdd-pingpong,Heliozoa/tdd-pingpong | package pingis.controllers;
import static org.hamcrest.CoreMatchers.containsString;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyLong;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.times;
import static... | src/test/java/pingis/controllers/TaskControllerTest.java | package pingis.controllers;
import static org.hamcrest.CoreMatchers.containsString;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyLong;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.times;
import static... | Fixed tests for unchecked operations and added a new test
| src/test/java/pingis/controllers/TaskControllerTest.java | Fixed tests for unchecked operations and added a new test | <ide><path>rc/test/java/pingis/controllers/TaskControllerTest.java
<ide> import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
<ide> import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.view;
<ide>
<del>import java.util.Iterator;
<add>import java.util.ArrayL... | |
Java | apache-2.0 | 8bf5c23c97487e35ac2f1a5e8c88dc6a539a2d37 | 0 | bozimmerman/CoffeeMud,bozimmerman/CoffeeMud,bozimmerman/CoffeeMud,bozimmerman/CoffeeMud | package com.planet_ink.coffee_mud.Abilities.Skills;
import com.planet_ink.coffee_mud.core.interfaces.*;
import com.planet_ink.coffee_mud.core.*;
import com.planet_ink.coffee_mud.core.collections.*;
import com.planet_ink.coffee_mud.Abilities.interfaces.*;
import com.planet_ink.coffee_mud.Areas.interfaces.*;
import... | com/planet_ink/coffee_mud/Abilities/Skills/Skill_TailSwipe.java | package com.planet_ink.coffee_mud.Abilities.Skills;
import com.planet_ink.coffee_mud.core.interfaces.*;
import com.planet_ink.coffee_mud.core.*;
import com.planet_ink.coffee_mud.core.collections.*;
import com.planet_ink.coffee_mud.Abilities.interfaces.*;
import com.planet_ink.coffee_mud.Areas.interfaces.*;
import... | typo in tail swipe target
git-svn-id: 0cdf8356e41b2d8ccbb41bb76c82068fe80b2514@16337 0d6f1817-ed0e-0410-87c9-987e46238f29
| com/planet_ink/coffee_mud/Abilities/Skills/Skill_TailSwipe.java | typo in tail swipe target | <ide><path>om/planet_ink/coffee_mud/Abilities/Skills/Skill_TailSwipe.java
<ide> &&(proficiencyCheck(mob,tripChance,auto)))
<ide> {
<ide> if(maliciousAffect(mob,target,asLevel,2,CMMsg.MSK_MALICIOUS_MOVE|CMMsg.TYP_JUSTICE|(auto?CMMsg.MASK_ALWAYS:0)) != null)
<del> R.show(mob,target,CMMsg.MSG_OK_ACTION,L... | |
Java | apache-2.0 | 75094c0fac9886eeb5a9bfc127f867f761ed7ef4 | 0 | motlin/gs-collections,xingguang2013/gs-collections,goldmansachs/gs-collections,Pelumi/gs-collections,gabby2212/gs-collections,mix-juice001/gs-collections | /*
* Copyright 2014 Goldman Sachs.
*
* 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 ... | unit-tests/src/test/java/com/gs/collections/impl/utility/IterateTest.java | /*
* Copyright 2014 Goldman Sachs.
*
* 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 ... | [GSCOLLECT-1360] Replace anonymous inner classes with lambdas and method references in IterateTest and generated code.
git-svn-id: c173b60cd131fd691c78c4467fb70aa9fb29b506@597 d5c9223b-1aff-41ac-aadd-f810b4a99ac4
| unit-tests/src/test/java/com/gs/collections/impl/utility/IterateTest.java | [GSCOLLECT-1360] Replace anonymous inner classes with lambdas and method references in IterateTest and generated code. | <ide><path>nit-tests/src/test/java/com/gs/collections/impl/utility/IterateTest.java
<ide> this.iterables = Lists.mutable.of();
<ide> this.iterables.add(Interval.oneTo(5).toList());
<ide> this.iterables.add(Interval.oneTo(5).toSet());
<add> this.iterables.add(Interval.oneTo(5).toBag());
<a... | |
Java | lgpl-2.1 | fcf4e768b865ef6e5b646dc902f471f443e97b5c | 0 | tadamski/wildfly,tomazzupan/wildfly,wildfly/wildfly,iweiss/wildfly,pferraro/wildfly,jstourac/wildfly,rhusar/wildfly,tomazzupan/wildfly,tadamski/wildfly,jstourac/wildfly,wildfly/wildfly,wildfly/wildfly,jstourac/wildfly,golovnin/wildfly,golovnin/wildfly,xasx/wildfly,wildfly/wildfly,rhusar/wildfly,rhusar/wildfly,jstourac/... | /*
* JBoss, Home of Professional Open Source.
* Copyright 2011, 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... | domain-http-api/src/main/java/org/jboss/as/domain/http/server/DomainApiHandler.java | /*
* JBoss, Home of Professional Open Source.
* Copyright 2011, 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... | [AS7-1966] Add ?operation=snapshots support to HTTP interface to allow snapshots to be listed.
| domain-http-api/src/main/java/org/jboss/as/domain/http/server/DomainApiHandler.java | [AS7-1966] Add ?operation=snapshots support to HTTP interface to allow snapshots to be listed. | <ide><path>omain-http-api/src/main/java/org/jboss/as/domain/http/server/DomainApiHandler.java
<ide> * Represents all possible management operations that can be executed using HTTP GET
<ide> */
<ide> enum GetOperation {
<del> RESOURCE("read-resource"), ATTRIBUTE("read-attribute"), RESOURCE_DESCRIPTI... | |
Java | mit | 2d9270eaa0043702e9648497285e56bbfbfadf9e | 0 | Spiddekauga/android-utils | package com.spiddekauga.android.util;
import java.util.ArrayList;
import java.util.List;
/**
* Base class for object events. Used for add, edit, and remove actions.
*/
public abstract class ObjectEvent<ObjectType> {
private final Actions mAction;
private final List<ObjectType> mObjects = new ArrayList<>();
protect... | app-utils/src/main/java/com/spiddekauga/android/util/ObjectEvent.java | package com.spiddekauga.android.util;
/**
* Base class for object events. Used for add, edit, and remove actions.
*/
public abstract class ObjectEvent {
private final Actions mAction;
protected ObjectEvent(Actions action) {
mAction = action;
}
/**
* Get the action to take on the object event
* @return the actio... | Add ability to store items in the Object
| app-utils/src/main/java/com/spiddekauga/android/util/ObjectEvent.java | Add ability to store items in the Object | <ide><path>pp-utils/src/main/java/com/spiddekauga/android/util/ObjectEvent.java
<ide> package com.spiddekauga.android.util;
<add>
<add>import java.util.ArrayList;
<add>import java.util.List;
<ide>
<ide> /**
<ide> * Base class for object events. Used for add, edit, and remove actions.
<ide> */
<del>public abstract cl... | |
Java | agpl-3.0 | 66015b80450f153efd3d66e6a1d36f440c0e3dcc | 0 | Silverpeas/Silverpeas-Core,mmoqui/Silverpeas-Core,ebonnet/Silverpeas-Core,SilverTeamWork/Silverpeas-Core,SilverDav/Silverpeas-Core,mmoqui/Silverpeas-Core,ebonnet/Silverpeas-Core,ebonnet/Silverpeas-Core,SilverDav/Silverpeas-Core,SilverDav/Silverpeas-Core,SilverTeamWork/Silverpeas-Core,SilverYoCha/Silverpeas-Core,aurorea... | /**
* Copyright (C) 2000 - 2013 Silverpeas
*
* This program is free software: you can redistribute it and/or modify it under the terms of the
* GNU Affero General Public License as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* As a specia... | lib-core/src/test-awaiting/java/com/silverpeas/form/displayers/JdbcFieldDisplayerTest.java | /**
* Copyright (C) 2000 - 2013 Silverpeas
*
* This program is free software: you can redistribute it and/or modify it under the terms of the
* GNU Affero General Public License as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* As a specia... | Fix the failure of the test JdbcFieldDisplayerTest#testDisplayScripts
| lib-core/src/test-awaiting/java/com/silverpeas/form/displayers/JdbcFieldDisplayerTest.java | Fix the failure of the test JdbcFieldDisplayerTest#testDisplayScripts | <ide><path>ib-core/src/test-awaiting/java/com/silverpeas/form/displayers/JdbcFieldDisplayerTest.java
<ide> instance.displayScripts(printer, template, pagesContext);
<ide> assertThat(new String(out.toByteArray(), Charsets.UTF_8).trim(), is(
<ide> "if (isWhitespace(stripInitialWhitespace(field.value))) {"... | |
Java | mit | 0bc7ff11e59c0244e6e805872ced024fe271d220 | 0 | dozd/XChange,npomfret/XChange,andre77/XChange,Panchen/XChange,gaborkolozsy/XChange,ww3456/XChange,LeonidShamis/XChange,stachon/XChange,douggie/XChange,jheusser/XChange,stevenuray/XChange,evdubs/XChange,anwfr/XChange,chrisrico/XChange,nopy/XChange,timmolter/XChange,TSavo/XChange | package org.knowm.xchange.dto.meta;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
im... | xchange-core/src/main/java/org/knowm/xchange/dto/meta/RateLimit.java | package org.knowm.xchange.dto.meta;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
im... | Add missing deserializer (was present on property, missing on constructor parameter). For some reason, this broke the Poloniex impl when using Jackson 2.8.2.
| xchange-core/src/main/java/org/knowm/xchange/dto/meta/RateLimit.java | Add missing deserializer (was present on property, missing on constructor parameter). For some reason, this broke the Poloniex impl when using Jackson 2.8.2. | <ide><path>change-core/src/main/java/org/knowm/xchange/dto/meta/RateLimit.java
<ide> * @param timeSpan
<ide> * @param timeUnit
<ide> */
<del> public RateLimit(@JsonProperty("calls") int calls, @JsonProperty("time_span") int timeSpan, @JsonProperty("time_unit") TimeUnit timeUnit) {
<add> public RateLimit(
<ad... | |
Java | apache-2.0 | error: pathspec 'chapter_002/src/test/java/ru/job4j/iterator/MatrixIteratorTest.java' did not match any file(s) known to git
| d6961e45163584839aec68dabd9ff364f5588ef8 | 1 | ogneyar79/Sirotkin_M | package ru.job4j.iterator;
import org.junit.Before;
import org.junit.Test;
import java.util.NoSuchElementException;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
public class MatrixIteratorTest {
private ConcreteArray itSecond;
IIterator el;
@Before
p... | chapter_002/src/test/java/ru/job4j/iterator/MatrixIteratorTest.java | MatrixIteratorTestCan'tDoException
| chapter_002/src/test/java/ru/job4j/iterator/MatrixIteratorTest.java | MatrixIteratorTestCan'tDoException | <ide><path>hapter_002/src/test/java/ru/job4j/iterator/MatrixIteratorTest.java
<add>package ru.job4j.iterator;
<add>
<add>import org.junit.Before;
<add>import org.junit.Test;
<add>
<add>import java.util.NoSuchElementException;
<add>
<add>import static org.hamcrest.MatcherAssert.assertThat;
<add>import static org.hamcres... | |
Java | apache-2.0 | ac78f1e105928d73c2dfe0b120e35e8c45e0d3ff | 0 | opencb/cellbase,dapregi/cellbase,opencb/cellbase,dapregi/cellbase,dapregi/cellbase,dapregi/cellbase,opencb/cellbase,opencb/cellbase,opencb/cellbase,dapregi/cellbase,dapregi/cellbase,opencb/cellbase,dapregi/cellbase,opencb/cellbase | /*
* Copyright 2015 OpenCB
*
* 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 wr... | cellbase-core/src/main/java/org/opencb/cellbase/core/variant/annotation/VariantAnnotationCalculator.java | /*
* Copyright 2015 OpenCB
*
* 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 wr... | feature/vacache: bug fixed at VariantAnnotationCalculator
| cellbase-core/src/main/java/org/opencb/cellbase/core/variant/annotation/VariantAnnotationCalculator.java | feature/vacache: bug fixed at VariantAnnotationCalculator | <ide><path>ellbase-core/src/main/java/org/opencb/cellbase/core/variant/annotation/VariantAnnotationCalculator.java
<ide> } else if (variationQueryResultList.get(i).getResult().get(0).getAnnotation() != null
<ide> && variationQueryResultList.get(i).getResult().get(0).getAnnotation().g... | |
Java | mit | 16209c65450239100031889a45c63cc91bec7cd5 | 0 | Doist/JobSchedulerCompat | package com.doist.jobschedulercompat.scheduler.alarm;
import com.doist.jobschedulercompat.JobParameters;
import com.doist.jobschedulercompat.JobScheduler;
import com.doist.jobschedulercompat.JobService;
import com.doist.jobschedulercompat.job.JobStatus;
import com.doist.jobschedulercompat.util.DeviceUtils;
import com.... | library/src/main/java/com/doist/jobschedulercompat/scheduler/alarm/AlarmJobService.java | package com.doist.jobschedulercompat.scheduler.alarm;
import com.doist.jobschedulercompat.JobParameters;
import com.doist.jobschedulercompat.JobScheduler;
import com.doist.jobschedulercompat.JobService;
import com.doist.jobschedulercompat.job.JobStatus;
import com.doist.jobschedulercompat.util.DeviceUtils;
import com.... | Fix AlarmJobService not specifying the component to run
| library/src/main/java/com/doist/jobschedulercompat/scheduler/alarm/AlarmJobService.java | Fix AlarmJobService not specifying the component to run | <ide><path>ibrary/src/main/java/com/doist/jobschedulercompat/scheduler/alarm/AlarmJobService.java
<ide> JobParameters params = new JobParameters(jobId, jobStatus.getExtras(), jobStatus.isDeadlineSatisfied());
<ide> Connection connection = new Connection(jobId, startId, params);
<ide> Intent jobI... | |
Java | apache-2.0 | a1e4c7f6eb9a045d6ea70c5bb37512d22ec6d545 | 0 | mlhartme/stool,mlhartme/stool,mlhartme/stool,mlhartme/stool,mlhartme/stool | /*
* Copyright 1&1 Internet AG, https://github.com/1and1/
*
* 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 ap... | main/src/main/java/net/oneandone/stool/cli/Start.java | /*
* Copyright 1&1 Internet AG, https://github.com/1and1/
*
* 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 ap... | no longer needed
| main/src/main/java/net/oneandone/stool/cli/Start.java | no longer needed | <ide><path>ain/src/main/java/net/oneandone/stool/cli/Start.java
<ide> @Override
<ide> public void doFinish(Reference reference) throws Exception {
<ide> server.awaitStartup(reference);
<del>
<del> Thread.sleep(2000);
<ide> console.info.println("Applications available:");
<ide> for... | |
JavaScript | mit | e13d068fb1df4efbb9c5a0bdc49fd585ec62c05e | 0 | toshok/echojs,toshok/echojs,toshok/echojs,toshok/echojs,toshok/echojs,toshok/echojs,toshok/echojs,toshok/echojs | /* -*- Mode: js2; tab-width: 4; indent-tabs-mode: nil; -*-
* vim: set ts=4 sw=4 et tw=99 ft=js:
*/
import * as llvm from '@llvm';
import * as path from '@node-compat/path'
import { Stack } from './stack-es6';
import { TreeVisitor } from './node-visitor';
import { generate as escodegen... | lib/compiler.js | /* -*- Mode: js2; tab-width: 4; indent-tabs-mode: nil; -*-
* vim: set ts=4 sw=4 et tw=99 ft=js:
*/
import * as llvm from '@llvm';
import * as path from '@node-compat/path'
import { Stack } from './stack-es6';
import { TreeVisitor } from './node-visitor';
import { generate as escodegen... | use this.createRet, not ir.createRet. the former goes through our ABI layer and does the right thing in the face of an ejsval return for 32 bit platforms
| lib/compiler.js | use this.createRet, not ir.createRet. the former goes through our ABI layer and does the right thing in the face of an ejsval return for 32 bit platforms | <ide><path>ib/compiler.js
<ide> ir.createBr(this.toplevel_body_bb);
<ide>
<ide> ir.setInsertPoint(initialized_bb);
<del> return ir.createRet(this.loadUndefinedEjsValue());
<add> return this.createRet(this.loadUndefinedEjsValue());
<ide> }
<ide>
<ide> // result should be the landi... | |
Java | apache-2.0 | 49c80c572142c280113a7afbfdeb3213813c55ca | 0 | bsmith83/rice-1,kuali/kc-rice,ewestfal/rice,kuali/kc-rice,sonamuthu/rice-1,jwillia/kc-rice1,bsmith83/rice-1,gathreya/rice-kc,jwillia/kc-rice1,shahess/rice,shahess/rice,bhutchinson/rice,geothomasp/kualico-rice-kc,UniversityOfHawaiiORS/rice,cniesen/rice,rojlarge/rice-kc,ewestfal/rice,smith750/rice,kuali/kc-rice,bsmith83/... | /**
* Copyright 2005-2014 The Kuali Foundation
*
* Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
*
* Unless required by a... | rice-middleware/it/kew/src/test/java/org/kuali/rice/kew/doctype/DocumentTypeTest.java | /**
* Copyright 2005-2014 The Kuali Foundation
*
* Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
*
* Unless required by a... | KULRICE-12853. Additional logging for investigation.
| rice-middleware/it/kew/src/test/java/org/kuali/rice/kew/doctype/DocumentTypeTest.java | KULRICE-12853. Additional logging for investigation. | <ide><path>ice-middleware/it/kew/src/test/java/org/kuali/rice/kew/doctype/DocumentTypeTest.java
<ide> import org.kuali.rice.kew.api.KewApiServiceLocator;
<ide> import org.kuali.rice.kew.api.WorkflowDocument;
<ide> import org.kuali.rice.kew.api.WorkflowDocumentFactory;
<add>import org.kuali.rice.kew.api.action.ActionTak... | |
Java | apache-2.0 | a5b3e75633ad129bfc42c55664fbc484bb484b33 | 0 | Sage-Bionetworks/SynapseWebClient,jay-hodgson/SynapseWebClient,jay-hodgson/SynapseWebClient,Sage-Bionetworks/SynapseWebClient,jay-hodgson/SynapseWebClient,Sage-Bionetworks/SynapseWebClient,Sage-Bionetworks/SynapseWebClient,jay-hodgson/SynapseWebClient | package org.sagebionetworks.web.client.widget.entity;
import java.util.List;
import org.gwtbootstrap3.client.ui.Anchor;
import org.gwtbootstrap3.client.ui.Button;
import org.gwtbootstrap3.client.ui.FormGroup;
import org.gwtbootstrap3.client.ui.Heading;
import org.gwtbootstrap3.client.ui.InlineCheckBox;
import org.gwt... | src/main/java/org/sagebionetworks/web/client/widget/entity/EvaluationSubmitterViewImpl.java | package org.sagebionetworks.web.client.widget.entity;
import java.util.List;
import org.gwtbootstrap3.client.ui.Anchor;
import org.gwtbootstrap3.client.ui.Button;
import org.gwtbootstrap3.client.ui.FormGroup;
import org.gwtbootstrap3.client.ui.Heading;
import org.gwtbootstrap3.client.ui.InlineCheckBox;
import org.gwt... | show register team modal
| src/main/java/org/sagebionetworks/web/client/widget/entity/EvaluationSubmitterViewImpl.java | show register team modal | <ide><path>rc/main/java/org/sagebionetworks/web/client/widget/entity/EvaluationSubmitterViewImpl.java
<ide> presenter.teamAdded();
<ide> }
<ide> });
<add> registerTeamDialog.showModal();
<ide> }
<ide>
<ide> @Override | |
Java | mit | 56e4f774606b99542d71db458e2739e3214621b3 | 0 | bitcoin-solutions/multibit-hd,akonring/multibit-hd-modified,oscarguindzberg/multibit-hd,akonring/multibit-hd-modified,akonring/multibit-hd-modified,oscarguindzberg/multibit-hd,bitcoin-solutions/multibit-hd,bitcoin-solutions/multibit-hd,oscarguindzberg/multibit-hd | package org.multibit.hd.ui.views.wizards.use_trezor;
import com.google.common.base.Optional;
import com.google.common.util.concurrent.FutureCallback;
import com.google.common.util.concurrent.Futures;
import com.google.common.util.concurrent.ListenableFuture;
import org.multibit.hd.core.exceptions.ExceptionHandler;
imp... | mbhd-swing/src/main/java/org/multibit/hd/ui/views/wizards/use_trezor/UseTrezorWizardModel.java | package org.multibit.hd.ui.views.wizards.use_trezor;
import com.google.common.base.Optional;
import com.google.common.util.concurrent.FutureCallback;
import com.google.common.util.concurrent.Futures;
import com.google.common.util.concurrent.ListenableFuture;
import org.multibit.hd.core.exceptions.ExceptionHandler;
imp... | SwingUtilities#invokeLater rework
| mbhd-swing/src/main/java/org/multibit/hd/ui/views/wizards/use_trezor/UseTrezorWizardModel.java | SwingUtilities#invokeLater rework | <ide><path>bhd-swing/src/main/java/org/multibit/hd/ui/views/wizards/use_trezor/UseTrezorWizardModel.java
<ide> import org.slf4j.LoggerFactory;
<ide>
<ide> import javax.annotation.Nullable;
<add>import javax.swing.*;
<ide> import java.util.concurrent.Callable;
<ide>
<ide> /**
<ide> public void onSuccess(@Nulla... | |
Java | mit | ca8c3b06de41cb2d918ab97b2d064b78fdb6bac6 | 0 | MinecraftDevin/Rustic_1.7.10_Public | package com.bigbaddevil7.rustic;
import cpw.mods.fml.common.Mod;
/**
* Created by bigbaddevil7 on 9/27/2014.
*/
@Mod(modid="Rustic", name = "Rustic", version = "1.7.2-0.0.1") //Tells Forge that this is a mod
public class Rustic {
@Mod.EventHandler
public void preInit(){
//TODO
}
}
| src/main/java/com/bigbaddevil7/rustic/Rustic.java | package com.bigbaddevil7.rustic;
import cpw.mods.fml.common.Mod;
/**
* Created by bigbaddevil7 on 9/27/2014.
*/
@Mod(modid="Rustic", name = "Rustic", version = "1.7.2-0.0.1") //Tells Forge that this is a mod
public class Rustic {
}
| added preInit
| src/main/java/com/bigbaddevil7/rustic/Rustic.java | added preInit | <ide><path>rc/main/java/com/bigbaddevil7/rustic/Rustic.java
<ide>
<ide> @Mod(modid="Rustic", name = "Rustic", version = "1.7.2-0.0.1") //Tells Forge that this is a mod
<ide> public class Rustic {
<del>
<add> @Mod.EventHandler
<add> public void preInit(){
<add> //TODO
<add> }
<ide> } | |
Java | apache-2.0 | a80efc959d4835b3d47035c434be8d1e92804221 | 0 | rcordovano/autopsy,esaunders/autopsy,esaunders/autopsy,wschaeferB/autopsy,millmanorama/autopsy,esaunders/autopsy,rcordovano/autopsy,esaunders/autopsy,rcordovano/autopsy,wschaeferB/autopsy,wschaeferB/autopsy,wschaeferB/autopsy,millmanorama/autopsy,millmanorama/autopsy,esaunders/autopsy,wschaeferB/autopsy,rcordovano/auto... | /*
* Autopsy Forensic Browser
*
* Copyright 2018 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> 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://ww... | Core/src/org/sleuthkit/autopsy/commonfilesearch/InterCaseSearchResultsProcessor.java | /*
* Autopsy Forensic Browser
*
* Copyright 2018 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> 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://ww... | fix spacing issue in query after switching to string builder.
| Core/src/org/sleuthkit/autopsy/commonfilesearch/InterCaseSearchResultsProcessor.java | fix spacing issue in query after switching to string builder. | <ide><path>ore/src/org/sleuthkit/autopsy/commonfilesearch/InterCaseSearchResultsProcessor.java
<ide> StringBuilder sqlString = new StringBuilder(6);
<ide> sqlString.append("value IN (SELECT value FROM ")
<ide> .append(tableName)
<del> .append("WHERE value IN (SELECT value ... | |
Java | apache-2.0 | 16cdca614389c539629de211cadd6eba8f04ae71 | 0 | kurtharriger/spring-osgi | /*
* Copyright 2002-2006 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 re... | spring-osgi-test-support/org.springframework.osgi.test/src/main/java/org/springframework/osgi/test/AbstractOsgiTests.java | /*
* Copyright 2002-2006 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 re... | renamed AbstractOsgiTests.getBundlesLocations -> getBundleLocations
| spring-osgi-test-support/org.springframework.osgi.test/src/main/java/org/springframework/osgi/test/AbstractOsgiTests.java | renamed AbstractOsgiTests.getBundlesLocations -> getBundleLocations | <ide><path>pring-osgi-test-support/org.springframework.osgi.test/src/main/java/org/springframework/osgi/test/AbstractOsgiTests.java
<ide> *
<ide> * @return the array of bundles to install
<ide> */
<del> protected String[] getBundlesLocations() {
<add> protected String[] getBundleLocations() {
<ide> return new S... | |
Java | apache-2.0 | 64bc69ef4c547771f44f6b6b103cda7be2f0922b | 0 | AltitudeDigital/metrics,kevintvh/metrics,rexren/metrics,tempredirect/metrics,wfxiang08/metrics,mtakaki/metrics,randomstatistic/metrics,ind9/metrics,jplock/metrics,bentatham/metrics,mt0803/metrics,ChetnaChaudhari/metrics,jasw/metrics,mspiegel/metrics,chenxianghua2014/metrics,signalfx/metrics | package com.codahale.metrics;
import io.dropwizard.metrics.MetricName;
import java.util.Collections;
import java.util.Map;
import java.util.SortedMap;
import java.util.SortedSet;
import java.util.TreeMap;
import java.util.TreeSet;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Deprecated
public class Met... | metrics-adaptor/src/main/java/com/codahale/metrics/MetricRegistry.java | package com.codahale.metrics;
import io.dropwizard.metrics.MetricName;
import java.util.Collections;
import java.util.Map;
import java.util.SortedMap;
import java.util.SortedSet;
import java.util.TreeMap;
import java.util.TreeSet;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Deprecated
public class Met... | Fix issue with getTimers()
| metrics-adaptor/src/main/java/com/codahale/metrics/MetricRegistry.java | Fix issue with getTimers() | <ide><path>etrics-adaptor/src/main/java/com/codahale/metrics/MetricRegistry.java
<ide> }
<ide>
<ide> public SortedMap<String, Histogram> getHistograms(MetricFilter filter) {
<del> return adaptMetrics(Histogram.class, reg.getCounters(transformFilter(filter)));
<add> return adaptMetrics(Histogram.class, reg.getHisto... | |
JavaScript | mit | d975a97858c294f1d1cb65139e9c6f906778249a | 0 | blmgeo/eco-model,blmgeo/eco-model | 'use strict'
//non steady state box models
const NonSteadyState = {
state(props) {
if (!props) return this
else return Object.assign(Object.create(this), props)
},
update(props) {
if (props) {
for (let key in props) {
if (this.hasOwnProperty(key)) {
this[key] = props[key]
... | src/NonSteadyState.js | 'use strict'
//non steady state box models
const NonSteadyState = {
state(props) {
if (!props) return this
else return Object.assign(Object.create(this), props)
},
update(props) {
if (props) {
for (let key in props) {
if (this.hasOwnProperty(key)) {
this[key] = props[key]
... | added deltaFlow
| src/NonSteadyState.js | added deltaFlow | <ide><path>rc/NonSteadyState.js
<ide> },
<ide> flowAt(time) {
<ide> let currentFlow = this.flow
<del> for (let i = 1; i <= time; i++) {
<del> currentFlow += this.flow
<del> }
<add> currentFlow += (this.deltaFlow * time)
<ide> return currentFlow
<ide> },
<ide> stockAt(time) {
<ide> let ... | |
Java | agpl-3.0 | c50268a42a86ad84de482f0cfee252a8a973adf0 | 0 | victims/victims-lib-java | package com.redhat.victims;
/*
* #%L
* This file is part of victims-lib.
* %%
* Copyright (C) 2013 The Victims Project
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either... | src/main/java/com/redhat/victims/VictimsConfig.java | package com.redhat.victims;
/*
* #%L
* This file is part of victims-lib.
* %%
* Copyright (C) 2013 The Victims Project
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either... | Restructured VictimsConfig
| src/main/java/com/redhat/victims/VictimsConfig.java | Restructured VictimsConfig | <ide><path>rc/main/java/com/redhat/victims/VictimsConfig.java
<ide> *
<ide> */
<ide> public class VictimsConfig {
<del> private static final Charset DEFAULT_ENCODING = Charset.forName("UTF-8");
<del>
<del> public static final String URI_KEY = "victims.service.uri";
<del> public static final String ENTRY_KEY = "victi... | |
Java | apache-2.0 | 6c4166d7931f75fe6dbfad57790bee6395bf6b94 | 0 | floviolleau/vector-android,noepitome/neon-android,riot-spanish/riot-android,vector-im/vector-android,vt0r/vector-android,noepitome/neon-android,vector-im/riot-android,vector-im/vector-android,vector-im/riot-android,noepitome/neon-android,vector-im/riot-android,riot-spanish/riot-android,vector-im/riot-android,vector-im/... | /*
* Copyright 2016 OpenMarket 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | vector/src/main/java/im/vector/fragments/VectorRoomSettingsFragment.java | /*
* Copyright 2016 OpenMarket 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | Updates after PRs
| vector/src/main/java/im/vector/fragments/VectorRoomSettingsFragment.java | Updates after PRs | <ide><path>ector/src/main/java/im/vector/fragments/VectorRoomSettingsFragment.java
<ide> //================================================================================
<ide>
<ide> /**
<del> * Refresh the addresses section
<add> * Refresh the banned users list.
<ide> */
<ide> private void r... | |
Java | apache-2.0 | 3b100589e11270ec09da266a843fc4cad652327a | 0 | velmuruganvelayutham/certifier,velmuruganvelayutham/certifier,velmuruganvelayutham/git-real,velmuruganvelayutham/certifier,velmuruganvelayutham/git-real,velmuruganvelayutham/git-real,velmuruganvelayutham/certifier | package com.velmurugan.certifier.model;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;... | src/main/java/com/velmurugan/certifier/model/COption.java | package com.velmurugan.certifier.model;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;... | added getters/setters for iscorrect
| src/main/java/com/velmurugan/certifier/model/COption.java | added getters/setters for iscorrect | <ide><path>rc/main/java/com/velmurugan/certifier/model/COption.java
<ide> this.choices = choices;
<ide> }
<ide>
<add> public boolean isCorrect() {
<add> return isCorrect;
<add> }
<add>
<add> public void setCorrect(boolean isCorrect) {
<add> this.isCorrect = isCorrect;
<add> }
<add>
<ide> public int getNo() {
<id... | |
Java | bsd-3-clause | c4a6acb658cd2e410286a9555ff79a17348bf657 | 0 | jimmutable/core,jimmutable/core | package org.jimmutable.cloud.elasticsearch;
import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
//import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.ut... | cloud/src/main/java/org/jimmutable/cloud/elasticsearch/ElasticSearch.java | package org.jimmutable.cloud.elasticsearch;
import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util... | Same changes to is index properly configured | cloud/src/main/java/org/jimmutable/cloud/elasticsearch/ElasticSearch.java | Same changes to is index properly configured | <ide><path>loud/src/main/java/org/jimmutable/cloud/elasticsearch/ElasticSearch.java
<ide> import java.io.IOException;
<ide> import java.util.ArrayList;
<ide> import java.util.Arrays;
<del>import java.util.HashMap;
<add>//import java.util.HashMap;
<ide> import java.util.LinkedList;
<ide> import java.util.List;
<ide> imp... | |
Java | epl-1.0 | 6b033ad0d2a447cab6183c7c7b42a606f48647e7 | 0 | rohitmohan96/ceylon-ide-eclipse,rohitmohan96/ceylon-ide-eclipse | package com.redhat.ceylon.eclipse.code.quickfix;
/*******************************************************************************
* Copyright (c) 2005, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public Licen... | plugins/com.redhat.ceylon.eclipse.ui/src/com/redhat/ceylon/eclipse/code/quickfix/EnterAliasLinkedMode.java | package com.redhat.ceylon.eclipse.code.quickfix;
/*******************************************************************************
* Copyright (c) 2005, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public Licen... | display count of occurrences of alias | plugins/com.redhat.ceylon.eclipse.ui/src/com/redhat/ceylon/eclipse/code/quickfix/EnterAliasLinkedMode.java | display count of occurrences of alias | <ide><path>lugins/com.redhat.ceylon.eclipse.ui/src/com/redhat/ceylon/eclipse/code/quickfix/EnterAliasLinkedMode.java
<ide>
<ide> @Override
<ide> public String getHintTemplate() {
<del> return "Enter alias for '" + dec.getName() + "' {0}";
<add> return "Enter alias for " + linkedPositionGroup.getPositions().length ... | |
JavaScript | apache-2.0 | e057b0a6fdfbe4ef0523f463f12fff3a63782831 | 0 | OpusCapitaBES/js-node-showroom-server | 'use strict';
let markdownToAst = require('markdown-to-ast');
let fill = require('lodash/fill');
function getSectionIndexRange(ast, headerName) {
let targetHeaderIndex = ast.children.reduce((result, branch, index) => {
if (result === null && branch.type === 'Header' && branch.children[0].value === headerName) {... | src/tools/npm-scanner/parseDocumentation.js | 'use strict';
let markdownToAst = require('markdown-to-ast');
let fill = require('lodash/fill');
function getSectionIndexRange(ast, headerName) {
let targetHeaderIndex = ast.children.reduce((result, branch, index) => {
if (result === null && branch.type === 'Header' && branch.children[0].value === headerName) {... | Fix markdown documentation files parsing
| src/tools/npm-scanner/parseDocumentation.js | Fix markdown documentation files parsing | <ide><path>rc/tools/npm-scanner/parseDocumentation.js
<ide> return result;
<ide> }, null);
<ide>
<del> let countOfSections = nextHeaderIndex - targetHeaderIndex;
<add> let countOfSections = nextHeaderIndex === null ? 1 : nextHeaderIndex - targetHeaderIndex;
<ide> if (countOfSections > 0) {
<ide> retu... | |
Java | apache-2.0 | 0d13de0cf350cd6f5bef985303fe41fd8d769731 | 0 | speddy93/nifi,apsaltis/nifi,Xsixteen/nifi,jskora/nifi,jtstorck/nifi,YolandaMDavis/nifi,ijokarumawak/nifi,tijoparacka/nifi,pvillard31/nifi,Xsixteen/nifi,patricker/nifi,alopresto/nifi,zhengsg/nifi,MikeThomsen/nifi,m-hogue/nifi,aperepel/nifi,Xsixteen/nifi,patricker/nifi,qfdk/nifi,patricker/nifi,MikeThomsen/nifi,PuspenduBa... | /*
* 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 may ... | nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-content-viewer/src/main/java/org/apache/nifi/web/ContentViewerController.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 may ... | NIFI-1539: - Comparing octet stream content type by using starts with and ignores case.
| nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-content-viewer/src/main/java/org/apache/nifi/web/ContentViewerController.java | NIFI-1539: - Comparing octet stream content type by using starts with and ignores case. | <ide><path>ifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-content-viewer/src/main/java/org/apache/nifi/web/ContentViewerController.java
<ide>
<ide> // when standalone and we don't know the type is null as we were able to directly access the content bypassing the rest endpoint,
<ide>... | |
JavaScript | mit | d51e3e404645827c42db009b53a077f8b1fbeb6e | 0 | phetsims/scenery-phet,phetsims/scenery-phet,phetsims/scenery-phet | // Copyright 2014-2017, University of Colorado Boulder
/**
* A rectangle with pseudo-3D shading.
*
* @author Jonathan Olson <jonathan.olson@colorado.edu>
*/
define( function( require ) {
'use strict';
// modules
var Color = require( 'SCENERY/util/Color' );
var inherit = require( 'PHET_CORE/inherit' );
v... | js/ShadedRectangle.js | // Copyright 2014-2017, University of Colorado Boulder
/**
* A rectangle with pseudo-3D shading.
*
* @author Jonathan Olson <jonathan.olson@colorado.edu>
*/
define( function( require ) {
'use strict';
// modules
var Color = require( 'SCENERY/util/Color' );
var inherit = require( 'PHET_CORE/inherit' );
v... | Color property support for ShadedRectangle, see https://github.com/phetsims/sun/issues/362
| js/ShadedRectangle.js | Color property support for ShadedRectangle, see https://github.com/phetsims/sun/issues/362 | <ide><path>s/ShadedRectangle.js
<ide> var inherit = require( 'PHET_CORE/inherit' );
<ide> var LinearGradient = require( 'SCENERY/util/LinearGradient' );
<ide> var Node = require( 'SCENERY/nodes/Node' );
<add> var PaintColorProperty = require( 'SCENERY/util/PaintColorProperty' );
<ide> var Path = require( 'SCEN... | |
Java | epl-1.0 | f878283bf2283b1ce1578109a127df797ee0a550 | 0 | ESSICS/cs-studio,ControlSystemStudio/cs-studio,ControlSystemStudio/cs-studio,ControlSystemStudio/cs-studio,css-iter/cs-studio,css-iter/cs-studio,ESSICS/cs-studio,ESSICS/cs-studio,ESSICS/cs-studio,ControlSystemStudio/cs-studio,ESSICS/cs-studio,css-iter/cs-studio,css-iter/cs-studio,ESSICS/cs-studio,css-iter/cs-studio,ESS... | /*******************************************************************************
* Copyright (c) 2010 Oak Ridge National Laboratory.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and i... | applications/plugins/org.csstudio.trends.databrowser2/src/org/csstudio/trends/databrowser2/model/PlotSample.java | /*******************************************************************************
* Copyright (c) 2010 Oak Ridge National Laboratory.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and i... | o.c.trends.databrowser2: getY[Plus|Minus]Error() returns always 0 when the waveform index is not 0
| applications/plugins/org.csstudio.trends.databrowser2/src/org/csstudio/trends/databrowser2/model/PlotSample.java | o.c.trends.databrowser2: getY[Plus|Minus]Error() returns always 0 when the waveform index is not 0 | <ide><path>pplications/plugins/org.csstudio.trends.databrowser2/src/org/csstudio/trends/databrowser2/model/PlotSample.java
<ide> if (!(value instanceof IMinMaxDoubleValue))
<ide> return 0;
<ide>
<del> /*
<del> * TODO: think of what to be changed.
<del> * What is the m... | |
Java | mit | 8c6d29ef196bbd92079c358a8e2bf5554ce3b0ef | 0 | skgadi/Programming,skgadi/Programming,skgadi/Programming,skgadi/Programming,skgadi/Programming,skgadi/Programming | package com.skgadi.progtransit000;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.hardware.usb.UsbDeviceConnection;
import android.hardware.usb.UsbManager;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.Environment;
import andro... | Android/ProgTransit000/app/src/main/java/com/skgadi/progtransit000/MainActivity.java | package com.skgadi.progtransit000;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.hardware.usb.UsbDeviceConnection;
import android.hardware.usb.UsbManager;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.Environment;
import andro... | Automatic push
| Android/ProgTransit000/app/src/main/java/com/skgadi/progtransit000/MainActivity.java | Automatic push | <ide><path>ndroid/ProgTransit000/app/src/main/java/com/skgadi/progtransit000/MainActivity.java
<ide> byte RecBuffer[] = new byte[4];
<ide> int MAddress = 0x310000;
<ide> byte Data = 0x00;
<del> int EE_Settings[]={0x7A, 0xFE, 1, 4, 1, 10, 20, 0xF6, 0xFF, 60, 40, 4, 8, 192, ... | |
JavaScript | mit | 4b707dc943849f9262a7138c5f65ef80a165dcce | 0 | zalmoxisus/redux-devtools-extension,zalmoxisus/redux-devtools-extension | import React from 'react';
import { createDevTools } from 'redux-devtools';
import LogMonitor from 'redux-devtools-log-monitor-filterable';
export default createDevTools(<LogMonitor />);
| src/app/containers/DevTools.js | import React from 'react';
import { createDevTools } from 'redux-devtools';
import LogMonitor from 'redux-devtools-log-monitor-filtrable';
export default createDevTools(<LogMonitor />);
| Fix a dependency
| src/app/containers/DevTools.js | Fix a dependency | <ide><path>rc/app/containers/DevTools.js
<ide> import React from 'react';
<ide> import { createDevTools } from 'redux-devtools';
<del>import LogMonitor from 'redux-devtools-log-monitor-filtrable';
<add>import LogMonitor from 'redux-devtools-log-monitor-filterable';
<ide>
<ide> export default createDevTools(<LogMonitor... | |
Java | apache-2.0 | 27c49dbc929000ac33f71293149f5ac16f99a713 | 0 | TheNightForum/Path-to-Mani,BurntGameProductions/Path-to-Mani,BurntGameProductions/Path-to-Mani,TheNightForum/Path-to-Mani,BurntGameProductions/Path-to-Mani,TheNightForum/Path-to-Mani | /*
* Copyright 2016 BurntGameProductions
*
* 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 ... | main/src/com/pathtomani/entities/maze/MazeBuilder.java | /*
* Copyright 2016 BurntGameProductions
*
* 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 ... | Moving files to Managers.
| main/src/com/pathtomani/entities/maze/MazeBuilder.java | Moving files to Managers. | <ide><path>ain/src/com/pathtomani/entities/maze/MazeBuilder.java
<ide> import com.pathtomani.game.Faction;
<ide> import com.pathtomani.game.ManiGame;
<ide> import com.pathtomani.game.ShipConfig;
<del>import com.pathtomani.game.input.AiPilot;
<del>import com.pathtomani.game.input.Pilot;
<del>import com.pathtomani.game.i... | |
JavaScript | mit | 0ecca6ae9897d46f3d068a85acbab102c24aaaeb | 0 | zuzak/dbot,zuzak/dbot | var fs = require('fs');
var timers = require('./timer');
var jsbot = require('./jsbot');
require('./snippets');
var DBot = function(timers) {
// Load external files
this.config = JSON.parse(fs.readFileSync('config.json', 'utf-8'));
this.db = null;
var rawDB;
try {
var rawDB = fs.readFileSyn... | run.js | var fs = require('fs');
var timers = require('./timer');
var jsbot = require('./jsbot');
require('./snippets');
var DBot = function(timers) {
// Load external files
this.config = JSON.parse(fs.readFileSync('config.json', 'utf-8'));
this.db = null;
var rawDB;
try {
var rawDB = fs.readFileSyn... | change module loading so there's only one loop through the moduels
| run.js | change module loading so there's only one loop through the moduels | <ide><path>un.js
<ide> }
<ide> if(!this.db.hasOwnProperty("locks")) {
<ide> this.db.locks = [];
<add> }
<add> if(!this.db.hasOwnProperty("ignores")) {
<add> this.db.locks = {};
<ide> }
<ide>
<ide> // Load the strings file
<ide> this.rawModules = [];
<ide> this.modules =... | |
Java | apache-2.0 | fd45da1adcfc0ea215a82ad6355bef98bcd4f039 | 0 | inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service | package org.slc.sli.ingestion.transformation;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.mongodb.core.query.Criteria;
import org.springframework.data.mongodb.core.query.Query;
import org.slc... | sli/ingestion/ingestion-core/src/main/java/org/slc/sli/ingestion/transformation/AbstractTransformationStrategy.java | package org.slc.sli.ingestion.transformation;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.mongodb.core.query.Criteria;
import org.springframework.data.mongodb.core.query.Query;
import org.slc... | clean up
| sli/ingestion/ingestion-core/src/main/java/org/slc/sli/ingestion/transformation/AbstractTransformationStrategy.java | clean up | <ide><path>li/ingestion/ingestion-core/src/main/java/org/slc/sli/ingestion/transformation/AbstractTransformationStrategy.java
<ide> Query query = new Query();
<ide>
<ide> Iterable<NeutralRecord> data;
<del> int max = 0;
<del> int skip = 0;
<ide>
<ide> if (getWorkNote() != null) {... | |
Java | apache-2.0 | bab8e5da0e7efbe054991586e2375287fc4dd281 | 0 | Haufe-Lexware/gocd-plugins,Haufe-Lexware/gocd-plugins,Haufe-Lexware/gocd-plugins | package com.tw.go.task.fetchanyartifact;
import com.thoughtworks.go.plugin.api.task.JobConsoleLogger;
import com.thoughtworks.go.plugin.api.logging.Logger;
import com.tw.go.plugin.common.*;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.... | fetch-any-artifact-plugin/src/com/tw/go/task/fetchanyartifact/FetchAnyArtifactTaskExecutor.java | package com.tw.go.task.fetchanyartifact;
import com.thoughtworks.go.plugin.api.task.JobConsoleLogger;
import com.thoughtworks.go.plugin.api.logging.Logger;
import com.tw.go.plugin.common.*;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.... | Temporary fix. Latest version of go.cd removed trailing / from URL
| fetch-any-artifact-plugin/src/com/tw/go/task/fetchanyartifact/FetchAnyArtifactTaskExecutor.java | Temporary fix. Latest version of go.cd removed trailing / from URL | <ide><path>etch-any-artifact-plugin/src/com/tw/go/task/fetchanyartifact/FetchAnyArtifactTaskExecutor.java
<ide> + ENVVAR_NAME_GO_BUILD_USER_PASSWORD + "'");
<ide> }
<ide>
<del> GoApiClient apiClient = new GoApiClient(
<del> configVars.getValue(ENVVAR_NAME_GO_SERVER_URL... | |
Java | apache-2.0 | 49c69fae57f6ec9c6784d49476171408eba3d4f2 | 0 | realityforge/arez,realityforge/arez,realityforge/arez | package org.realityforge.arez;
import java.lang.reflect.Field;
import java.util.Objects;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import org.realityforge.braincheck.BrainCheckTestUtil;
import org.realityforge.guiceyloops.shared.ValueUtil;
import org.testng.Assert;
import org.testng.annotation... | core/src/test/java/org/realityforge/arez/AbstractArezTest.java | package org.realityforge.arez;
import java.lang.reflect.Field;
import java.util.Objects;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import org.realityforge.braincheck.BrainCheckTestUtil;
import org.realityforge.guiceyloops.shared.ValueUtil;
import org.testng.Assert;
import org.testng.annotation... | Whitespace
| core/src/test/java/org/realityforge/arez/AbstractArezTest.java | Whitespace | <ide><path>ore/src/test/java/org/realityforge/arez/AbstractArezTest.java
<ide> final Observer newReadWriteObserver( @Nonnull final ArezContext context )
<ide> {
<ide> return new Observer( context,
<del> ValueUtil.randomString(), null,
<add> ValueUtil.randomString(... | |
Java | apache-2.0 | ec79ac51cc2efec85aa30ff84a7349ad1cb07b44 | 0 | NimbleGen/bioinformatics | package com.roche.bioinformatics.common.verification.runs;
import java.awt.Color;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
... | bioinformatics_common/src/main/java/com/roche/bioinformatics/common/verification/runs/TestPlan.java | package com.roche.bioinformatics.common.verification.runs;
import java.awt.Color;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
... | fixing issue with startFolder parameter
| bioinformatics_common/src/main/java/com/roche/bioinformatics/common/verification/runs/TestPlan.java | fixing issue with startFolder parameter | <ide><path>ioinformatics_common/src/main/java/com/roche/bioinformatics/common/verification/runs/TestPlan.java
<ide> }
<ide> });
<ide>
<del> boolean startingFolderExists = false;
<del> runLoop: for (TestPlanRun run : sortedRuns) {
<del> String runFolderName = run.getRunDirectory().getName();
<del> startingFo... | |
Java | apache-2.0 | 90fa9639021e64c39d99b71f78bee69ad7a86316 | 0 | mapcode-foundation/mapcode-rest-service,mapcode-foundation/mapcode-rest-service,mapcode-foundation/mapcode-rest-service | /*
* Copyright (C) 2016 Stichting Mapcode Foundation (http://www.mapcode.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
*
* Un... | src/test/java/com/mapcode/services/ApiResourcesTest.java | /*
* Copyright (C) 2016 Stichting Mapcode Foundation (http://www.mapcode.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
*
* Un... | Removed large logging
| src/test/java/com/mapcode/services/ApiResourcesTest.java | Removed large logging | <ide><path>rc/test/java/com/mapcode/services/ApiResourcesTest.java
<ide> Assert.assertNotNull(response);
<ide> Assert.assertEquals(200, response.getStatus());
<ide> final String r = response.readEntity(String.class);
<del> LOG.info("response={} chars, body=\n{}", r.length(), r);
<ide> ... | |
JavaScript | mit | eae4d478866da062a836e785d24d075c1245baf7 | 0 | JeffreyWay/laravel-mix | let path = require('path');
let Mix = require('./Mix');
/**
* We'll fetch some Webpack config plugins here for cleanliness.
*/
module.exports.plugins = {
WebpackNotifierPlugin: require('webpack-notifier'),
WebpackOnBuildPlugin: require('on-build-webpack'),
ExtractTextPlugin: require('extract-text-webpack... | src/index.js | let path = require('path');
let Mix = require('./Mix');
/**
* We'll fetch some Webpack config plugins here for cleanliness.
*/
module.exports.plugins = {
WebpackNotifierPlugin: require('webpack-notifier'),
WebpackOnBuildPlugin: require('on-build-webpack'),
ExtractTextPlugin: require('extract-text-webpack... | We can only allow one mix.sass() or mix.less() request right now
| src/index.js | We can only allow one mix.sass() or mix.less() request right now | <ide><path>rc/index.js
<ide> * @param {string} output
<ide> */
<ide> module.exports.preprocess = (type, src, output) => {
<add> if (Mix[type]) {
<add> throw new Error(
<add> `Laravel Mix Error: It looks like you've called "mix.${type}()" multiple times.
<add> Please limit your usage... | |
JavaScript | mit | 59e9e4d5987d2403443ae73253111ff76b38d807 | 0 | FormidableLabs/measure-text,FormidableLabs/measure-text | /* eslint-env browser */
// import memoize from "lodash.memoize";
import isFinite from "lodash.isFinite";
const globalCanvas = document.createElement("canvas");
const isNumericOnly = (string) => /^[0-9.,]+$/.test(string);
const parseUnitless = (value) => {
if (isFinite(value)) {
return value;
}
if (isNumer... | src/index.js | /* eslint-env browser */
// import memoize from "lodash.memoize";
import isFinite from "lodash.isFinite";
const isNumericOnly = (string) => /^[0-9.,]+$/.test(string);
const parseUnitless = (value) => {
if (isFinite(value)) {
return value;
}
if (isNumericOnly(value)) {
return parseFloat(value);
}
re... | Use a global canvas if none is provided
| src/index.js | Use a global canvas if none is provided | <ide><path>rc/index.js
<ide> /* eslint-env browser */
<ide> // import memoize from "lodash.memoize";
<ide> import isFinite from "lodash.isFinite";
<add>
<add>const globalCanvas = document.createElement("canvas");
<ide>
<ide> const isNumericOnly = (string) => /^[0-9.,]+$/.test(string);
<ide> | |
JavaScript | apache-2.0 | 52ba0789b045f9fd145f1fceeda6bd467f029439 | 0 | dreemproject/dreemgl,teem2/dreemgl,dreemproject/dreemgl,teem2/dreemgl,teem2/dreemgl,dreemproject/dreemgl,dreemproject/dreemgl,dreemproject/dreemgl,teem2/dreemgl,teem2/dreemgl | define.class('$server/composition', function vectormap(require, $server$, fileio,$ui$, numberbox, button, menubar, label, screen, view, foldcontainer, speakergrid,checkbox, icon, $widgets$, colorpicker, jsviewer, radiogroup){
define.class(this, "mainscreen", function($ui$, view){
define.class(this, "tiledmap"... | apps/VectorMap/index.js | define.class('$server/composition', function vectormap(require, $server$, fileio,$ui$, numberbox, button, menubar, label, screen, view, foldcontainer, speakergrid,checkbox, icon, $widgets$, colorpicker, jsviewer, radiogroup){
define.class(this, "mainscreen", function($ui$, view){
define.class(this, "tiledmap"... | Moving stuff around in maprender - rpc crash on remote
| apps/VectorMap/index.js | Moving stuff around in maprender - rpc crash on remote | <ide><path>pps/VectorMap/index.js
<ide>
<ide> define.class(this, "tiledmap", function($ui$, view){
<ide>
<add> var earcut = require('$system/lib/earcut-port.js')().earcut;
<add>
<add> function arctotriangles(arc){
<add> if (!arc) return [];
<add> var verts = [];
<add> var flatverts = [];
<add> var A0 =... | |
Java | agpl-3.0 | c16c76e4c886173f864cb6a9780107ff4f471363 | 0 | wbaumann/SmartReceiptsLibrary,JuliaSoboleva/SmartReceiptsLibrary,JuliaSoboleva/SmartReceiptsLibrary,wbaumann/SmartReceiptsLibrary,JuliaSoboleva/SmartReceiptsLibrary,wbaumann/SmartReceiptsLibrary | package co.smartreceipts.android.receipts;
import android.Manifest;
import android.app.Activity;
import android.content.ContentResolver;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.annota... | app/src/main/java/co/smartreceipts/android/receipts/ReceiptsListFragment.java | package co.smartreceipts.android.receipts;
import android.Manifest;
import android.app.Activity;
import android.content.ContentResolver;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.annota... | Fixed a potential NPE when importing a URI
| app/src/main/java/co/smartreceipts/android/receipts/ReceiptsListFragment.java | Fixed a potential NPE when importing a URI | <ide><path>pp/src/main/java/co/smartreceipts/android/receipts/ReceiptsListFragment.java
<ide> onCreateCompositeDisposable.add(activityFileResultLocator.getUriStream()
<ide> .observeOn(AndroidSchedulers.mainThread())
<ide> .flatMapSingle(response -> {
<del> if (... | |
Java | apache-2.0 | c4313d5f1d3b169a265b006065f95d70a3b00765 | 0 | alien4cloud/alien4cloud-cloudify3-provider,alien4cloud/alien4cloud-cloudify3-provider,alien4cloud/alien4cloud-cloudify3-provider | package alien4cloud.paas.cloudify3.service;
import java.util.List;
import java.util.Map;
import org.alien4cloud.tosca.model.definitions.AbstractPropertyValue;
import org.alien4cloud.tosca.model.definitions.ConcatPropertyValue;
import org.alien4cloud.tosca.model.definitions.FunctionPropertyValue;
import org.alien4clou... | alien4cloud-cloudify3-provider/src/main/java/alien4cloud/paas/cloudify3/service/PropertyEvaluatorService.java | package alien4cloud.paas.cloudify3.service;
import java.util.List;
import java.util.Map;
import org.alien4cloud.tosca.model.definitions.AbstractPropertyValue;
import org.alien4cloud.tosca.model.definitions.ConcatPropertyValue;
import org.alien4cloud.tosca.model.definitions.FunctionPropertyValue;
import org.alien4clou... | Fix regression in property evaluation : when an input targets a property that is null, we may have a scalar(null) instead of null
| alien4cloud-cloudify3-provider/src/main/java/alien4cloud/paas/cloudify3/service/PropertyEvaluatorService.java | Fix regression in property evaluation : when an input targets a property that is null, we may have a scalar(null) instead of null | <ide><path>lien4cloud-cloudify3-provider/src/main/java/alien4cloud/paas/cloudify3/service/PropertyEvaluatorService.java
<ide> return new ScalarPropertyValue(reqTargetValue);
<ide> } else {
<ide> AbstractPropertyValue processedValue = FunctionEvaluator.processGetPropertyFuncti... | |
Java | bsd-3-clause | a39f42d084bf5cae907db46fb63d5629d48adf9b | 0 | geneontology/minerva,geneontology/minerva,geneontology/minerva | package org.geneontology.minerva.server;
import java.io.IOException;
import java.util.List;
import java.util.Map.Entry;
import javax.ws.rs.core.MultivaluedMap;
import org.apache.commons.io.IOUtils;
import org.apache.log4j.Logger;
import org.apache.tools.ant.filters.StringInputStream;
import org.glassfish.jersey.serv... | minerva-server/src/main/java/org/geneontology/minerva/server/LoggingApplicationEventListener.java | package org.geneontology.minerva.server;
import org.apache.log4j.Logger;
import org.glassfish.jersey.server.monitoring.ApplicationEvent;
import org.glassfish.jersey.server.monitoring.ApplicationEventListener;
import org.glassfish.jersey.server.monitoring.RequestEvent;
import org.glassfish.jersey.server.monitoring.Requ... | Verbose logging of requests (for debugging)
* related to issue geneontology/noctua#151
| minerva-server/src/main/java/org/geneontology/minerva/server/LoggingApplicationEventListener.java | Verbose logging of requests (for debugging) | <ide><path>inerva-server/src/main/java/org/geneontology/minerva/server/LoggingApplicationEventListener.java
<ide> package org.geneontology.minerva.server;
<ide>
<add>import java.io.IOException;
<add>import java.util.List;
<add>import java.util.Map.Entry;
<add>
<add>import javax.ws.rs.core.MultivaluedMap;
<add>
<add>im... | |
Java | bsd-3-clause | 22def56db22dee9558054953bd003e6370c288da | 0 | Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java | /*
* Copyright (c) 1998 - 2009. University Corporation for Atmospheric Research/Unidata
* Portions of this software were developed by the Unidata Program at the
* University Corporation for Atmospheric Research.
*
* Access and use of this software shall impose the following obligations
* and understandings on the... | cdm/src/test/java/thredds/catalog/DatasetScanExpandSubdirsTest.java | /*
* Copyright (c) 1998 - 2009. University Corporation for Atmospheric Research/Unidata
* Portions of this software were developed by the Unidata Program at the
* University Corporation for Atmospheric Research.
*
* Access and use of this software shall impose the following obligations
* and understandings on the... | Debugging test failure.
| cdm/src/test/java/thredds/catalog/DatasetScanExpandSubdirsTest.java | Debugging test failure. | <ide><path>dm/src/test/java/thredds/catalog/DatasetScanExpandSubdirsTest.java
<ide> import ucar.unidata.util.TestFileDirUtils;
<ide>
<ide> import java.io.File;
<add>import java.io.IOException;
<ide> import java.net.URI;
<ide> import java.net.URISyntaxException;
<ide> import java.util.List;
<ide> }
<ide>
<ide> @Te... | |
Java | apache-2.0 | acd09fcdd41cd8087aa049fed952f4ff5ed4f43a | 0 | talsma-ict/umldoclet,talsma-ict/umldoclet | /*
* Copyright 2016-2019 Talsma ICT
*
* 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 agr... | src/main/java/nl/talsmasoftware/umldoclet/UMLDoclet.java | /*
* Copyright 2016-2019 Talsma ICT
*
* 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 agr... | Add javadoc to the `UMLDoclet` class
Signed-off-by: Sjoerd Talsma <1dafb4c4a7acdc6e1eca32ff35fda03e0e9cd976@talsma-ict.nl>
| src/main/java/nl/talsmasoftware/umldoclet/UMLDoclet.java | Add javadoc to the `UMLDoclet` class | <ide><path>rc/main/java/nl/talsmasoftware/umldoclet/UMLDoclet.java
<ide>
<ide> private final DocletConfig config;
<ide>
<add> /**
<add> * Default constructor, as required by {@linkplain jdk.javadoc.doclet.Doclet} specification.
<add> */
<ide> public UMLDoclet() {
<ide> super();
<ide> ... | |
JavaScript | apache-2.0 | 38ef64dbce643e1781cb0d8268fadcb377c68266 | 0 | googleinterns/step132-2020,googleinterns/step132-2020,googleinterns/step132-2020 | // Copyright 2019 Google LLC
//
// 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 agreed to in ... | src/main/webapp/progress.js | // Copyright 2019 Google LLC
//
// 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 agreed to in ... | Add a check so that only past topics that have been specified are displayed (#134)
| src/main/webapp/progress.js | Add a check so that only past topics that have been specified are displayed (#134) | <ide><path>rc/main/webapp/progress.js
<ide> if (Object.keys(tutoringSessions).length != 0) {
<ide> tutoringSessions.forEach((tutoringSession) => {
<ide> document.getElementById('past-sessions').appendChild(createPastSessionBox(tutoringSession));
<del> document.getElementById('past-top... | |
Java | apache-2.0 | 49bb4ab1a61f0ad1fc204675878ca8d00aebb29b | 0 | rkrell/izpack,izpack/izpack,akuhtz/izpack,mtjandra/izpack,mtjandra/izpack,codehaus/izpack,Helpstone/izpack,rkrell/izpack,mtjandra/izpack,bradcfisher/izpack,izpack/izpack,Murdock01/izpack,tomas-forsman/izpack,stenix71/izpack,stenix71/izpack,rsharipov/izpack,codehaus/izpack,akuhtz/izpack,Sage-ERP-X3/izpack,mtjandra/izpac... | /*
* IzPack - Copyright 2001-2008 Julien Ponge, All Rights Reserved.
*
* http://www.izforge.com/izpack/
* http://izpack.codehaus.org/
*
* Copyright 2003 Marc Eppelmann
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You m... | src/lib/com/izforge/izpack/util/os/Unix_Shortcut.java | /*
* IzPack - Copyright 2001-2008 Julien Ponge, All Rights Reserved.
*
* http://www.izforge.com/izpack/
* http://izpack.codehaus.org/
*
* Copyright 2003 Marc Eppelmann
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You m... | IZPACK-201 Shortcut creation on non-english Linux (Ubuntu 8.10)
Removed unnneded space
git-svn-id: 408af81b9e4f0a5eaad229a6d9eed76d614c4af6@2440 7d736ef5-cfd4-0310-9c9a-b52d5c14b761
| src/lib/com/izforge/izpack/util/os/Unix_Shortcut.java | IZPACK-201 Shortcut creation on non-english Linux (Ubuntu 8.10) Removed unnneded space | <ide><path>rc/lib/com/izforge/izpack/util/os/Unix_Shortcut.java
<ide> {
<ide> // / THE Following does such as #> su username -c "xdg-desktopicon install
<ide> // --novendor /Path/to/Filename\ with\ or\ without\ Space.desktop"
<del> rootScript.append(new String[... | |
Java | apache-2.0 | af2e36dc4e53b258fc89ce5696b60e9d967396dc | 0 | google/closure-compiler,google/closure-compiler,monetate/closure-compiler,google/closure-compiler,monetate/closure-compiler,monetate/closure-compiler,monetate/closure-compiler,google/closure-compiler | /*
* Copyright 2021 The Closure Compiler 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 required by applicable... | src/com/google/javascript/jscomp/j2clbuild/super/com/google/javascript/jscomp/LocaleDataPasses.java | /*
* Copyright 2021 The Closure Compiler 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 required by applicable... | Internal change
PiperOrigin-RevId: 481947290
| src/com/google/javascript/jscomp/j2clbuild/super/com/google/javascript/jscomp/LocaleDataPasses.java | Internal change | <ide><path>rc/com/google/javascript/jscomp/j2clbuild/super/com/google/javascript/jscomp/LocaleDataPasses.java
<ide>
<ide> import com.google.javascript.rhino.Node;
<ide>
<del>// ** GWT compatible no-op replacement for {@code LocaleDataPasses} */
<add>/** GWT compatible no-op replacement for {@code LocaleDataPasses} */... | |
Java | apache-2.0 | 227b40fc27e5cfbe02b8e55296000c3da49662f7 | 0 | MyersResearchGroup/iBioSim,MyersResearchGroup/iBioSim,MyersResearchGroup/iBioSim | package reb2sac;
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.util.prefs.Preferences;
import javax.swing.*;
import parser.*;
import lhpn2sbml.gui.LHPNEditor;
import lhpn2sbml.parser.Abstraction;
import lhpn2sbml.parser.LhpnFile;
import lhpn2sbml.parser.Translator;
i... | gui/src/reb2sac/Run.java | package reb2sac;
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.util.prefs.Preferences;
import javax.swing.*;
import parser.*;
import lhpn2sbml.gui.LHPNEditor;
import lhpn2sbml.parser.*;
import biomodelsim.*;
import gcm2sbml.gui.GCM2SBMLEditor;
import gcm2sbml.parser.... | Changes made to remove ambiguous import statement.
| gui/src/reb2sac/Run.java | Changes made to remove ambiguous import statement. | <ide><path>ui/src/reb2sac/Run.java
<ide> import parser.*;
<ide>
<ide> import lhpn2sbml.gui.LHPNEditor;
<del>import lhpn2sbml.parser.*;
<add>import lhpn2sbml.parser.Abstraction;
<add>import lhpn2sbml.parser.LhpnFile;
<add>import lhpn2sbml.parser.Translator;
<ide>
<ide> import biomodelsim.*;
<ide> import gcm2sbml.gui.G... | |
Java | apache-2.0 | 3bdc5c83f8d114ef80de3fffa4416975173e2cc3 | 0 | jnidzwetzki/bboxdb,jnidzwetzki/scalephant,jnidzwetzki/scalephant,jnidzwetzki/bboxdb,jnidzwetzki/bboxdb | package de.fernunihagen.dna.jkn.scalephant.distribution.resource;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Random;
import de.fernunihagen.dna.jkn.scalephant.distribution.membership.DistributedInstance;
public class RandomResourcePlacementStrategy implements Res... | src/main/java/de/fernunihagen/dna/jkn/scalephant/distribution/resource/RandomResourcePlacementStrategy.java | package de.fernunihagen.dna.jkn.scalephant.distribution.resource;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Random;
import de.fernunihagen.dna.jkn.scalephant.distribution.membership.DistributedInstance;
public class RandomResourcePlacementStrategy implements Res... | Fixed placement strategy | src/main/java/de/fernunihagen/dna/jkn/scalephant/distribution/resource/RandomResourcePlacementStrategy.java | Fixed placement strategy | <ide><path>rc/main/java/de/fernunihagen/dna/jkn/scalephant/distribution/resource/RandomResourcePlacementStrategy.java
<ide>
<ide> synchronized (systems) {
<ide> final List<DistributedInstance> elements = new ArrayList<DistributedInstance>(systems);
<del> final int element = randomGenerator.nextInt() % elements.... | |
JavaScript | mit | dd86e236bc1e2d49e75c4efa1c27f7042da7535c | 0 | jDataView/jBinary,npmcomponent/jDataView-jBinary,dark5un/jBinary,dark5un/jBinary | (function (global) {
'use strict';
// https://github.com/davidchambers/Base64.js (modified)
if (!('atob' in global) || !('btoa' in global)) {
// jshint:skipline
(function(){var t=global,r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",n=function(){try{document.createElement("$")}catch(t){return t... | src/jBinary.js | (function (global) {
'use strict';
// https://github.com/davidchambers/Base64.js (modified)
if (!('atob' in global) || !('btoa' in global)) {
// jshint:skipline
(function(){var t=global,r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",n=function(){try{document.createElement("$")}catch(t){return t... | No need to merge typeSet into default one if it's already inherited from default (i.e., when slicing).
| src/jBinary.js | No need to merge typeSet into default one if it's already inherited from default (i.e., when slicing). | <ide><path>rc/jBinary.js
<ide> this.contexts = [];
<ide>
<ide> if (typeSet) {
<del> this.typeSet = inherit(proto.typeSet, typeSet);
<add> this.typeSet = proto.typeSet.isPrototypeOf(typeSet) ? typeSet : inherit(proto.typeSet, typeSet);
<ide> this.cacheKey = this._getCached(typeSet, function () { return proto.cac... | |
Java | apache-2.0 | 64608dedf011ed1c7f7e1d32b61d82ecaf3f046d | 0 | tmpgit/intellij-community,vvv1559/intellij-community,ftomassetti/intellij-community,jagguli/intellij-community,salguarnieri/intellij-community,asedunov/intellij-community,akosyakov/intellij-community,lucafavatella/intellij-community,robovm/robovm-studio,wreckJ/intellij-community,ryano144/intellij-community,mglukhikh/in... | /*
* Copyright 2000-2009 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 agre... | plugins/groovy/src/org/jetbrains/plugins/groovy/intentions/conversions/ConvertConcatenationToGstringIntention.java | /*
* Copyright 2000-2009 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 agre... | convertConcatenationToGString fix
| plugins/groovy/src/org/jetbrains/plugins/groovy/intentions/conversions/ConvertConcatenationToGstringIntention.java | convertConcatenationToGString fix | <ide><path>lugins/groovy/src/org/jetbrains/plugins/groovy/intentions/conversions/ConvertConcatenationToGstringIntention.java
<ide>
<ide> import com.intellij.openapi.editor.Editor;
<ide> import com.intellij.openapi.project.Project;
<add>import com.intellij.openapi.util.text.StringUtil;
<ide> import com.intellij.psi.*;
... | |
Java | apache-2.0 | 10c658593a13ecb60589edd7147cea00b69c5028 | 0 | iychoi/syndicate,iychoi/syndicate,jcnelson/syndicate,jcnelson/syndicate,jcnelson/syndicate,iychoi/syndicate,iychoi/syndicate,jcnelson/syndicate,jcnelson/syndicate,iychoi/syndicate,iychoi/syndicate,iychoi/syndicate,jcnelson/syndicate,jcnelson/syndicate,iychoi/syndicate,jcnelson/syndicate | /*
* Directory Entry Filler Implementation Class of JSFSFillDir for JSyndicateFS
*/
package JSyndicateFS;
import JSyndicateFSJNI.struct.JSFSFillDir;
import JSyndicateFSJNI.struct.JSFSStat;
import java.util.ArrayList;
/**
*
* @author iychoi
*/
public class DirFillerImpl extends JSFSFillDir {
private stat... | UG-shared/JSyndicateFS/src/JSyndicateFS/DirFillerImpl.java | /*
* Directory Entry Filler Implementation Class of JSFSFillDir for JSyndicateFS
*/
package JSyndicateFS;
import JSyndicateFSJNI.struct.JSFSFillDir;
import JSyndicateFSJNI.struct.JSFSStat;
import java.util.ArrayList;
/**
*
* @author iychoi
*/
public class DirFillerImpl extends JSFSFillDir {
private Arra... | Remove . and .. dirs from list result | UG-shared/JSyndicateFS/src/JSyndicateFS/DirFillerImpl.java | Remove . and .. dirs from list result | <ide><path>G-shared/JSyndicateFS/src/JSyndicateFS/DirFillerImpl.java
<ide> */
<ide> public class DirFillerImpl extends JSFSFillDir {
<ide>
<add> private static final String[] SKIP_FILES = {".", ".."};
<add>
<ide> private ArrayList<String> entries = new ArrayList<String>();
<add>
<ide>
<ide> ... | |
Java | epl-1.0 | f8df460dc2336cbb6349c120f4e41cb2f6ea0b6f | 0 | jtrfp/terminal-recall,jtrfp/terminal-recall,jtrfp/terminal-recall | /*******************************************************************************
* This file is part of TERMINAL RECALL
* Copyright (c) 2012, 2013 Chuck Ritola.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanie... | src/main/java/org/jtrfp/trcl/core/TR.java | /*******************************************************************************
* This file is part of TERMINAL RECALL
* Copyright (c) 2012, 2013 Chuck Ritola.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanie... | Created legacy2Square static method for calculating texture cells
coordinates from legacy coordinates. | src/main/java/org/jtrfp/trcl/core/TR.java | Created legacy2Square static method for calculating texture cells coordinates from legacy coordinates. | <ide><path>rc/main/java/org/jtrfp/trcl/core/TR.java
<ide> public void setHudSystem(HUDSystem hudSystem) {
<ide> this.hudSystem = hudSystem;
<ide> }
<del> }//end TR
<add>
<add> public static double legacy2MapSquare(double z) {
<add> return ((z/crossPlatformScalar)/mapWidth)*255.;
<add> }
<add>}//end TR | |
Java | apache-2.0 | bb1bc5db022eb76bd50c3975ca1be3d78fb9efc1 | 0 | utwyko/tmdb-java,UweTrottmann/tmdb-java,GeorgeMe/tmdb-java,ProIcons/tmdb-java,b12kab/tmdblibrary | /*
* Copyright 2012 Uwe Trottmann
*
* 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 ... | src/main/java/com/uwetrottmann/tmdb/services/MoviesService.java | /*
* Copyright 2012 Uwe Trottmann
*
* 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 ... | Support /3/movie/upcoming, /3/movie/now_playing. Remove optional lang methods, instead call builder method directly.
| src/main/java/com/uwetrottmann/tmdb/services/MoviesService.java | Support /3/movie/upcoming, /3/movie/now_playing. Remove optional lang methods, instead call builder method directly. | <ide><path>rc/main/java/com/uwetrottmann/tmdb/services/MoviesService.java
<ide> }
<ide>
<ide> /**
<del> * Get the basic movie information for a specific movie id.
<del> *
<del> * @param id TMDb id.
<del> * @param langCode ISO 639-1 code.
<del> * @return Builder instance.
<del> */
<del>... | |
Java | apache-2.0 | 844270fcb23589ff59e9a8d0e84c51fb2e7f534a | 0 | PATRIC3/p3_solr,PATRIC3/p3_solr,PATRIC3/p3_solr,PATRIC3/p3_solr,PATRIC3/p3_solr,PATRIC3/p3_solr,PATRIC3/p3_solr | package org.apache.solr.util;
/*
* 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... | solr/core/src/java/org/apache/solr/util/SimplePostTool.java | package org.apache.solr.util;
/*
* 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... | fix misspelling in warning output text (merged from trunk)
git-svn-id: 13f9c63152c129021c7e766f4ef575faaaa595a2@1432938 13f79535-47bb-0310-9956-ffa450edef68
| solr/core/src/java/org/apache/solr/util/SimplePostTool.java | fix misspelling in warning output text (merged from trunk) | <ide><path>olr/core/src/java/org/apache/solr/util/SimplePostTool.java
<ide> " " + urlc.getResponseMessage() + " for url "+url);
<ide> }
<ide> } catch (IOException e) {
<del> warn("An error occured posting data to "+url+". Please check that Solr is running.");
<add> warn("An error occurre... | |
Java | bsd-2-clause | 0a0a25bf24464a4b2e6d740094d39ff302407dd5 | 0 | TehSAUCE/imagej,TehSAUCE/imagej,biovoxxel/imagej,biovoxxel/imagej,biovoxxel/imagej,TehSAUCE/imagej | /*
* #%L
* ImageJ software for multidimensional image processing and analysis.
* %%
* Copyright (C) 2009 - 2012 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... | core/core/src/main/java/imagej/ImageJ.java | /*
* #%L
* ImageJ software for multidimensional image processing and analysis.
* %%
* Copyright (C) 2009 - 2012 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... | Deprecate ImageJ#VERSION constant
Rather, the preferred way to obtain the version of ImageJ is to ask the
context by calling getVersion().
| core/core/src/main/java/imagej/ImageJ.java | Deprecate ImageJ#VERSION constant | <ide><path>ore/core/src/main/java/imagej/ImageJ.java
<ide> */
<ide> public class ImageJ {
<ide>
<del> /** Version of the ImageJ software. */
<add> /** @deprecated Use {@link ImageJ#getVersion()} instead. */
<add> @Deprecated
<ide> public static final String VERSION = "2.0.0-beta4-DEV";
<ide>
<ide> /** Creates a ne... | |
Java | apache-2.0 | 431abf146b014bdea8d16100ae32adaa51e7826e | 0 | Jasig/cas,apereo/cas,Jasig/cas,philliprower/cas,apereo/cas,fogbeam/cas_mirror,philliprower/cas,philliprower/cas,philliprower/cas,apereo/cas,apereo/cas,philliprower/cas,fogbeam/cas_mirror,apereo/cas,fogbeam/cas_mirror,rkorn86/cas,fogbeam/cas_mirror,leleuj/cas,pdrados/cas,Jasig/cas,leleuj/cas,rkorn86/cas,pdrados/cas,fogb... | package org.apereo.cas.configuration.model.core.util;
import org.apereo.cas.configuration.model.core.ticket.ProxyGrantingTicketProperties;
import org.apereo.cas.configuration.model.core.ticket.ProxyTicketProperties;
import org.apereo.cas.configuration.model.core.ticket.ServiceTicketProperties;
import org.apereo.cas.co... | core/cas-server-core-configuration/src/main/java/org/apereo/cas/configuration/model/core/util/TicketProperties.java | package org.apereo.cas.configuration.model.core.util;
import org.apereo.cas.configuration.model.core.ticket.ProxyGrantingTicketProperties;
import org.apereo.cas.configuration.model.core.ticket.ProxyTicketProperties;
import org.apereo.cas.configuration.model.core.ticket.ServiceTicketProperties;
import org.apereo.cas.co... | disable ticket registry encryption by default asa before
| core/cas-server-core-configuration/src/main/java/org/apereo/cas/configuration/model/core/util/TicketProperties.java | disable ticket registry encryption by default asa before | <ide><path>ore/cas-server-core-configuration/src/main/java/org/apereo/cas/configuration/model/core/util/TicketProperties.java
<ide>
<ide> @NestedConfigurationProperty
<ide> private TicketGrantingTicketProperties tgt = new TicketGrantingTicketProperties();
<del>
<add>
<add> public TicketProperties() {
<a... | |
Java | mit | f5e8d81fe8100d15bced368b09934f7067f7358a | 0 | commercetools/commercetools-payone-integration,commercetools/commercetools-payone-integration | package com.commercetools.util;
import org.apache.http.Consts;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.metho... | service/src/main/java/com/commercetools/util/HttpRequestUtil.java | package com.commercetools.util;
import org.apache.http.Consts;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.metho... | #185: revert socket timeout
| service/src/main/java/com/commercetools/util/HttpRequestUtil.java | #185: revert socket timeout | <ide><path>ervice/src/main/java/com/commercetools/util/HttpRequestUtil.java
<ide> private static final CloseableHttpClient CLIENT = HttpClientBuilder.create()
<ide> .setDefaultRequestConfig(RequestConfig.custom()
<ide> .setConnectionRequestTimeout(REQUEST_TIMEOUT)
<del> ... | |
JavaScript | mit | dc3ed1207e8fe804f47acc9ea0f60dffbd6c2a27 | 0 | SirWinn3r/gauche-ou-droite-client,SirWinn3r/gauche-ou-droite-client,SirWinn3r/gauche-ou-droite-client | import React from 'react'
const CongressmanCard = ({ congressman, infosToDisplay=[], answer }) => (
<div className="congressman-container" >
<div className={'congressman-photo animated ' + (infosToDisplay.includes('name') ? (answer === congressman.side ? 'pulse' : 'shake') : 'fadeInUp')}>
{infosToD... | src/components/Quiz/CongressmanCard.js | import React from 'react'
const CongressmanCard = ({ congressman, infosToDisplay=[], answer }) => (
<div className="congressman-container" >
<div className={'congressman-photo animated ' + (infosToDisplay.includes('name') ? (answer == congressman.side ? 'pulse' : 'shake') : 'fadeInUp')}>
{infosToDi... | Update CongressmanCard.js | src/components/Quiz/CongressmanCard.js | Update CongressmanCard.js | <ide><path>rc/components/Quiz/CongressmanCard.js
<ide>
<ide> const CongressmanCard = ({ congressman, infosToDisplay=[], answer }) => (
<ide> <div className="congressman-container" >
<del> <div className={'congressman-photo animated ' + (infosToDisplay.includes('name') ? (answer == congressman.side ? 'pulse' :... | |
Java | apache-2.0 | ee89ebd7b0bb52c1ff68e17b70581e27334d8548 | 0 | jerrinot/hazelcast-stabilizer,jerrinot/hazelcast-stabilizer,hazelcast/hazelcast-simulator,pveentjer/hazelcast-simulator,pveentjer/hazelcast-simulator,hazelcast/hazelcast-simulator,Donnerbart/hazelcast-simulator,hazelcast/hazelcast-simulator,Donnerbart/hazelcast-simulator | /*
* Copyright (c) 2008-2016, Hazelcast, Inc. 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 required ... | tests/tests-common/src/main/java/com/hazelcast/simulator/tests/icache/EvictionICacheTest.java | /*
* Copyright (c) 2008-2016, Hazelcast, Inc. 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 required ... | Converted EvictionICacheTest to new timestep approach
| tests/tests-common/src/main/java/com/hazelcast/simulator/tests/icache/EvictionICacheTest.java | Converted EvictionICacheTest to new timestep approach | <ide><path>ests/tests-common/src/main/java/com/hazelcast/simulator/tests/icache/EvictionICacheTest.java
<ide> import com.hazelcast.config.CacheConfig;
<ide> import com.hazelcast.core.IList;
<ide> import com.hazelcast.simulator.test.AbstractTest;
<del>import com.hazelcast.simulator.test.annotations.RunWithWorker;
<add>i... | |
Java | apache-2.0 | 21ba15e83a5954473d5043a63c564745397db99f | 0 | greg-dove/flex-falcon,greg-dove/flex-falcon,adufilie/flex-falcon,adufilie/flex-falcon,greg-dove/flex-falcon,greg-dove/flex-falcon,adufilie/flex-falcon,adufilie/flex-falcon | /*
*
* 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"); ... | compiler/src/org/apache/flex/compiler/internal/codegen/databinding/WatcherAnalyzer.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"); ... | Handle interfaces as well as classes
| compiler/src/org/apache/flex/compiler/internal/codegen/databinding/WatcherAnalyzer.java | Handle interfaces as well as classes | <ide><path>ompiler/src/org/apache/flex/compiler/internal/codegen/databinding/WatcherAnalyzer.java
<ide> import org.apache.flex.compiler.definitions.IConstantDefinition;
<ide> import org.apache.flex.compiler.definitions.IDefinition;
<ide> import org.apache.flex.compiler.definitions.IFunctionDefinition;
<add>import org.a... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.