lang
stringclasses
1 value
license
stringclasses
13 values
stderr
stringlengths
0
350
commit
stringlengths
40
40
returncode
int64
0
128
repos
stringlengths
7
45.1k
new_contents
stringlengths
0
1.87M
new_file
stringlengths
6
292
old_contents
stringlengths
0
1.87M
message
stringlengths
6
9.26k
old_file
stringlengths
6
292
subject
stringlengths
0
4.45k
Java
mit
daa899537797b3bf09d4f2f19d1863d60eb3b8a7
0
Lw-Cui/visual-graph-algs,Lw-Cui/visual-graph-algs
import edu.princeton.cs.algs4.*; import java.awt.*; public class Graph { private static class Point { private int index; private double x, y; private Bag<Point> adj; public Point(double x, double y, int index) { this.x = x; this.y = y; this.index...
Graph.java
import edu.princeton.cs.algs4.*; import java.awt.*; public class Graph { private static class Point { private int index; private double x, y; private Bag<Point> adj; public Point(double x, double y, int index) { this.x = x; this.y = y; this.index...
breathfirstsearch
Graph.java
breathfirstsearch
Java
mit
c989b296aee21b22696d3c0126c52c0808afcab9
0
Microsoft/mssql-jdbc
/* * Microsoft JDBC Driver for SQL Server * * Copyright(c) Microsoft Corporation All rights reserved. * * This program is made available under the terms of the MIT License. See the LICENSE file in the project root for more information. */ package com.microsoft.sqlserver.jdbc.unit.statement; import static java....
src/test/java/com/microsoft/sqlserver/jdbc/unit/statement/PreparedStatementTest.java
/* * Microsoft JDBC Driver for SQL Server * * Copyright(c) Microsoft Corporation All rights reserved. * * This program is made available under the terms of the MIT License. See the LICENSE file in the project root for more information. */ package com.microsoft.sqlserver.jdbc.unit.statement; import static java....
Removed use of lamba expression in test case.
src/test/java/com/microsoft/sqlserver/jdbc/unit/statement/PreparedStatementTest.java
Removed use of lamba expression in test case.
Java
mit
a34f1b06d8740139ae6db8f9f38c4e88f3aade67
0
EDACC/edacc_gui,EDACC/edacc_gui,EDACC/edacc_gui,EDACC/edacc_gui,EDACC/edacc_gui
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package edacc.manageDB; import edacc.EDACCApp; import edacc.model.SolverIsInExperimentException; import edacc.EDACCManageDBMode; import edacc.EDACCSolverBinaryDlg; import edacc.model.DatabaseConnector; import edacc.mode...
src/edacc/manageDB/ManageDBSolvers.java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package edacc.manageDB; import edacc.EDACCApp; import edacc.model.SolverIsInExperimentException; import edacc.EDACCManageDBMode; import edacc.EDACCSolverBinaryDlg; import edacc.model.DatabaseConnector; import edacc.mode...
fixed: editing solver binary could break paths
src/edacc/manageDB/ManageDBSolvers.java
fixed: editing solver binary could break paths
Java
agpl-3.0
4c6a4b3f2ec42c6c3865239c0a40f34a216fdfc0
0
aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms
/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2006-2014 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2014 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(...
opennms-model/src/main/java/org/opennms/netmgt/model/events/EventBuilder.java
/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2006-2014 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2014 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(...
Fixed typo in EventBuilder to fix bug NMS-7736.
opennms-model/src/main/java/org/opennms/netmgt/model/events/EventBuilder.java
Fixed typo in EventBuilder to fix bug NMS-7736.
Java
agpl-3.0
1753c4bff998a4757be7462cc91f37a415afbb7f
0
thebigg73/OpenSongTablet,thebigg73/OpenSongTablet,thebigg73/OpenSongTablet
package com.garethevans.church.opensongtablet; // This contains all of the scripts for the PresentationService and PresentationServiceHDMI import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.media.AudioManager; import android.media.MediaPlayer; import ...
app/src/main/java/com/garethevans/church/opensongtablet/PresentationCommon.java
package com.garethevans.church.opensongtablet; // This contains all of the scripts for the PresentationService and PresentationServiceHDMI import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.media.AudioManager; import android.media.MediaPlayer; import ...
Fix: A song with only '_' as title will not show the bottom_infobar on the cast screen (prevously would show background padding)
app/src/main/java/com/garethevans/church/opensongtablet/PresentationCommon.java
Fix: A song with only '_' as title will not show the bottom_infobar on the cast screen (prevously would show background padding)
Java
apache-2.0
b582ee7115f26d43051b73a4de0bd03701e05fb6
0
PearsonEducation/StatsAgg,PearsonEducation/StatsAgg,PearsonEducation/StatsAgg
package com.pearson.statsagg.utilities.json_utils; import com.google.gson.Gson; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gson.JsonParser; import com.google.gson.JsonPrimitive; import com.pearson.statsagg.utilities.core_utils.StackTrace; import org.slf4j.Logger; import or...
src/main/java/com/pearson/statsagg/utilities/json_utils/JsonUtils.java
package com.pearson.statsagg.utilities.json_utils; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gson.JsonPrimitive; import com.pearson.statsagg.utilities.core_utils.StackTrace; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * @author Jeffrey Schmidt */ publi...
add some helper methods
src/main/java/com/pearson/statsagg/utilities/json_utils/JsonUtils.java
add some helper methods
Java
apache-2.0
fa7504532eee9c8f0e14ccc4cc83d9dbdc7753cf
0
cinderella/incubator-cloudstack,DaanHoogland/cloudstack,jcshen007/cloudstack,DaanHoogland/cloudstack,resmo/cloudstack,GabrielBrascher/cloudstack,cinderella/incubator-cloudstack,DaanHoogland/cloudstack,mufaddalq/cloudstack-datera-driver,mufaddalq/cloudstack-datera-driver,argv0/cloudstack,GabrielBrascher/cloudstack,mufad...
/** * Copyright (C) 2010 Cloud.com, Inc. All rights reserved. * * This software is licensed under the GNU General Public License v3 or later. * * It is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, e...
server/src/com/cloud/network/NetworkManagerImpl.java
/** * Copyright (C) 2010 Cloud.com, Inc. All rights reserved. * * This software is licensed under the GNU General Public License v3 or later. * * It is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, e...
Merging from 2.2Beta3 where network was not showing network dedicated to an user
server/src/com/cloud/network/NetworkManagerImpl.java
Merging from 2.2Beta3 where network was not showing network dedicated to an user
Java
apache-2.0
43d913b9b6640a13d26e90259161c4bd4f6f17b3
0
PhilHardwick/fabric8,christian-posta/fabric8,KurtStam/fabric8,janstey/fuse-1,PhilHardwick/fabric8,rhuss/fabric8,punkhorn/fuse,PhilHardwick/fabric8,rmarting/fuse,dhirajsb/fuse,chirino/fabric8,avano/fabric8,christian-posta/fabric8,christian-posta/fabric8,ffang/fuse-1,jonathanchristison/fabric8,opensourceconsultant/fuse,E...
/** * Copyright (C) FuseSource, Inc. * http://fusesource.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 * * Unless required by...
fabric/fabric-commands/src/main/java/org/fusesource/fabric/commands/MQCreate.java
/** * Copyright (C) FuseSource, Inc. * http://fusesource.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 * * Unless required by...
[ENTMQ-134] - align mq-create command with new security policies
fabric/fabric-commands/src/main/java/org/fusesource/fabric/commands/MQCreate.java
[ENTMQ-134] - align mq-create command with new security policies
Java
apache-2.0
aecff2b86516ec093f3c011dafd68c1bc5ef4617
0
winterDroid/android-drawable-importer-intellij-plugin,winterDroid/android-drawable-importer-intellij-plugin
package de.mprengemann.intellij.plugin.androidicons.widgets; import com.intellij.openapi.components.PathMacroManager; import com.intellij.openapi.fileChooser.FileChooserDescriptor; import com.intellij.openapi.fileChooser.FileChooserDescriptorFactory; import com.intellij.openapi.fileChooser.ex.FileDrop; import com.inte...
src/main/java/de/mprengemann/intellij/plugin/androidicons/widgets/FileBrowserField.java
package de.mprengemann.intellij.plugin.androidicons.widgets; import com.intellij.openapi.components.PathMacroManager; import com.intellij.openapi.fileChooser.FileChooserDescriptor; import com.intellij.openapi.fileChooser.FileChooserDescriptorFactory; import com.intellij.openapi.fileChooser.ex.FileDrop; import com.inte...
Fixes double file chooser from FileBrowserField
src/main/java/de/mprengemann/intellij/plugin/androidicons/widgets/FileBrowserField.java
Fixes double file chooser from FileBrowserField
Java
apache-2.0
23d65ef4f644fd896899953f76c76c07eb6aac4d
0
apache/pdfbox,apache/pdfbox,kalaspuffar/pdfbox,kalaspuffar/pdfbox
/* * 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...
examples/src/test/java/org/apache/pdfbox/examples/pdmodel/TestCreateSignature.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...
PDFBOX-3017: optional TSA signing test git-svn-id: c3ad59981690829a43dc34c293c4e2cd04bcd994@1877034 13f79535-47bb-0310-9956-ffa450edef68
examples/src/test/java/org/apache/pdfbox/examples/pdmodel/TestCreateSignature.java
PDFBOX-3017: optional TSA signing test
Java
apache-2.0
d696771141041f6b12340c81ee4682300530cc31
0
apache/groovy,apache/groovy,apache/groovy,apache/groovy,paulk-asert/groovy,apache/incubator-groovy,paulk-asert/groovy,paulk-asert/groovy,apache/incubator-groovy,apache/incubator-groovy,paulk-asert/groovy,apache/incubator-groovy
/* * 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")...
src/main/java/org/codehaus/groovy/transform/sc/transformers/CompareToNullExpression.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")...
GROOVY-9732: re-implement transformExpression and several setters (closes #1361)
src/main/java/org/codehaus/groovy/transform/sc/transformers/CompareToNullExpression.java
GROOVY-9732: re-implement transformExpression and several setters (closes #1361)
Java
apache-2.0
d7e1c16cd3ef9a6cf0451291c495613bbcee4490
0
ebi-uniprot/QuickGOBE,ebi-uniprot/QuickGOBE,ebi-uniprot/QuickGOBE,ebi-uniprot/QuickGOBE,ebi-uniprot/QuickGOBE
package uk.ac.ebi.quickgo.rest.search; import uk.ac.ebi.quickgo.common.solr.TemporarySolrDataStore; import org.junit.Before; import org.junit.ClassRule; import org.junit.runner.RunWith; import org.mockito.internal.matchers.GreaterOrEqual; import org.springframework.beans.factory.annotation.Autowired; import org.sprin...
rest-common/src/test/java/uk/ac/ebi/quickgo/rest/search/SearchControllerSetup.java
package uk.ac.ebi.quickgo.rest.search; import uk.ac.ebi.quickgo.common.solr.TemporarySolrDataStore; import org.junit.Before; import org.junit.ClassRule; import org.junit.runner.RunWith; import org.mockito.internal.matchers.GreaterOrEqual; import org.springframework.beans.factory.annotation.Autowired; import org.sprin...
added missing call to check error message
rest-common/src/test/java/uk/ac/ebi/quickgo/rest/search/SearchControllerSetup.java
added missing call to check error message
Java
apache-2.0
fb9d4d500f9a13684d6147456d7f9670fb1b1528
0
apache/commons-io,pimtegelaar/commons-io-test3,apache/commons-io,pimtegelaar/commons-io-test3,apache/commons-io,pimtegelaar/commons-io-test3
/* * 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/test/org/apache/commons/io/input/TailerTest.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 ...
Add more checks to ensure callbacks called as expected git-svn-id: cb61607abf5ac23ab48a85ccf5b9d9390a6837ee@1003112 13f79535-47bb-0310-9956-ffa450edef68
src/test/org/apache/commons/io/input/TailerTest.java
Add more checks to ensure callbacks called as expected
Java
apache-2.0
f3ae8638e7390c82197f58537205d85cc03461e8
0
photon-infotech/commons,photon-infotech/commons
/** * Phresco Framework * * Copyright (C) 1999-2013 Photon Infotech Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * ...
src/main/java/com/photon/phresco/commons/model/CIJob.java
/** * Phresco Framework * * Copyright (C) 1999-2013 Photon Infotech Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * ...
Xcode Plugin Changes for Jenkins
src/main/java/com/photon/phresco/commons/model/CIJob.java
Xcode Plugin Changes for Jenkins
Java
apache-2.0
72afac62993413a205edc656c8c659f0d52e3751
0
xdom/appid-serversdk-springboot
package sk.tuke.cloud.security; import com.fasterxml.jackson.annotation.JsonProperty; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springfram...
src/main/java/sk/tuke/cloud/security/PublicKeyClient.java
package sk.tuke.cloud.security; import com.fasterxml.jackson.annotation.JsonProperty; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Component; import org.springframework.web.clie...
Add autowired annotation to PublicKeyClient constructor
src/main/java/sk/tuke/cloud/security/PublicKeyClient.java
Add autowired annotation to PublicKeyClient constructor
Java
apache-2.0
c90ca7c80899dd0b57fafa704ed24efc6be84069
0
hhu94/Synapse-Repository-Services,Sage-Bionetworks/Synapse-Repository-Services,Sage-Bionetworks/Synapse-Repository-Services,xschildw/Synapse-Repository-Services,zimingd/Synapse-Repository-Services,xschildw/Synapse-Repository-Services,zimingd/Synapse-Repository-Services,xschildw/Synapse-Repository-Services,hhu94/Synapse...
package org.sagebionetworks; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import java.io.File; import jav...
integration-test/src/test/java/org/sagebionetworks/IT500SynapseJavaClient.java
package org.sagebionetworks; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import java.io.File; import jav...
look for the double quote to end the token
integration-test/src/test/java/org/sagebionetworks/IT500SynapseJavaClient.java
look for the double quote to end the token
Java
apache-2.0
43979257a96097c2c7d69ec30aeafe3230c1adcf
0
nhl/bootique-jersey-client
package com.nhl.bootique.jersey.client; import static java.util.Arrays.asList; import static java.util.stream.Collectors.joining; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.mock; import java.io.File; import java.io.IOException; import java...
src/test/java/com/nhl/bootique/jersey/client/HttpClientFactoryFactory_LoggingIT.java
package com.nhl.bootique.jersey.client; import static java.util.Arrays.asList; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.mock; import java.io.File; import java.io.IOException; import java.nio.file.Files; import java.util.Collections; impo...
debugging unit test
src/test/java/com/nhl/bootique/jersey/client/HttpClientFactoryFactory_LoggingIT.java
debugging unit test
Java
apache-2.0
494fd0bfe8598e03b60932d075724a7596f555e8
0
fsxiaaa/cosc455_project1
package edu.towson.cis.cosc455.ftchen.project1.implementation; import edu.towson.cis.cosc455.ftchen.project1.interfaces.SyntaxAnalyzer; public class MySyntaxAnalyzer implements SyntaxAnalyzer { //@Override public void markdown() throws CompilerException { try { if (MyCompiler.currentToken.equalsIgnor...
src/edu/towson/cis/cosc455/ftchen/project1/implementation/MySyntaxAnalyzer.java
package edu.towson.cis.cosc455.ftchen.project1.implementation; import edu.towson.cis.cosc455.ftchen.project1.interfaces.SyntaxAnalyzer; public class MySyntaxAnalyzer implements SyntaxAnalyzer { //@Override public void markdown() throws CompilerException { try { if (MyCompiler.currentToken.equalsIgnor...
Inner Text modified/fixed.
src/edu/towson/cis/cosc455/ftchen/project1/implementation/MySyntaxAnalyzer.java
Inner Text modified/fixed.
Java
apache-2.0
9ae5cada4aa14e190c38fbb5b9406addea686005
0
digitalpetri/opc-ua-stack
/* * digitalpetri OPC-UA SDK * * Copyright (C) 2015 Kevin Herron * * 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...
stack-core/src/main/java/com/digitalpetri/opcua/stack/core/BuiltinDataType.java
/* * digitalpetri OPC-UA SDK * * Copyright (C) 2015 Kevin Herron * * 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...
Formatting and code style
stack-core/src/main/java/com/digitalpetri/opcua/stack/core/BuiltinDataType.java
Formatting and code style
Java
apache-2.0
666233c86a66f7bca4bc9e55b3e5437f35e25b74
0
tanskann/kubernetes-plugin,jenkinsci/kubernetes-plugin,tanskann/kubernetes-plugin,azweb76/kubernetes-plugin,jenkinsci/kubernetes-plugin,jenkinsci/kubernetes-plugin,carlossg/jenkins-kubernetes-plugin,carlossg/jenkins-kubernetes-plugin,azweb76/kubernetes-plugin
package org.csanchez.jenkins.plugins.kubernetes.pipeline; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.Stack; import java.util.logging.Logger; import hudson.BulkChange; import hudson.model.InvisibleAction; import hudson.model.Run; public class PodTemplateAction exte...
src/main/java/org/csanchez/jenkins/plugins/kubernetes/pipeline/PodTemplateAction.java
package org.csanchez.jenkins.plugins.kubernetes.pipeline; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.Stack; import hudson.BulkChange; import hudson.model.InvisibleAction; import hudson.model.Run; public class PodTemplateAction extends InvisibleAction { privat...
Prevent NPE in PodTemplateAction java.lang.NullPointerException at org.csanchez.jenkins.plugins.kubernetes.pipeline.PodTemplateAction.pop(PodTemplateAction.java:40) at org.csanchez.jenkins.plugins.kubernetes.pipeline.PodTemplateStepExecution.stop(PodTemplateStepExecution.java:61)
src/main/java/org/csanchez/jenkins/plugins/kubernetes/pipeline/PodTemplateAction.java
Prevent NPE in PodTemplateAction
Java
apache-2.0
59f622e1dc9b1d39988e8d762573cfd938bec469
0
Bai-Jie/CoolTechnologies,OptimalOrange/CoolTechnologies,Bai-Jie/CoolTechnologies,OptimalOrange/CoolTechnologies
package com.optimalorange.cooltechnologies.ui.fragment; import com.optimalorange.cooltechnologies.R; import android.app.Fragment; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.widget.SwipeRefreshLayout; import android.view.LayoutInflater; import android.view.Menu; imp...
app/src/main/java/com/optimalorange/cooltechnologies/ui/fragment/SwipeRefreshFragment.java
package com.optimalorange.cooltechnologies.ui.fragment; import com.optimalorange.cooltechnologies.R; import android.app.Fragment; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.widget.SwipeRefreshLayout; import android.view.LayoutInflater; import android.view.Menu; imp...
删除一个已解决的TODO项
app/src/main/java/com/optimalorange/cooltechnologies/ui/fragment/SwipeRefreshFragment.java
删除一个已解决的TODO项
Java
apache-2.0
433becc1dec06a87155ccbeb0c42cf79f81e7071
0
google/mug,google/mug
/***************************************************************************** * ------------------------------------------------------------------------- * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * Y...
core/src/main/java/com/google/mu/util/stream/BiStream.java
/***************************************************************************** * ------------------------------------------------------------------------- * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * Y...
Objects.hashCode(o) instead of Objects.hash(key, value) to avoid boxing.
core/src/main/java/com/google/mu/util/stream/BiStream.java
Objects.hashCode(o) instead of Objects.hash(key, value) to avoid boxing.
Java
bsd-3-clause
50b78ca36a8932a5662942038d99d04e2e645131
0
NCIP/caaers,CBIIT/caaers,CBIIT/caaers,CBIIT/caaers,CBIIT/caaers,NCIP/caaers,NCIP/caaers,CBIIT/caaers,NCIP/caaers
package gov.nih.nci.cabig.caaers.domain.report; import gov.nih.nci.cabig.caaers.domain.AdverseEvent; import gov.nih.nci.cabig.caaers.domain.ExpeditedAdverseEventReport; import gov.nih.nci.cabig.caaers.domain.ReportStatus; import gov.nih.nci.cabig.caaers.domain.Submitter; import gov.nih.nci.cabig.caaers.utils.Dat...
caAERS/software/core/src/main/java/gov/nih/nci/cabig/caaers/domain/report/Report.java
package gov.nih.nci.cabig.caaers.domain.report; import gov.nih.nci.cabig.caaers.domain.AdverseEvent; import gov.nih.nci.cabig.caaers.domain.ExpeditedAdverseEventReport; import gov.nih.nci.cabig.caaers.domain.ReportStatus; import gov.nih.nci.cabig.caaers.domain.Submitter; import gov.nih.nci.cabig.caaers.utils.Dat...
setEmailRecipients for serializer SVN-Revision: 10302
caAERS/software/core/src/main/java/gov/nih/nci/cabig/caaers/domain/report/Report.java
setEmailRecipients for serializer
Java
bsd-3-clause
48a8b99ac3c36f71babd7c3514dbbe413256cd4b
0
zqq90/webit-script,febit/wit
// Copyright (c) 2013, Webit Team. All Rights Reserved. package webit.script; import java.util.Map; import webit.script.core.ast.loop.LoopCtrl; import webit.script.core.runtime.variant.VariantContext; import webit.script.core.runtime.variant.VariantStack; import webit.script.io.Out; import webit.script.loggers.Logger;...
webit-script/src/main/java/webit/script/Context.java
// Copyright (c) 2013, Webit Team. All Rights Reserved. package webit.script; import java.util.Map; import webit.script.core.ast.loop.LoopCtrl; import webit.script.core.runtime.variant.VariantContext; import webit.script.core.runtime.variant.VariantStack; import webit.script.io.Out; import webit.script.loggers.Logger;...
javadoc
webit-script/src/main/java/webit/script/Context.java
javadoc
Java
mit
450f0cadadc08b162fff53e5e934eef9f38acc09
0
InnovateUKGitHub/innovation-funding-service,InnovateUKGitHub/innovation-funding-service,InnovateUKGitHub/innovation-funding-service,InnovateUKGitHub/innovation-funding-service,InnovateUKGitHub/innovation-funding-service
package org.innovateuk.ifs.application.forms.sections.yourprojectcosts.validator; import org.innovateuk.ifs.application.forms.sections.yourprojectcosts.form.*; import org.innovateuk.ifs.application.resource.ApplicationResource; import org.innovateuk.ifs.application.service.ApplicationRestService; import org.innovateuk...
ifs-web-service/ifs-application-commons/src/main/java/org/innovateuk/ifs/application/forms/sections/yourprojectcosts/validator/YourProjectCostsFormValidator.java
package org.innovateuk.ifs.application.forms.sections.yourprojectcosts.validator; import org.innovateuk.ifs.application.forms.sections.yourprojectcosts.form.*; import org.innovateuk.ifs.application.resource.ApplicationResource; import org.innovateuk.ifs.application.service.ApplicationRestService; import org.innovateuk...
IFS-7790 fixed validation.
ifs-web-service/ifs-application-commons/src/main/java/org/innovateuk/ifs/application/forms/sections/yourprojectcosts/validator/YourProjectCostsFormValidator.java
IFS-7790 fixed validation.
Java
mit
0a0b1a9c23d7ab7147b2f536ed473a9a7d634dfe
0
bsorrentino/maven-class-finder-plugin,basepom/duplicate-finder-maven-plugin,ning/maven-duplicate-finder-plugin,hgschmie/duplicate-finder-maven-plugin
/* * Copyright 2010 Ning, Inc. * * Ning licenses this file to you 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 applic...
src/main/java/com/ning/maven/plugins/duplicatefinder/ClasspathDescriptor.java
/* * Copyright 2010 Ning, Inc. * * Ning licenses this file to you 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 applic...
add "META-INF/PLEXUS/.*" to the list off ignored resources
src/main/java/com/ning/maven/plugins/duplicatefinder/ClasspathDescriptor.java
add "META-INF/PLEXUS/.*" to the list off ignored resources
Java
mit
32b6b31f1964f49b2854ac32e15674bb7acb28ff
0
shalomweiss/mm-system-2017,shalomweiss/mm-system-2017
package mm.da; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; import java.sql.Statement; import mm.model.Meeting; im...
src/mm/da/DataAccess.java
package mm.da; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Time; import java.util.ArrayList; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; import java.sql.Statement; impor...
/main: Auto stash before merge of "dev/main" and "origin/dev/main"
src/mm/da/DataAccess.java
/main: Auto stash before merge of "dev/main" and "origin/dev/main"
Java
mit
dab302f2911c16b7c0bfd057f676e667e9396951
0
shepeliev/AIF2,b0noI/AIF2,Hronom/AIF2,shepeliev/AIF2,Hronom/AIF2,b0noI/AIF2
package io.aif.language.semantic; import io.aif.language.semantic.weights.node.INodeWeightCalculator; import io.aif.language.semantic.weights.node.word.IWordWeightCalculator; import io.aif.language.word.IWord; import java.util.*; import java.util.stream.Collectors; class SemanticWord implements ISemanticNode<IWord> ...
src/main/java/io/aif/language/semantic/SemanticWord.java
package io.aif.language.semantic; import io.aif.language.semantic.weights.node.INodeWeightCalculator; import io.aif.language.semantic.weights.node.word.IWordWeightCalculator; import io.aif.language.word.IWord; import java.util.*; import java.util.stream.Collectors; class SemanticWord implements ISemanticNode<IWord> ...
Semantic API
src/main/java/io/aif/language/semantic/SemanticWord.java
Semantic API
Java
mit
ca53bb13c6dea55a8fa5f7cfb070f0276e4d573d
0
opennars/opennars,opennars/opennars,opennars/opennars,opennars/opennars
package nars.nario; import java.awt.event.KeyEvent; import static java.lang.Math.log; import static java.lang.Math.signum; import static java.lang.Math.signum; import java.util.ArrayList; import java.util.List; import javax.swing.SwingUtilities; import nars.core.EventEmitter.EventObserver; import nars.core.Events; imp...
nars_lab/nars/nario/NARio.java
package nars.nario; import java.awt.event.KeyEvent; import static java.lang.Math.log; import static java.lang.Math.signum; import static java.lang.Math.signum; import java.util.ArrayList; import java.util.List; import javax.swing.SwingUtilities; import nars.core.EventEmitter.EventObserver; import nars.core.Events; imp...
Since the decision making model is finally finished, the compound action in NARIO are for the fishes, they can all be learnt by using a bit of temporal inference like this example now nicely shows. Also feedback representation which was wrong is now right. (Nario never knew when it turned right so this goal was always ...
nars_lab/nars/nario/NARio.java
Since the decision making model is finally finished, the compound action in NARIO are for the fishes, they can all be learnt by using a bit of temporal inference like this example now nicely shows. Also feedback representation which was wrong is now right. (Nario never knew when it turned right so this goal was always ...
Java
mit
311edfd25acb292cded94f03e5255bbd7f93d458
0
andreacioni/sDrive
package it.andreacioni.sdrive.gui; import java.awt.Color; import java.awt.Dimension; import java.awt.datatransfer.DataFlavor; import java.awt.datatransfer.Transferable; import java.awt.datatransfer.UnsupportedFlavorException; import java.io.File; import java.io.IOException; import java.util.List; import javax.swing.J...
it.andreacioni.sdrive/src/main/java/it/andreacioni/sdrive/gui/UploadWindow.java
package it.andreacioni.sdrive.gui; import java.awt.Color; import java.awt.Dimension; import java.awt.datatransfer.DataFlavor; import java.awt.datatransfer.Transferable; import java.io.File; import java.io.IOException; import java.util.List; import javax.swing.JFrame; import javax.swing.JOptionPane; import javax.swing...
compress & upload into runnable thread
it.andreacioni.sdrive/src/main/java/it/andreacioni/sdrive/gui/UploadWindow.java
compress & upload into runnable thread
Java
mit
8605732e39579f8a4f9dc603ba8f03c0e44dbe6f
0
DevOpsDistilled/OpERP,njmube/OpERP
package devopsdistilled.operp.client.items.views; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.List; import javax.inject.Inject; import javax.swing.JButton; import javax.swing.JComboBox; import javax.swing.JComponent; import javax.swing.JLabel; import javax.swing.JOptionPa...
OpERP/src/main/java/devopsdistilled/operp/client/items/views/CreateItemPane.java
package devopsdistilled.operp.client.items.views; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.List; import javax.inject.Inject; import javax.swing.JButton; import javax.swing.JComboBox; import javax.swing.JComponent; import javax.swing.JLabel; import javax.swing.JOptionPa...
Allow only numeric value in "Price" field and invalidate Item creation with Null fields. OPEN - task 45: Creation of Item with null value for Product and Brand possible http://github.com/DevOpsDistilled/OpERP/issues/issue/45
OpERP/src/main/java/devopsdistilled/operp/client/items/views/CreateItemPane.java
Allow only numeric value in "Price" field and invalidate Item creation with Null fields.
Java
mit
707ba4567356fd2c1f15b7266763e061cf3a8be5
0
andrewthehan/infinotes,andrewthehan/infinotes,andrewthehan/jmtapi
package jmtapi.theory; import java.util.Arrays; /* * Letter with the concept of accidental */ public final class Key{ private final Letter letter; private final Accidental accidental; public Key(Letter letter){ this(letter, Accidental.NONE); } public Key(Letter letter, Accidental accidental){ t...
src/main/java/jmtapi/theory/Key.java
package jmtapi.theory; import java.util.Iterator; /* * Letter with the concept of accidental */ public final class Key{ private final Letter letter; private final Accidental accidental; public Key(Letter letter){ this(letter, Accidental.NONE); } public Key(Letter letter, Accidental accidental){ ...
Refactored Key#apply to use streams instead of iterator.
src/main/java/jmtapi/theory/Key.java
Refactored Key#apply to use streams instead of iterator.
Java
epl-1.0
db038b4e63f4010c1fecf02ab6fbd9e531082138
0
BraintagsGmbH/vertx-util
/*- * #%L * Vert.x utilities from Braintags * %% * Copyright (C) 2017 Braintags GmbH * %% * 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 available at * http://www.eclipse.or...
src/main/java/de/braintags/vertx/util/async/CachableCompositeFutureHelper.java
/*- * #%L * Vert.x utilities from Braintags * %% * Copyright (C) 2017 Braintags GmbH * %% * 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 available at * http://www.eclipse.or...
WIP draft soultion
src/main/java/de/braintags/vertx/util/async/CachableCompositeFutureHelper.java
WIP draft soultion
Java
lgpl-2.1
2c4db23bd85b0be875bfe777c3f3781c3abe6284
0
pbondoer/xwiki-platform,xwiki/xwiki-platform,pbondoer/xwiki-platform,pbondoer/xwiki-platform,xwiki/xwiki-platform,xwiki/xwiki-platform,xwiki/xwiki-platform,pbondoer/xwiki-platform,xwiki/xwiki-platform,pbondoer/xwiki-platform
/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * th...
xwiki-platform-core/xwiki-platform-user/xwiki-platform-user-profile/xwiki-platform-user-profile-test/xwiki-platform-user-profile-test-pageobjects/src/main/java/org/xwiki/user/test/po/ChangePasswordPage.java
/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * th...
[cleanup] Applied source formatting - Removed useless whitespaces
xwiki-platform-core/xwiki-platform-user/xwiki-platform-user-profile/xwiki-platform-user-profile-test/xwiki-platform-user-profile-test-pageobjects/src/main/java/org/xwiki/user/test/po/ChangePasswordPage.java
[cleanup] Applied source formatting - Removed useless whitespaces
Java
lgpl-2.1
d7d9899f86c700ec049bc950137e3254bdbaf6de
0
trejkaz/swingx,trejkaz/swingx
/* * $Id$ * * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle, * Santa Clara, California 95054, U.S.A. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Founda...
swingx-core/src/main/java/org/jdesktop/swingx/rollover/RolloverProducer.java
/* * $Id$ * * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle, * Santa Clara, California 95054, U.S.A. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Founda...
Add NPE to catch clause
swingx-core/src/main/java/org/jdesktop/swingx/rollover/RolloverProducer.java
Add NPE to catch clause
Java
unlicense
fb4be72d374bd7218c3281493ac672884f911e01
0
squeek502/EarliestOfGames
package squeek.earliestofgames.asm; import static org.objectweb.asm.Opcodes.*; import net.minecraft.launchwrapper.IClassTransformer; import org.objectweb.asm.ClassReader; import org.objectweb.asm.ClassWriter; import org.objectweb.asm.tree.*; import org.objectweb.asm.tree.AbstractInsnNode; import org.objectweb.asm.tree...
java/squeek/earliestofgames/asm/ClassTransformer.java
package squeek.earliestofgames.asm; import static org.objectweb.asm.Opcodes.*; import net.minecraft.launchwrapper.IClassTransformer; import org.objectweb.asm.ClassReader; import org.objectweb.asm.ClassWriter; import org.objectweb.asm.tree.*; import org.objectweb.asm.tree.AbstractInsnNode; import org.objectweb.asm.tree...
15 minute autocommit (05/17/14 14:07:51) M java/squeek/earliestofgames/asm/ClassTransformer.java
java/squeek/earliestofgames/asm/ClassTransformer.java
15 minute autocommit (05/17/14 14:07:51)
Java
apache-2.0
e8ed36f687587d74be1f104dcfaddb4021c3b96e
0
caelum/vraptor4,caelum/vraptor4,caelum/vraptor4,khajavi/vraptor4,khajavi/vraptor4,clebersonpp/vraptor4,tempbottle/vraptor4,tempbottle/vraptor4,Knoobie/vraptor4,danilomunoz/vraptor4,tempbottle/vraptor4,khajavi/vraptor4,felipeweb/vraptor4,caelum/vraptor4,tempbottle/vraptor4,danilomunoz/vraptor4,michelmedeiros/vraptor4,kh...
/*** * Copyright (c) 2009 Caelum - www.caelum.com.br/opensource 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 *...
vraptor-core/src/main/java/br/com/caelum/vraptor/validator/I18nParam.java
/*** * Copyright (c) 2009 Caelum - www.caelum.com.br/opensource 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 *...
implementing equals and hashcode on i18nparam
vraptor-core/src/main/java/br/com/caelum/vraptor/validator/I18nParam.java
implementing equals and hashcode on i18nparam
Java
apache-2.0
7a5bbf3847b477221dfbf95a845af22a095bccff
0
kole9273/uPortal,andrewstuart/uPortal,ASU-Capstone/uPortal-Forked,GIP-RECIA/esco-portail,vbonamy/esup-uportal,timlevett/uPortal,kole9273/uPortal,phillips1021/uPortal,andrewstuart/uPortal,vbonamy/esup-uportal,timlevett/uPortal,jameswennmacher/uPortal,EsupPortail/esup-uportal,jameswennmacher/uPortal,EsupPortail/esup-upor...
/** * Copyright 2007 The JA-SIG Collaborative. All rights reserved. * See license distributed with this file and * available online at http://www.uportal.org/license.html */ package org.jasig.portal.utils; import java.util.List; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; i...
uportal-impl/src/test/java/org/jasig/portal/utils/PooledCounterStoreTest.java
/** * Copyright 2007 The JA-SIG Collaborative. All rights reserved. * See license distributed with this file and * available online at http://www.uportal.org/license.html */ package org.jasig.portal.utils; import java.util.List; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; i...
NOJIRA disable multi-threaded tests since the HSQL test DB isn't transactional git-svn-id: 477788cc2a8229a747c5b8073e47c1d0f6ec0604@16103 f5dbab47-78f9-eb45-b975-e544023573eb
uportal-impl/src/test/java/org/jasig/portal/utils/PooledCounterStoreTest.java
NOJIRA disable multi-threaded tests since the HSQL test DB isn't transactional
Java
apache-2.0
96109e142ecb1e01f8c13e0bfdc8a422202d8e63
0
reactor/reactor-netty,reactor/reactor-netty
/* * Copyright (c) 2011-2016 Pivotal Software 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 * * Unles...
src/main/java/reactor/ipc/netty/http/HttpOperations.java
/* * Copyright (c) 2011-2016 Pivotal Software 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 * * Unles...
fix header sent
src/main/java/reactor/ipc/netty/http/HttpOperations.java
fix header sent
Java
apache-2.0
c3c9674f65ace8c7cd4443595d4679cec7fe4daa
0
fitermay/intellij-community,muntasirsyed/intellij-community,ibinti/intellij-community,ryano144/intellij-community,semonte/intellij-community,SerCeMan/intellij-community,ThiagoGarciaAlves/intellij-community,alphafoobar/intellij-community,retomerz/intellij-community,samthor/intellij-community,izonder/intellij-community,x...
package com.intellij.lang.ant.config.impl; import com.intellij.execution.RunManager; import com.intellij.execution.configurations.ConfigurationType; import com.intellij.execution.configurations.RunConfiguration; import com.intellij.ide.DataAccessor; import com.intellij.lang.ant.AntBundle; import com.intellij.lang.ant....
plugins/ant/src/com/intellij/lang/ant/config/impl/AntConfigurationImpl.java
package com.intellij.lang.ant.config.impl; import com.intellij.execution.RunManager; import com.intellij.execution.configurations.ConfigurationType; import com.intellij.execution.configurations.RunConfiguration; import com.intellij.ide.DataAccessor; import com.intellij.lang.ant.AntBundle; import com.intellij.lang.ant....
mark loaded build files as ant files
plugins/ant/src/com/intellij/lang/ant/config/impl/AntConfigurationImpl.java
mark loaded build files as ant files
Java
apache-2.0
5cdc31298af23253b972c67bf92e7e1ae7d00123
0
netsense-sas/couchbase-lite-android,cesine/couchbase-lite-android,0359xiaodong/couchbase-lite-android,netsense-sas/couchbase-lite-android,netsense-sas/couchbase-lite-android,vladoatanasov/couchbase-lite-android,vladoatanasov/couchbase-lite-android,couchbase/couchbase-lite-android,msdgwzhy6/couchbase-lite-android,netsen...
package com.couchbase.cblite.testapp.tests; import java.io.IOException; import java.io.StringWriter; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import junit.framework.Assert; import android.util.Log; import com.couchbase.cblite.CBLBody; import com.couchbase.cbl...
java/com/couchbase/cblite/testapp/tests/Router.java
package com.couchbase.cblite.testapp.tests; import java.io.IOException; import java.io.StringWriter; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import junit.framework.Assert; import android.util.Log; import com.couchbase.cblite.CBLBody; import com.couchbase.cbl...
Implement persona_assertion for issue #56
java/com/couchbase/cblite/testapp/tests/Router.java
Implement persona_assertion for issue #56
Java
apache-2.0
3778bacb1b7fc2f1bfd213903e7b02d59c1316fc
0
ontopia/ontopia,ontopia/ontopia,ontopia/ontopia,ontopia/ontopia,ontopia/ontopia
/* * #! * Ontopia Rest * #- * Copyright (C) 2001 - 2016 The Ontopia Project * #- * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 ...
ontopia-rest/src/test/java/net/ontopia/topicmaps/rest/AbstractResourceTest.java
/* * #! * Ontopia Rest * #- * Copyright (C) 2001 - 2016 The Ontopia Project * #- * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 ...
Added utility method
ontopia-rest/src/test/java/net/ontopia/topicmaps/rest/AbstractResourceTest.java
Added utility method
Java
apache-2.0
98f1a06ccd4c37620cf79cd64392fe7cc180716e
0
allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/int...
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.openapi.vfs.newvfs; import com.intellij.openapi.application.ReadAction; import com.intellij.openapi.util.Pair; import com.intellij.openapi.util.SystemInfo; i...
platform/platform-impl/src/com/intellij/openapi/vfs/newvfs/RefreshWorker.java
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.openapi.vfs.newvfs; import com.intellij.openapi.application.ReadAction; import com.intellij.openapi.util.Pair; import com.intellij.openapi.util.SystemInfo; i...
Cleanup (formatting) GitOrigin-RevId: 8d76c0a782e1aec556f367b63aa797535158409f
platform/platform-impl/src/com/intellij/openapi/vfs/newvfs/RefreshWorker.java
Cleanup (formatting)
Java
apache-2.0
99ab50b56165015a503fdcd0fd69227079e707a3
0
DBCG/cql_measure_processor,DBCG/cqf-ruler,DBCG/cql_measure_processor,DBCG/cqf-ruler,DBCG/cqf-ruler
package org.opencds.cqf.r4.providers; import ca.uhn.fhir.jpa.rp.r4.BundleResourceProvider; import ca.uhn.fhir.rest.annotation.IdParam; import ca.uhn.fhir.rest.annotation.Operation; import ca.uhn.fhir.rest.annotation.OperationParam; import org.apache.commons.lang3.tuple.Pair; import org.cqframework.cql.cql2elm.LibraryM...
r4/src/main/java/org/opencds/cqf/r4/providers/FHIRBundleResourceProvider.java
package org.opencds.cqf.r4.providers; import ca.uhn.fhir.jpa.rp.r4.BundleResourceProvider; import ca.uhn.fhir.rest.annotation.IdParam; import ca.uhn.fhir.rest.annotation.Operation; import ca.uhn.fhir.rest.annotation.OperationParam; import javafx.util.Pair; import org.cqframework.cql.cql2elm.LibraryManager; import org....
Update FHIRBundleResourceProvider.java
r4/src/main/java/org/opencds/cqf/r4/providers/FHIRBundleResourceProvider.java
Update FHIRBundleResourceProvider.java
Java
apache-2.0
8b516fd22b8000f72c5c3defc0c282817c1c516e
0
novoda/download-manager
package com.novoda.downloadmanager; import org.junit.Test; import static com.google.common.truth.Truth.assertThat; import static com.novoda.downloadmanager.NetworkRequestFixtures.aNetworkRequest; public class NetworkRequestCreatorTest { private final NetworkRequestCreator networkRequestCreator = new NetworkRequ...
library/src/test/java/com/novoda/downloadmanager/NetworkRequestCreatorTest.java
package com.novoda.downloadmanager; import org.junit.Test; import static com.google.common.truth.Truth.assertThat; import static com.novoda.downloadmanager.NetworkRequestFixtures.aNetworkRequest; public class NetworkRequestCreatorTest { private final NetworkRequestCreator networkRequestCreator = new NetworkRequ...
Update library/src/test/java/com/novoda/downloadmanager/NetworkRequestCreatorTest.java Co-Authored-By: zegnus <94dd5d1b30f4b2f25d2ad213c72ed2af0bcb81b8@gmail.com>
library/src/test/java/com/novoda/downloadmanager/NetworkRequestCreatorTest.java
Update library/src/test/java/com/novoda/downloadmanager/NetworkRequestCreatorTest.java
Java
apache-2.0
bf2b3bf25ed041e604ee11138037a1a1a001c548
0
nmcl/scratch,nmcl/scratch,nmcl/scratch,nmcl/scratch,nmcl/scratch,nmcl/scratch,nmcl/scratch,nmcl/scratch,nmcl/scratch,nmcl/scratch,nmcl/scratch,nmcl/scratch
import java.util.*; public class Bag { public Bag (String type) { this(type, 0); } public Bag (String type, int quantity) { _type = type.trim(); _quantity = quantity; _contains = new Vector<Bag>(); } public void add (Bag b) { _contains.add(b...
AdventOfCode/2020/day7/Bag.java
import java.util.*; public class Bag { public Bag (String type) { this(type, 0); } public Bag (String type, int quantity) { _type = type.trim(); _quantity = quantity; _contains = new Vector<Bag>(); } public void add (Bag b) { _contains.add(b...
Update Bag.java
AdventOfCode/2020/day7/Bag.java
Update Bag.java
Java
apache-2.0
ce47bc3f448a73613dfa435189f7f13117fc69b0
0
kantega/Flyt-cms,kantega/Flyt-cms,kantega/Flyt-cms
/* * Copyright 2009 Kantega AS * * 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...
modules/core/src/java/no/kantega/publishing/common/data/enums/ExpireAction.java
/* * Copyright 2009 Kantega AS * * 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...
AP-969 Comment previous value for ExpireAction git-svn-id: 8def386c603904b39326d3fc08add479b8279298@4849 fd808399-8219-4f14-9d4c-37719d9ec93d
modules/core/src/java/no/kantega/publishing/common/data/enums/ExpireAction.java
AP-969 Comment previous value for ExpireAction
Java
apache-2.0
0f7f4276138131a4609dc7e1be96cb0e301818fe
0
dimone-kun/cuba,dimone-kun/cuba,dimone-kun/cuba,cuba-platform/cuba,cuba-platform/cuba,cuba-platform/cuba
/* * Copyright (c) 2011 Haulmont Technology Ltd. All Rights Reserved. * Haulmont Technology proprietary and confidential. * Use is subject to license terms. */ package com.haulmont.cuba.gui.data.impl; import com.haulmont.chile.core.model.MetaClass; import com.haulmont.chile.core.model.MetaProperty; impo...
modules/gui/src/com/haulmont/cuba/gui/data/impl/RuntimePropsDatasourceImpl.java
/* * Copyright (c) 2011 Haulmont Technology Ltd. All Rights Reserved. * Haulmont Technology proprietary and confidential. * Use is subject to license terms. */ package com.haulmont.cuba.gui.data.impl; import com.haulmont.chile.core.model.MetaClass; import com.haulmont.chile.core.model.MetaProperty; impo...
Refactor datasources layer (fix RuntimePropsDatasource) #PL-1772
modules/gui/src/com/haulmont/cuba/gui/data/impl/RuntimePropsDatasourceImpl.java
Refactor datasources layer (fix RuntimePropsDatasource) #PL-1772
Java
apache-2.0
57c61e8bfd158cddc9a7c6b284cad2d19a44926a
0
franziskas/social-network-exercise
package commands; import static commands.CommandParameterBuilder.aCommand; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import static timeline.builder.WallOutputBuilder.aWallOutput; import org.junit.Before; import org.junit.Test; import tim...
src/test/java/commands/ObservableCommandTest.java
package commands; import static commands.CommandParameterBuilder.aCommand; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import static timeline.builder.WallOutputBuilder.aWallOutput; import org.junit.Test; import timeline.Output; import appl...
Refactoring: removed duplication
src/test/java/commands/ObservableCommandTest.java
Refactoring: removed duplication
Java
apache-2.0
ec7cd8509c47c9e10d154a898bff27e7b368d296
0
tempbottle/stream-lib,tempbottle/stream-lib,orneryhippo/stream-lib,cykl/stream-lib,oertl/stream-lib,smartpcr/stream-lib,joychugh/stream-lib,smartpcr/stream-lib,cykl/stream-lib,orneryhippo/stream-lib,joychugh/stream-lib,oertl/stream-lib
/* * Copyright (C) 2011 Clearspring Technologies, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicab...
src/test/java/com/clearspring/analytics/stream/cardinality/TestHyperLogLog.java
/* * Copyright (C) 2011 Clearspring Technologies, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicab...
ignore expensive test that shouldn't be run on each build
src/test/java/com/clearspring/analytics/stream/cardinality/TestHyperLogLog.java
ignore expensive test that shouldn't be run on each build
Java
apache-2.0
3c7b107386a10a2ad2a2e8b808547ee0a39dfa96
0
googleinterns/sgonks,googleinterns/sgonks,googleinterns/sgonks,googleinterns/sgonks
/* * Copyright 2021 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 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in wr...
project/src/main/java/com/google/sps/database/ConnectionPoolContextListener.java
/* * Copyright 2021 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 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in wr...
Add new columns to Cloud SQL db
project/src/main/java/com/google/sps/database/ConnectionPoolContextListener.java
Add new columns to Cloud SQL db
Java
apache-2.0
cebc58cd7f35b34d6a7cd176ebfe2aebb27f513e
0
apache/camel,objectiser/camel,christophd/camel,w4tson/camel,onders86/camel,bhaveshdt/camel,drsquidop/camel,jonmcewen/camel,anton-k11/camel,lburgazzoli/apache-camel,jmandawg/camel,nikvaessen/camel,jkorab/camel,davidkarlsen/camel,kevinearls/camel,ullgren/camel,w4tson/camel,tkopczynski/camel,yuruki/camel,jkorab/camel,tdie...
/** * 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...
components/camel-rx/src/main/java/org/apache/camel/rx/support/ObserverSender.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...
Do not use deprecated api
components/camel-rx/src/main/java/org/apache/camel/rx/support/ObserverSender.java
Do not use deprecated api
Java
bsd-3-clause
126802874ffba52de3d0937f3d3968431c064f3f
0
BeeeOn/android,BeeeOn/android,BeeeOn/android
package com.rehivetech.beeeon.household.device; import com.rehivetech.beeeon.IIdentifier; import java.util.Map.Entry; import java.util.SortedMap; import java.util.TreeMap; import org.joda.time.Interval; /** * Represents history of values for device. */ public class DeviceLog { private SortedMap<Long, Float> mVal...
BeeeOn/app/src/main/java/com/rehivetech/beeeon/household/device/DeviceLog.java
package com.rehivetech.beeeon.household.device; import com.rehivetech.beeeon.IIdentifier; import java.util.Map.Entry; import java.util.SortedMap; import java.util.TreeMap; import org.joda.time.Interval; /** * Represents history of values for device. */ public class DeviceLog { private SortedMap<Long, Float> mVal...
Add more DataInterval aggregation types
BeeeOn/app/src/main/java/com/rehivetech/beeeon/household/device/DeviceLog.java
Add more DataInterval aggregation types
Java
apache-2.0
82264c048bdd1b881966c0ee6f94bd7948f420c9
0
universsky/mina,apache/mina,Vicky01200059/mina,apache/mina,yangzhongj/mina,mway08/mina,dongjiaqiang/mina,dongjiaqiang/mina,jeffmaury/mina,yangzhongj/mina,weijiangzhu/mina,Vicky01200059/mina,mway08/mina,universsky/mina,weijiangzhu/mina
core/src/main/java/org/apache/mina/filter/executor/ExecutorFilterMBean.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")...
Removed a unused class git-svn-id: b7022df5c975f24f6cce374a8cf09e1bba3b7a2e@555178 13f79535-47bb-0310-9956-ffa450edef68
core/src/main/java/org/apache/mina/filter/executor/ExecutorFilterMBean.java
Removed a unused class
Java
apache-2.0
326f471b61bdd3c438b3e79bee0e4a615673fd81
0
Mofin52/java_education
task_001_01/src/ru/avelikorechin/Calculate.java
package ru.avelikorechin; public class Calculate{ public static void main (String[] args){ System.out.println("Hello, World!"); } }
Removed first task from the root directory
task_001_01/src/ru/avelikorechin/Calculate.java
Removed first task from the root directory
Java
mit
5750e0a00de213c5af58404207dfe0b8a00e94b9
0
episode6/typed
package com.episode6.hackit.typed.bundles; import android.content.Intent; import android.os.Bundle; import com.episode6.hackit.typed.core.util.*; import com.google.gson.Gson; import javax.annotation.Nullable; import java.util.HashMap; import java.util.Map; /** * Utility class for createing {@link TypedBundle}s */ ...
typed-bundles/src/main/java/com/episode6/hackit/typed/bundles/TypedBundles.java
package com.episode6.hackit.typed.bundles; import android.content.Intent; import android.os.Bundle; import com.episode6.hackit.typed.core.util.*; import com.google.gson.Gson; import javax.annotation.Nullable; import java.util.HashMap; import java.util.Map; /** * Utility class for createing {@link TypedBundle}s */ ...
Add a way to replace the default TypedBundle factory with whatever you want (like a mock) which should be useful for testing
typed-bundles/src/main/java/com/episode6/hackit/typed/bundles/TypedBundles.java
Add a way to replace the default TypedBundle factory with whatever you want (like a mock) which should be useful for testing
Java
mit
a5f8e349a33f563d05e2d4dc5c9c66157aab909f
0
Pante/Karus-Commons
/* * The MIT License * * Copyright 2018 Karus Labs. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modi...
commons/src/main/java/com/karuslabs/commons/io/generator/generators/Unstringifier.java
/* * The MIT License * * Copyright 2018 Karus Labs. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modi...
Fixed unanchored node
commons/src/main/java/com/karuslabs/commons/io/generator/generators/Unstringifier.java
Fixed unanchored node
Java
mit
07a0b292f5fbf93b1bb3455c13e40596fb5486c1
0
PeteGoo/tcSlackBuildNotifier,PeteGoo/tcSlackBuildNotifier
package slacknotifications; import com.google.gson.Gson; import jetbrains.buildServer.util.StringUtil; import org.apache.http.HttpResponse; import org.apache.http.HttpStatus; import org.apache.http.NameValuePair; import org.apache.http.auth.AuthScope; import org.apache.http.auth.Credentials; import org.apache.http.cli...
tcslackbuildnotifier-core/src/main/java/slacknotifications/SlackNotificationImpl.java
package slacknotifications; import com.google.gson.Gson; import jetbrains.buildServer.util.StringUtil; import org.apache.http.HttpResponse; import org.apache.http.HttpStatus; import org.apache.http.NameValuePair; import org.apache.http.auth.AuthScope; import org.apache.http.auth.Credentials; import org.apache.http.cli...
Set `as_user` to false So `username` & `icon_url` are not ignored
tcslackbuildnotifier-core/src/main/java/slacknotifications/SlackNotificationImpl.java
Set `as_user` to false
Java
mit
728be6f12cb6e06584ca95f5a12ef6972e27aabe
0
felipexpert/lottoway
package br.com.felipeAplicativos.logica.rede; import java.io.IOException; import java.io.ObjectOutputStream; import java.net.ServerSocket; import java.net.Socket; import java.util.ArrayList; import java.util.List; public class Servidor { private List<ObjectOutputStream> oosList = new ArrayList<>(); ...
src/br/com/felipeAplicativos/logica/rede/Servidor.java
package br.com.felipeAplicativos.logica.rede; import java.io.IOException; import java.io.ObjectOutputStream; import java.net.ServerSocket; import java.net.Socket; import java.util.ArrayList; import java.util.List; public class Servidor { private List<ObjectOutputStream> oosList = new ArrayList<>(); ...
minor changes
src/br/com/felipeAplicativos/logica/rede/Servidor.java
minor changes
Java
mpl-2.0
42b9ebc51c75e1ac3468fb2faf936ca3d555ae24
0
GreenDelta/olca-modules,GreenDelta/olca-modules,GreenDelta/olca-modules
package org.openlca.git; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.nio.file.Files; import java.util.Arrays; import java.util.HashMap; import java.util.List; import ja...
olca-git/src/main/java/org/openlca/git/ObjectIdStore.java
package org.openlca.git; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.nio.file.Files; import java.util.Arrays; import java.util.HashMap; import java.util.List; import ja...
Distinguish between invalidating for workspace and removing from head
olca-git/src/main/java/org/openlca/git/ObjectIdStore.java
Distinguish between invalidating for workspace and removing from head
Java
agpl-3.0
4d0d40e0ae60728402823b4e9d15f3ae998c08fa
0
bhutchinson/kfs,kkronenb/kfs,UniversityOfHawaii/kfs,quikkian-ua-devops/kfs,UniversityOfHawaii/kfs,quikkian-ua-devops/will-financials,quikkian-ua-devops/will-financials,smith750/kfs,ua-eas/kfs-devops-automation-fork,smith750/kfs,UniversityOfHawaii/kfs,quikkian-ua-devops/kfs,quikkian-ua-devops/will-financials,ua-eas/kfs,...
/* * Copyright 2010 The Kuali Foundation. * * Licensed under the Educational Community License, Version 1.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/ecl1.php * * Unless requir...
work/src/org/kuali/kfs/module/endow/businessobject/EndowmentTransactionLineBase.java
/* * Copyright 2010 The Kuali Foundation. * * Licensed under the Educational Community License, Version 1.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/ecl1.php * * Unless requir...
initialize taxLotLines collection references.
work/src/org/kuali/kfs/module/endow/businessobject/EndowmentTransactionLineBase.java
initialize taxLotLines collection references.
Java
apache-2.0
46118c87198ff77af08a94c2a07d8f8537d7d60a
0
indvd00m/java-ascii-render
package com.indvd00m.ascii.render.elements.plot; import com.indvd00m.ascii.render.Point; import com.indvd00m.ascii.render.api.ICanvas; import com.indvd00m.ascii.render.api.IContext; import com.indvd00m.ascii.render.api.IPoint; import com.indvd00m.ascii.render.api.IRegion; import com.indvd00m.ascii.render.elements.plot...
ascii-render/src/main/java/com/indvd00m/ascii/render/elements/plot/AxisLabels.java
package com.indvd00m.ascii.render.elements.plot; import com.indvd00m.ascii.render.Point; import com.indvd00m.ascii.render.api.ICanvas; import com.indvd00m.ascii.render.api.IContext; import com.indvd00m.ascii.render.api.IPoint; import com.indvd00m.ascii.render.api.IRegion; import com.indvd00m.ascii.render.elements.plot...
Renames
ascii-render/src/main/java/com/indvd00m/ascii/render/elements/plot/AxisLabels.java
Renames
Java
apache-2.0
e2f150712011a6f5516c4d7d458cf4e204bbf650
0
mbhk/barcode4j-modified,mbhk/barcode4j-modified
/* * Copyright 2002-2007 Jeremias Maerki or contributors to Barcode4J, as applicable * * 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...
barcode4j-servlet/src/main/java/org/krysalis/barcode4j/servlet/BarcodeServlet.java
/* * Copyright 2002-2007 Jeremias Maerki or contributors to Barcode4J, as applicable * * 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...
Throwable & Exception catch removed
barcode4j-servlet/src/main/java/org/krysalis/barcode4j/servlet/BarcodeServlet.java
Throwable & Exception catch removed
Java
apache-2.0
0b5eddc38a566b2c83cc30aff5a1b9f679efdad0
0
ankitsinghal/phoenix,ankitsinghal/phoenix,growingio/phoenix,apurtell/phoenix,apurtell/phoenix,growingio/phoenix,apache/phoenix,ankitsinghal/phoenix,apurtell/phoenix,growingio/phoenix,ankitsinghal/phoenix,growingio/phoenix,apache/phoenix,apache/phoenix,growingio/phoenix,ankitsinghal/phoenix,apache/phoenix,apurtell/phoen...
/* * 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 ...
phoenix-core/src/main/java/org/apache/phoenix/mapreduce/index/IndexUpgradeTool.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 ...
PHOENIX-5415: NPE in getting conf from addHbaseResources in IndexUpgradeTool
phoenix-core/src/main/java/org/apache/phoenix/mapreduce/index/IndexUpgradeTool.java
PHOENIX-5415: NPE in getting conf from addHbaseResources in IndexUpgradeTool
Java
apache-2.0
81a7b281ebf59f82befb0b04586e367ff4b06a1f
0
mohanaraosv/commons-compress,lookout/commons-compress,apache/commons-compress,lookout/commons-compress,apache/commons-compress,krosenvold/commons-compress,mohanaraosv/commons-compress,krosenvold/commons-compress,lookout/commons-compress,krosenvold/commons-compress,apache/commons-compress,mohanaraosv/commons-compress
/* * 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 ...
src/main/java/org/apache/commons/compress/compressors/z/ZCompressorInputStream.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 ...
Some cleanups to ZCompressorInputStream. git-svn-id: fb13a56e2874bbe7f090676f40e1dce4dcf67111@1546813 13f79535-47bb-0310-9956-ffa450edef68
src/main/java/org/apache/commons/compress/compressors/z/ZCompressorInputStream.java
Some cleanups to ZCompressorInputStream.
Java
apache-2.0
0b4954b1eac816cee5a493404f674f778ebb6429
0
ejlchina/bean-searcher,ejlchina/bean-searcher,ejlchina/bean-searcher,ejlchina/bean-searcher
package com.ejlchina.searcher.implement; import com.ejlchina.searcher.*; import com.ejlchina.searcher.bean.SearchBean; import com.ejlchina.searcher.util.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.sql.DataSource; import java.sql.Connection; import java.sql.PreparedStatement; imp...
bean-searcher/src/main/java/com/ejlchina/searcher/implement/DefaultSqlExecutor.java
package com.ejlchina.searcher.implement; import com.ejlchina.searcher.*; import com.ejlchina.searcher.bean.SearchBean; import com.ejlchina.searcher.util.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.sql.DataSource; import java.sql.Connection; import java.sql.PreparedStatement; imp...
优化 sql 日志
bean-searcher/src/main/java/com/ejlchina/searcher/implement/DefaultSqlExecutor.java
优化 sql 日志
Java
apache-2.0
cbab4190931af2f28935fd7b3503e2c78efaed79
0
codescale/logging-log4j2,lqbweb/logging-log4j2,ChetnaChaudhari/logging-log4j2,codescale/logging-log4j2,xnslong/logging-log4j2,lburgazzoli/logging-log4j2,renchunxiao/logging-log4j2,lburgazzoli/logging-log4j2,GFriedrich/logging-log4j2,lqbweb/logging-log4j2,GFriedrich/logging-log4j2,lburgazzoli/logging-log4j2,MagicWiz/log...
/* * 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 n...
log4j-api/src/main/java/org/apache/logging/log4j/spi/DefaultThreadContextStack.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 n...
Null comparison always yields false, so return false.
log4j-api/src/main/java/org/apache/logging/log4j/spi/DefaultThreadContextStack.java
Null comparison always yields false, so return false.
Java
apache-2.0
ce58fa760367cb96b2188576b8bb409ded7247d5
0
chenxiuyang/onos,opennetworkinglab/onos,oeeagle/onos,planoAccess/clonedONOS,CNlukai/onos-gerrit-test,maheshraju-Huawei/actn,LorenzReinhart/ONOSnew,zsh2938/onos,osinstom/onos,jmiserez/onos,lsinfo3/onos,kkkane/ONOS,y-higuchi/onos,sonu283304/onos,lsinfo3/onos,chenxiuyang/onos,sdnwiselab/onos,kuujo/onos,sonu283304/onos,osi...
package org.onlab.onos.store.device.impl; import com.google.common.base.Optional; import com.google.common.cache.LoadingCache; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; import com.google.common.collect.ImmutableSet.Builder; import com.hazelcast.core.IMap; import com...
core/store/src/main/java/org/onlab/onos/store/device/impl/DistributedDeviceStore.java
package org.onlab.onos.store.device.impl; import com.google.common.base.Optional; import com.google.common.cache.LoadingCache; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; import com.google.common.collect.ImmutableSet.Builder; import com.hazelcast.core.IMap; import com...
populate DevicePorts on activate Change-Id: If716b27fb13dcd64021cf56a0a49b76bc2258a5e
core/store/src/main/java/org/onlab/onos/store/device/impl/DistributedDeviceStore.java
populate DevicePorts on activate
Java
apache-2.0
3833b3dcd50cb138325ef24187ec9da6cefc0080
0
allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/intellij-community,allotria/int...
// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.notification; import com.intellij.icons.AllIcons; import com.intellij.notification.impl.NotificationsConfigurable; import com.intellij.openapi.actionSystem.*...
platform/platform-impl/src/com/intellij/notification/EventLogToolWindowFactory.java
// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.notification; import com.intellij.icons.AllIcons; import com.intellij.notification.impl.NotificationsConfigurable; import com.intellij.notification.impl.Noti...
IDEA-182878 Remove rarely used icon from Messages and Event Log toolbars
platform/platform-impl/src/com/intellij/notification/EventLogToolWindowFactory.java
IDEA-182878 Remove rarely used icon from Messages and Event Log toolbars
Java
apache-2.0
620e21c98fa9a1058e96e9a7b32a67cd4d42d56d
0
jmsalcido/my-flights,jmsalcido/my-flights,jmsalcido/my-flights
package com.nearsoft.myflights.controllers; import com.nearsoft.myflights.model.Reservation; import com.nearsoft.myflights.model.ReservationRequest; import com.nearsoft.myflights.service.ReservationService; import com.nearsoft.myflights.util.JsonUtils; import org.apache.commons.logging.Log; import org.apache.commons.l...
project/src/main/java/com/nearsoft/myflights/controllers/ReservationController.java
package com.nearsoft.myflights.controllers; import com.nearsoft.myflights.model.Reservation; import com.nearsoft.myflights.model.ReservationRequest; import com.nearsoft.myflights.service.ReservationService; import com.nearsoft.myflights.util.JsonUtils; import org.apache.commons.logging.Log; import org.apache.commons.l...
Adding some logging information to the ReservationController GET method to log the user inputs
project/src/main/java/com/nearsoft/myflights/controllers/ReservationController.java
Adding some logging information to the ReservationController GET method to log the user inputs
Java
apache-2.0
e6e6c2d91e0e8b6549b5eda8973e5f3c150a7774
0
kamaci/gora,kamaci/gora,apache/gora,apache/gora,apache/gora,alfonsonishikawa/gora,alfonsonishikawa/gora,kamaci/gora,alfonsonishikawa/gora
/** * 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...
gora-hbase/src/test/java/org/apache/gora/hbase/mapreduce/TestHBaseStoreWordCount.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...
Fix HBase Store Flink
gora-hbase/src/test/java/org/apache/gora/hbase/mapreduce/TestHBaseStoreWordCount.java
Fix HBase Store Flink
Java
apache-2.0
b0d5486d2bd8491457df9affdbfc17203b6b5da6
0
dimone-kun/cuba,dimone-kun/cuba,cuba-platform/cuba,cuba-platform/cuba,dimone-kun/cuba,cuba-platform/cuba
/* * Copyright (c) 2008-2013 Haulmont. All rights reserved. * Use is subject to license terms, see http://www.cuba-platform.com/license for details. */ package com.haulmont.cuba.desktop.gui.components; import ca.odell.glazedlists.BasicEventList; import ca.odell.glazedlists.matchers.TextMatcherEditor; impo...
modules/desktop/src/com/haulmont/cuba/desktop/gui/components/DesktopLookupField.java
/* * Copyright (c) 2008-2013 Haulmont. All rights reserved. * Use is subject to license terms, see http://www.cuba-platform.com/license for details. */ package com.haulmont.cuba.desktop.gui.components; import ca.odell.glazedlists.BasicEventList; import ca.odell.glazedlists.matchers.TextMatcherEditor; impo...
Null Option is not visible after screen loading #PL-6134
modules/desktop/src/com/haulmont/cuba/desktop/gui/components/DesktopLookupField.java
Null Option is not visible after screen loading #PL-6134
Java
apache-2.0
dccc2f4508a86389b1cdf2cb943114b622516040
0
kool79/intellij-community,jagguli/intellij-community,clumsy/intellij-community,fitermay/intellij-community,MichaelNedzelsky/intellij-community,ol-loginov/intellij-community,suncycheng/intellij-community,lucafavatella/intellij-community,wreckJ/intellij-community,wreckJ/intellij-community,ol-loginov/intellij-community,pe...
/* * 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...
platform/platform-impl/src/com/intellij/openapi/project/impl/ProjectManagerImpl.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...
IDEA-61938 Libraries configuration is kept if switching branches
platform/platform-impl/src/com/intellij/openapi/project/impl/ProjectManagerImpl.java
IDEA-61938 Libraries configuration is kept if switching branches
Java
apache-2.0
3a159a1b61c4d0cbb817ef528358df5fd0995456
0
ralscha/eds-starter6-mongodb,ralscha/eds-starter6-mongodb,ralscha/eds-starter6-mongodb
package ch.rasc.eds.starter.entity; import java.util.Date; import java.util.List; import org.hibernate.validator.constraints.Email; import org.hibernate.validator.constraints.NotBlank; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackso...
src/main/java/ch/rasc/eds/starter/entity/User.java
package ch.rasc.eds.starter.entity; import java.util.Date; import java.util.List; import org.hibernate.validator.constraints.Email; import org.hibernate.validator.constraints.NotBlank; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackso...
Email is mandatory. Needed for login
src/main/java/ch/rasc/eds/starter/entity/User.java
Email is mandatory. Needed for login
Java
apache-2.0
226e9a7eaa47a074ca4bb9f2ebcabb45317f9997
0
ajordens/orca,ttomsu/orca,ttomsu/orca,cfieber/orca,ajordens/orca,cfieber/orca,duftler/orca,ajordens/orca,spinnaker/orca,spinnaker/orca,robfletcher/orca,ajordens/orca,cfieber/orca,duftler/orca,duftler/orca,robfletcher/orca,ttomsu/orca,robfletcher/orca,duftler/orca,ttomsu/orca,cfieber/orca,spinnaker/orca,robfletcher/orca
/* * Copyright 2017 Google, Inc. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
orca-core/src/main/java/com/netflix/spinnaker/orca/pipeline/util/ArtifactResolver.java
/* * Copyright 2017 Google, Inc. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
fix(trigger): Remove redundant parsing of artifacts
orca-core/src/main/java/com/netflix/spinnaker/orca/pipeline/util/ArtifactResolver.java
fix(trigger): Remove redundant parsing of artifacts
Java
apache-2.0
808c78aeca6590eda39a08277f30d0377b55625f
0
sahb1239/PLC-,sahb1239/PLC-,sahb1239/PLC-
package dk.aau.sw402F15.CodeGenerator; import dk.aau.sw402F15.Symboltable.Scope; import dk.aau.sw402F15.Symboltable.ScopeDepthFirstAdapter; import dk.aau.sw402F15.Symboltable.Symbol; import dk.aau.sw402F15.Symboltable.SymbolArray; import dk.aau.sw402F15.Symboltable.Type.SymbolType; import dk.aau.sw402F15.parser.node.*...
PLC++/src/dk/aau/sw402F15/CodeGenerator/CodeGenerator.java
package dk.aau.sw402F15.CodeGenerator; import dk.aau.sw402F15.Symboltable.Scope; import dk.aau.sw402F15.Symboltable.ScopeDepthFirstAdapter; import dk.aau.sw402F15.Symboltable.Symbol; import dk.aau.sw402F15.Symboltable.Type.SymbolType; import dk.aau.sw402F15.parser.node.*; import sun.reflect.generics.reflectiveObjects....
Added base structure for arrays
PLC++/src/dk/aau/sw402F15/CodeGenerator/CodeGenerator.java
Added base structure for arrays
Java
apache-2.0
f03bc0c7dd389cf36d981d40b3f7ddcdd47b3b3f
0
yangfuhai/jboot,yangfuhai/jboot
/** * Copyright (c) 2015-2021, Michael Yang 杨福海 (fuhai999@gmail.com). * <p> * 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 * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * U...
src/main/java/io/jboot/test/MockMvcResult.java
/** * Copyright (c) 2015-2021, Michael Yang 杨福海 (fuhai999@gmail.com). * <p> * 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 * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * U...
optimize...
src/main/java/io/jboot/test/MockMvcResult.java
optimize...
Java
apache-2.0
cfa962be29e1c85d0e9662e4b8d32e756d66e297
0
EventFahrplan/EventFahrplan,EventFahrplan/EventFahrplan
package nerd.tuxmobil.fahrplan.congress.reporting; import android.app.Activity; import android.content.ActivityNotFoundException; import android.content.Intent; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.appcompat.app.AlertDialog; import org.ligi.tracedroid.TraceDroid; import or...
app/src/main/java/nerd/tuxmobil/fahrplan/congress/reporting/TraceDroidEmailSender.java
package nerd.tuxmobil.fahrplan.congress.reporting; import android.app.Activity; import android.content.ActivityNotFoundException; import android.content.Intent; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.appcompat.app.AlertDialog; import org.ligi.tracedroid.TraceDroid; import or...
Remove unused return type.
app/src/main/java/nerd/tuxmobil/fahrplan/congress/reporting/TraceDroidEmailSender.java
Remove unused return type.
Java
apache-2.0
a70678a0891245064d345530ae334a9cc12b0d4d
0
aspectran/aspectran,aspectran/aspectran
/* * Copyright (c) 2008-2019 The Aspectran Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicabl...
core/src/main/java/com/aspectran/core/activity/process/action/AnnotatedMethodAction.java
/* * Copyright (c) 2008-2019 The Aspectran Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicabl...
Polishing
core/src/main/java/com/aspectran/core/activity/process/action/AnnotatedMethodAction.java
Polishing
Java
apache-2.0
e56f2a57316040186d63020183900cc0afce221d
0
gabizekany/hipster,Navaneethsen/hipster,pablormier/hipster,Navaneethsen/hipster,citiususc/hipster,kigsmtua/hipster,gabizekany/hipster,nkhuyu/hipster,nkhuyu/hipster,artfullyContrived/hipster,artfullyContrived/hipster,artfullyContrived/hipster,kigsmtua/hipster,citiususc/hipster,nkhuyu/hipster,caidongyun/hipster,pablormie...
/* * Copyright 2013 CITIUS <http://citius.usc.es>, University of Santiago de Compostela. * * 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/licen...
hipster-core/src/main/java/es/usc/citius/lab/hipster/algorithm/IDAStar.java
/* * Copyright 2013 CITIUS <http://citius.usc.es>, University of Santiago de Compostela. * * 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/licen...
IDAStackNode changed to StackFrameNode + Reinitialization counter added. Some getter method added to retrieve the reinitialization counter, the internal stack etc
hipster-core/src/main/java/es/usc/citius/lab/hipster/algorithm/IDAStar.java
IDAStackNode changed to StackFrameNode + Reinitialization counter added. Some getter method added to retrieve the reinitialization counter, the internal stack etc
Java
apache-2.0
a497699496c9a8ea10df273e228ab13614a614ff
0
vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.vespa.hosted.dockerapi; import com.github.dockerjava.api.DockerClient; import com.github.dockerjava.api.command.CreateContainerCmd; import com.github.dockerjava.api.exception.DockerExcept...
docker-api/src/main/java/com/yahoo/vespa/hosted/dockerapi/CreateContainerCommandImpl.java
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.vespa.hosted.dockerapi; import com.github.dockerjava.api.DockerClient; import com.github.dockerjava.api.command.CreateContainerCmd; import com.github.dockerjava.api.exception.DockerExcept...
Fix generics build warning
docker-api/src/main/java/com/yahoo/vespa/hosted/dockerapi/CreateContainerCommandImpl.java
Fix generics build warning
Java
apache-2.0
633645103e455c1ad71df3e45de29b28725edc16
0
victorhaggqvist/sthlmtraveling,johannilsson/sthlmtraveling,victorhaggqvist/sthlmtraveling,johannilsson/sthlmtraveling
/* * Copyright (C) 2009-2011 Johan Nilsson <http://markupartist.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 * * Unless re...
src/com/markupartist/sthlmtraveling/FavoritesActivity.java
/* * Copyright (C) 2009-2011 Johan Nilsson <http://markupartist.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 * * Unless re...
Removed dead code.
src/com/markupartist/sthlmtraveling/FavoritesActivity.java
Removed dead code.
Java
mit
2249423d86a369a1c31c93fc1441ccff71dbd0e9
0
eduardodaluz/xfire,eduardodaluz/xfire
package org.codehaus.xfire.aegis; import javax.xml.namespace.QName; /** * Writes messages to an output stream. * * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> */ public interface MessageWriter { void writeValue( Object value ); void writeValueAsInt( Integer i ); void writeValu...
xfire-aegis/src/main/org/codehaus/xfire/aegis/MessageWriter.java
package org.codehaus.xfire.aegis; import javax.xml.namespace.QName; /** * Writes messages to an output stream. * * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> */ public interface MessageWriter { void writeValue( Object value ); void writeValueAsInt( Integer i ); void writeValu...
Add ability to get the prefix for a given namespace git-svn-id: 9326b53cbc4a8f4c3d02979b62b178127d5150fe@889 c7d0bf07-ec0d-0410-b2cc-d48fa9be22ba
xfire-aegis/src/main/org/codehaus/xfire/aegis/MessageWriter.java
Add ability to get the prefix for a given namespace
Java
mit
5228b480b22ad267437c0e0d47136f6a9c36c861
0
agrass/react-native-gps,agrass/react-native-gps
package com.syarul.rnlocation; import android.location.Location; import android.location.LocationManager; import android.location.LocationListener; import android.content.Context; import android.support.annotation.Nullable; import android.util.Log; import android.os.Bundle; import com.facebook.react.bridge.Arguments;...
src/main/java/com/syarul/rnlocation/RNLocationModule.java
package com.syarul.rnlocation; import android.location.Location; import android.location.LocationManager; import android.location.LocationListener; import android.content.Context; import android.support.annotation.Nullable; import android.util.Log; import android.os.Bundle; import com.facebook.react.bridge.Arguments;...
-remove getLastKnownLocation from constructor
src/main/java/com/syarul/rnlocation/RNLocationModule.java
-remove getLastKnownLocation from constructor
Java
mit
fb4ad23c7a332b1938cf59edd6da2486a58e8783
0
jenkinsci/warnings-plugin,jenkinsci/analysis-core-plugin,jenkinsci/analysis-core-plugin,jenkinsci/analysis-core-plugin,jenkinsci/warnings-plugin,jenkinsci/warnings-plugin,jenkinsci/analysis-core-plugin
package hudson.plugins.analysis.graph; import org.junit.Test; import com.google.common.collect.Sets; import net.sf.json.JSONObject; import static org.junit.Assert.*; /** * Tests the class {@link GraphConfiguration}. * * @author Ulli Hafner */ public class GraphConfigurationTest { /** Error me...
src/test/java/hudson/plugins/analysis/graph/GraphConfigurationTest.java
package hudson.plugins.analysis.graph; import org.junit.Test; import com.google.common.collect.Sets; import net.sf.json.JSONObject; import static org.junit.Assert.*; /** * Tests the class {@link GraphConfiguration}. * * @author Ulli Hafner */ public class GraphConfigurationTest { /** Error me...
spelling: configuration
src/test/java/hudson/plugins/analysis/graph/GraphConfigurationTest.java
spelling: configuration
Java
mit
e18845a26fdb05166706deaacd2b4b458060177e
0
ksaua/remock
package no.saua.remock.internal; import java.util.Collections; import java.util.List; import java.util.Objects; public class RejectBeanClassDefinition extends Entity<RejectBeanClassDefinition> implements Rejecter { private final Class<?> rejectClass; private final List<Class<?>> exceptClasses; public Re...
src/main/java/no/saua/remock/internal/RejectBeanClassDefinition.java
package no.saua.remock.internal; import java.util.Collections; import java.util.List; import java.util.Objects; public class RejectBeanClassDefinition extends Entity<RejectBeanClassDefinition> implements Rejecter { private final Class<?> rejectClass; private final List<Class<?>> exceptClasses; public Re...
Fix minor issue in RejectBeanClassDefinition
src/main/java/no/saua/remock/internal/RejectBeanClassDefinition.java
Fix minor issue in RejectBeanClassDefinition
Java
mit
25f9fb79bf9654cd4f749bac187aff8387ab68cd
0
mparra-mpz/Capital
package cl.fatman.capital.fund; import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; import java.time.LocalDate; import java.util.List; import java.util.ArrayList; public class PersistenceDataTest { private PersistenceData persistence; private List<FundType> f...
fund/src/test/java/cl/fatman/capital/fund/PersistenceDataTest.java
package cl.fatman.capital.fund; import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; import java.time.LocalDate; import java.util.List; import java.util.ArrayList; public class PersistenceDataTest { private PersistenceData persistence; private List<FundType> f...
Add junit test for named query: get_fund_type_by_id
fund/src/test/java/cl/fatman/capital/fund/PersistenceDataTest.java
Add junit test for named query: get_fund_type_by_id
Java
mit
642e42807fcc4f15e2867e39ee992ea67f3dd2aa
0
ligoj/ligoj,ligoj/ligoj,ligoj/ligoj,ligoj/ligoj
package org.ligoj.app.model; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EnumType; import javax.persistence.Enumerated; import javax.persistence.Table; import javax.validation.constraints.NotNull; import org.hibernate.validator.constraints.Length; import org.hibernate.va...
app-business/src/main/java/org/ligoj/app/model/Message.java
package org.ligoj.app.model; import javax.persistence.Entity; import javax.persistence.EnumType; import javax.persistence.Enumerated; import javax.persistence.Table; import javax.validation.constraints.NotNull; import org.hibernate.validator.constraints.Length; import org.hibernate.validator.constraints.NotBlank; im...
Reduce the column size for well known content
app-business/src/main/java/org/ligoj/app/model/Message.java
Reduce the column size for well known content
Java
mpl-2.0
985b9b7b25ff6b15502c7e11beced29837957e9f
0
Helioviewer-Project/JHelioviewer-SWHV,Helioviewer-Project/JHelioviewer-SWHV,Helioviewer-Project/JHelioviewer-SWHV,Helioviewer-Project/JHelioviewer-SWHV,Helioviewer-Project/JHelioviewer-SWHV
package org.helioviewer.jhv.view.uri.fits; import java.net.URI; import java.nio.ByteBuffer; import java.nio.ShortBuffer; import javax.annotation.Nullable; import nom.tam.fits.BasicHDU; import nom.tam.fits.Fits; import nom.tam.fits.Header; import nom.tam.fits.HeaderCard; import nom.tam.fits.ImageHDU; import nom.tam.i...
src/org/helioviewer/jhv/view/uri/fits/FITSImage.java
package org.helioviewer.jhv.view.uri.fits; import java.net.URI; import java.nio.ByteBuffer; import java.nio.ShortBuffer; import javax.annotation.Nullable; import nom.tam.fits.BasicHDU; import nom.tam.fits.Fits; import nom.tam.fits.Header; import nom.tam.fits.HeaderCard; import nom.tam.fits.ImageHDU; import nom.tam.i...
Reduce specificity
src/org/helioviewer/jhv/view/uri/fits/FITSImage.java
Reduce specificity
Java
agpl-3.0
a0034b40bc595d0a9a4499d8260713808ce7adc9
0
kumarrus/voltdb,simonzhangsm/voltdb,deerwalk/voltdb,VoltDB/voltdb,migue/voltdb,kobronson/cs-voltdb,creative-quant/voltdb,zuowang/voltdb,wolffcm/voltdb,creative-quant/voltdb,creative-quant/voltdb,wolffcm/voltdb,kumarrus/voltdb,flybird119/voltdb,creative-quant/voltdb,kobronson/cs-voltdb,simonzhangsm/voltdb,migue/voltdb,p...
/* This file is part of VoltDB. * Copyright (C) 2008-2010 VoltDB L.L.C. * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights ...
tests/frontend/org/voltdb/regressionsuites/TestFailureDetectSuite.java
/* This file is part of VoltDB. * Copyright (C) 2008-2010 VoltDB L.L.C. * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights ...
Add a k-factor of 2 test to TestFailureDetectSuite
tests/frontend/org/voltdb/regressionsuites/TestFailureDetectSuite.java
Add a k-factor of 2 test to TestFailureDetectSuite
Java
agpl-3.0
ec66f1704a1690a65931c4a7b6a835e03940bbec
0
quikkian-ua-devops/will-financials,quikkian-ua-devops/will-financials,quikkian-ua-devops/will-financials,quikkian-ua-devops/will-financials,quikkian-ua-devops/will-financials,quikkian-ua-devops/will-financials
/* * The Kuali Financial System, a comprehensive financial management system for higher education. * * Copyright 2005-2014 The Kuali Foundation * * 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 Fre...
kfs-core/src/main/java/org/kuali/kfs/coa/identity/OrgReviewRole.java
/* * The Kuali Financial System, a comprehensive financial management system for higher education. * * Copyright 2005-2014 The Kuali Foundation * * 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 Fre...
FINI-1559
kfs-core/src/main/java/org/kuali/kfs/coa/identity/OrgReviewRole.java
FINI-1559
Java
lgpl-2.1
380b5974ec6d90cda726f2b8ff530a0bdaf3604c
0
cawka/ndnx,svartika/ccnx,svartika/ccnx,svartika/ccnx,svartika/ccnx,ebollens/ccnmp,svartika/ccnx,svartika/ccnx,ebollens/ccnmp,cawka/ndnx,cawka/ndnx,svartika/ccnx,ebollens/ccnmp,cawka/ndnx,cawka/ndnx,ebollens/ccnmp
/** * Part of the CCNx Java Library. * * Copyright (C) 2008, 2009 Palo Alto Research Center, Inc. * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 2.1 * as published by the Free Software Foundation. * This library is ...
javasrc/src/org/ccnx/ccn/impl/repo/LogStructRepoStore.java
/** * Part of the CCNx Java Library. * * Copyright (C) 2008, 2009 Palo Alto Research Center, Inc. * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version 2.1 * as published by the Free Software Foundation. * This library is ...
Make the repository serve its own key locally.
javasrc/src/org/ccnx/ccn/impl/repo/LogStructRepoStore.java
Make the repository serve its own key locally.
Java
unlicense
e414dcd4e72ee3ea41b2fc1ff960c1da41282009
0
breandan/6Engine
package com.daexsys.sbc.entity; import com.daexsys.ijen3D.entity.Entity; import com.daexsys.sbc.world.chunk.Chunk; import com.daexsys.sbc.world.planet.Planet; public class SBEntity extends Entity { private Planet planet; public SBEntity(float x, float y, float z) { super(x, y, z); } public S...
src/com/daexsys/sbc/entity/SBEntity.java
package com.daexsys.sbc.entity; import com.daexsys.ijen3D.entity.Entity; import com.daexsys.sbc.world.chunk.Chunk; import com.daexsys.sbc.world.planet.Planet; public class SBEntity extends Entity { private Planet planet; public SBEntity(float x, float y, float z) { super(x, y, z); } public S...
Add setPlanet() method in SBEntity
src/com/daexsys/sbc/entity/SBEntity.java
Add setPlanet() method in SBEntity
Java
apache-2.0
1a0cc48593b73f468a13efa3ae147850205d9fc6
0
lynring24/ITimeU
package com.itti7.itimeu; import android.app.Activity; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import ...
ITimeU/app/src/main/java/com/itti7/itimeu/StatisticsFragment.java
package com.itti7.itimeu; import android.app.Activity; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import ...
ArrayList 전역 멤버변수로 선언
ITimeU/app/src/main/java/com/itti7/itimeu/StatisticsFragment.java
ArrayList 전역 멤버변수로 선언
Java
apache-2.0
ec1ac37048c99b2946c1d92f9b670d93a505c9dc
0
rzel/xruby,weimingtom/xruby,weimingtom/xruby,rzel/xruby,rzel/xruby,weimingtom/xruby
/** * Copyright 2005-2007 Yu Zhang * Distributed under the GNU General Public License 2.0 */ package com.xruby.runtime.value; import java.io.File; import java.util.ArrayList; import java.util.List; import com.xruby.runtime.lang.RubyBasic; import com.xruby.runtime.lang.RubyBlock; import com.xruby.runt...
src/com/xruby/runtime/value/RubyDir.java
/** * Copyright 2005-2007 Yu Zhang * Distributed under the GNU General Public License 2.0 */ package com.xruby.runtime.value; import java.io.File; import java.util.ArrayList; import java.util.List; import com.xruby.runtime.lang.RubyBasic; import com.xruby.runtime.lang.RubyRuntime; public class Ruby...
add helper method
src/com/xruby/runtime/value/RubyDir.java
add helper method
Java
apache-2.0
a31b1f74bd4f36802ecf4ddc0bc5c4579276f1ef
0
anylineorg/anyline,anylineorg/anyline
package org.anyline.entity; import com.fasterxml.jackson.databind.JsonNode; import org.anyline.util.*; import org.anyline.util.regular.Regular; import org.anyline.util.regular.RegularUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.Serializable; import java.math.BigDecimal; import java.ut...
anyline-core/src/main/java/org/anyline/entity/DataSet.java
package org.anyline.entity; import com.fasterxml.jackson.databind.JsonNode; import org.anyline.util.*; import org.anyline.util.regular.Regular; import org.anyline.util.regular.RegularUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.Serializable; import java.math.BigDecimal; import java.ut...
parse json
anyline-core/src/main/java/org/anyline/entity/DataSet.java
parse json
Java
apache-2.0
1a641200dfc7f60e73e327e1a3bc5db0de560660
0
nus-ncl/service-web,nus-ncl/service-web,nus-ncl/service-web,nus-ncl/service-web
package sg.ncl; import java.io.*; import java.nio.charset.StandardCharsets; import java.time.ZonedDateTime; import java.time.format.DateTimeFormatter; import java.util.*; import java.util.stream.Collectors; import javax.inject.Inject; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession...
src/main/java/sg/ncl/MainController.java
package sg.ncl; import java.io.*; import java.nio.charset.StandardCharsets; import java.time.ZonedDateTime; import java.time.format.DateTimeFormatter; import java.util.*; import java.util.stream.Collectors; import javax.inject.Inject; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession...
DEV-601 fix edit team
src/main/java/sg/ncl/MainController.java
DEV-601 fix edit team
Java
apache-2.0
997835fefede67fcd09efa2c1b32c126e06aaf87
0
ceylon/ceylon-common,ceylon/ceylon-common,jvasileff/ceylon-common,jvasileff/ceylon-common,ceylon/ceylon-common,jvasileff/ceylon-common
package com.redhat.ceylon.common.config; import java.io.File; import java.util.Arrays; import java.util.Collections; import java.util.List; import com.redhat.ceylon.common.Constants; import com.redhat.ceylon.common.FileUtil; public class DefaultToolOptions { public final static String DEFAULTS_ENCODING = "d...
src/com/redhat/ceylon/common/config/DefaultToolOptions.java
package com.redhat.ceylon.common.config; import java.io.File; import java.util.Arrays; import java.util.Collections; import java.util.List; import com.redhat.ceylon.common.Constants; import com.redhat.ceylon.common.FileUtil; public class DefaultToolOptions { public final static String DEFAULTS_ENCODING = "d...
Added constants and helper methods for the compiler configuration options `NoOsgi` and `Pack200` (see ceylon/ceylon-compiler#275)
src/com/redhat/ceylon/common/config/DefaultToolOptions.java
Added constants and helper methods for the compiler configuration options `NoOsgi` and `Pack200` (see ceylon/ceylon-compiler#275)
Java
apache-2.0
c68b383535467c313a1c1d24369becec0b4d5ff0
0
RedInput/DateTimePickerCompat
/* * Copyright (C) 2013 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
src/com/android/datetimepicker/time/TimePickerDialog.java
/* * Copyright (C) 2013 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
Changed import to equivalent of the support library.
src/com/android/datetimepicker/time/TimePickerDialog.java
Changed import to equivalent of the support library.
Java
apache-2.0
65843288e75837be7eb6f6aa483480af3ed2ed55
0
JosefHruska/FirebaseUI-Android,JosefHruska/FirebaseUI-Android,SUPERCILEX/FirebaseUI-Android,firebase/FirebaseUI-Android,SUPERCILEX/FirebaseUI-Android,MaciejCiemiega/FirebaseUI-Android,samtstern/FirebaseUI-Android,samtstern/FirebaseUI-Android,marcorei/FirebaseUI-Android,firebase/FirebaseUI-Android,samtstern/FirebaseUI-A...
/* * Firebase UI Bindings Android Library * * Copyright © 2015 Firebase - All Rights Reserved * https://www.firebase.com * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code mus...
library/src/main/java/com/firebase/ui/FirebaseListAdapter.java
/* * Firebase UI Bindings Android Library * * Copyright © 2015 Firebase - All Rights Reserved * https://www.firebase.com * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code mus...
Change FirebaseListAdapter to have a version of populateView that takes position as an argument
library/src/main/java/com/firebase/ui/FirebaseListAdapter.java
Change FirebaseListAdapter to have a version of populateView that takes position as an argument