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 | apache-2.0 | 8ae7bb6746c6bf8ba546f83884614959f846e6c4 | 0 | ivy-supplements/bpm-beans,ivy-supplements/bpm-beans | package com.axonivy.ivy.process.element.blockchain.exec;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Parameter;
import java.math.BigInteger;
import java.util.Map;
import org.apache.commons.lang.ClassUtils;
import org.apache.commons.lang3.Strin... | blockchain-beans/src/com/axonivy/ivy/process/element/blockchain/exec/EthereumExecutor.java | package com.axonivy.ivy.process.element.blockchain.exec;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Parameter;
import java.math.BigInteger;
import java.util.Map;
import org.apache.commons.lang.ClassUtils;
import org.apache.commons.lang3.Strin... | Added additional check for contract class and method. | blockchain-beans/src/com/axonivy/ivy/process/element/blockchain/exec/EthereumExecutor.java | Added additional check for contract class and method. | |
Java | apache-2.0 | 71bd21a373c8e36c3316d5040035f6dd4a3c622e | 0 | Talend/components,Talend/components | package org.talend.components.salesforce.runtime;
import java.util.HashMap;
import java.util.Map;
import java.util.TreeMap;
public class BulkResult {
Map<String, Object> values;
public BulkResult() {
values = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
}
public void setValue(String field,... | components/components-salesforce/components-salesforce-runtime/src/main/java/org/talend/components/salesforce/runtime/BulkResult.java | package org.talend.components.salesforce.runtime;
import java.util.HashMap;
import java.util.Map;
public class BulkResult {
Map<String, Object> values;
public BulkResult() {
values = new HashMap<String, Object>();
}
public void setValue(String field, Object vlaue) {
values.put(field... | fix(TDI-39501): make Bulk SOQL in salesforce case insensitive. (#985)
Salesforce is case insensitive. | components/components-salesforce/components-salesforce-runtime/src/main/java/org/talend/components/salesforce/runtime/BulkResult.java | fix(TDI-39501): make Bulk SOQL in salesforce case insensitive. (#985) | |
Java | apache-2.0 | 4bfe5f759018298f45c67080a77279f700212348 | 0 | wso2/product-apim,dhanuka84/product-apim,dewmini/product-apim,nu1silva/product-apim,hevayo/product-apim,jaadds/product-apim,hevayo/product-apim,thilinicooray/product-apim,chamilaadhi/product-apim,thilinicooray/product-apim,dhanuka84/product-apim,nu1silva/product-apim,nu1silva/product-apim,pradeepmurugesan/product-apim,... | /*
* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless require... | modules/distribution/resources/migration/wso2-api-migration-client/src/main/java/org/wso2/carbon/apimgt/migration/util/StatDBUtil.java | /*
* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless require... | Fix for migrating API_REQUEST_SUMMARY stat table
| modules/distribution/resources/migration/wso2-api-migration-client/src/main/java/org/wso2/carbon/apimgt/migration/util/StatDBUtil.java | Fix for migrating API_REQUEST_SUMMARY stat table | |
Java | apache-2.0 | 39da45adf45746f6aea3916c0810d159a18f2e8d | 0 | googleinterns/step230-2020,googleinterns/step230-2020,googleinterns/step230-2020 | package com.google.sps.image;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.Jsoup;
import org.jsoup.select.Elements;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
public final class ImageSelection {
... | src/main/java/com/google/sps/image/ImageSelection.java | package com.google.sps.image;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.Jsoup;
import org.jsoup.select.Elements;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
public final class ImageSelection {
... | small changes
| src/main/java/com/google/sps/image/ImageSelection.java | small changes | |
Java | mit | ed7af91f8af9341620b2d0f10f35b1da8f3cf46c | 0 | dylangsjackson/MissingNoEngine,dylangsjackson/MissingNoEngine,bradleysykes/game_leprechaun | src/model/effects/SpawnEffect.java | package model.effects;
import model.Effect;
import model.unit.Unit;
public class SpawnEffect extends Effect {
public SpawnEffect() {
super("Spawn Effect", null, "Spawnable Units");
}
public void addUnit(String unitID){
myReferences.add(unitID);
}
public void removeUnit(String unitID){
myReferences.rem... | removed spawn effect, now own ability
| src/model/effects/SpawnEffect.java | removed spawn effect, now own ability | ||
Java | mit | a8312a04bf5737330216f56d20e0c75310f7334a | 0 | ECSE321/TD | src/main/view/MapPanel.java | package main.view;
import java.awt.*;
import java.util.ArrayList;
import java.util.List;
import javax.swing.ImageIcon;
import javax.swing.JPanel;
import main.model.GameLogic;
import main.model.critter.Critter;
import main.model.map.Tile;
import main.model.tower.Tower;
/*
* To change this license header, choose Lic... | removes useless mappanel
| src/main/view/MapPanel.java | removes useless mappanel | ||
Java | mit | b33e69a22c30f1f77ce159b11951fc4923ea7bb8 | 0 | gurkenlabs/litiengine,gurkenlabs/litiengine | package de.gurkenlabs.litiengine.graphics;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.Shape;
import java.awt.Stroke;
import java.awt.font.FontRenderContext;
import java.awt.font.GlyphVector;
import java.awt.f... | src/de/gurkenlabs/litiengine/graphics/TextRenderer.java | package de.gurkenlabs.litiengine.graphics;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.Shape;
import java.awt.Stroke;
import java.awt.font.FontRenderContext;
import java.awt.font.GlyphVector;
import java.awt.f... | Add some method overloads.
| src/de/gurkenlabs/litiengine/graphics/TextRenderer.java | Add some method overloads. | |
Java | mit | 6de606024b4a2d389d02bf88bbdd1bdc56c8e474 | 0 | Shopify/mobile-buy-sdk-android,Shopify/mobile-buy-sdk-android,Shopify/mobile-buy-sdk-android | /*
* The MIT License (MIT)
*
* Copyright (c) 2015 Shopify Inc.
*
* 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
... | MobileBuy/buy/src/main/java/com/shopify/buy/dataprovider/CheckoutService.java | /*
* The MIT License (MIT)
*
* Copyright (c) 2015 Shopify Inc.
*
* 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
... | fix javadoc
| MobileBuy/buy/src/main/java/com/shopify/buy/dataprovider/CheckoutService.java | fix javadoc | |
Java | epl-1.0 | 579dd6a98d3b8bc1ae0e6c820f1cda9c69075151 | 0 | opendaylight/ovsdb,opendaylight/ovsdb,opendaylight/ovsdb | /*
* Copyright (c) 2014 Cisco Systems, Inc. and others. 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.org/legal/epl-v10.html
*/
package org.... | southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/SouthboundUtil.java | /*
* Copyright (c) 2014 Cisco Systems, Inc. and others. 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.org/legal/epl-v10.html
*/
package org.... | changed getManagingNode(..) to expect augmented path.
In OvsdbBridgeAttributes 'managedBy' can be path to 'OvsdbNodeAugmentation' as well.
This can happen if the attribute is set via binding aware code.
Signed-off-by: Amit Mandke <4a94614a6d51b523784846f61ac9d0f93a6888b7@cisco.com>
| southbound/southbound-impl/src/main/java/org/opendaylight/ovsdb/southbound/SouthboundUtil.java | changed getManagingNode(..) to expect augmented path. In OvsdbBridgeAttributes 'managedBy' can be path to 'OvsdbNodeAugmentation' as well. This can happen if the attribute is set via binding aware code. | |
Java | epl-1.0 | 4f7ec0fd57c4652a158007ee61972dcd48e1a86b | 0 | elexis/elexis-3-core,elexis/elexis-3-core,elexis/elexis-3-core,sazgin/elexis-3-core,sazgin/elexis-3-core,elexis/elexis-3-core,sazgin/elexis-3-core,sazgin/elexis-3-core | /*******************************************************************************
* Copyright (c) 2009-2013, G. Weirich and Elexis
* 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 a... | ch.elexis.core.data/src/ch/elexis/core/data/events/ElexisEventDispatcher.java | /*******************************************************************************
* Copyright (c) 2009-2013, G. Weirich and Elexis
* 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 a... | Introduce ElexisEventDispatcher#getSelectedMandator() | ch.elexis.core.data/src/ch/elexis/core/data/events/ElexisEventDispatcher.java | Introduce ElexisEventDispatcher#getSelectedMandator() | |
Java | agpl-3.0 | 8d175b0521864ea328ce24c0d5dce17eda0477f9 | 0 | akvo/akvo-flow,akvo/akvo-flow,akvo/akvo-flow,akvo/akvo-flow,akvo/akvo-flow | /*
* Copyright (C) 2010-2012 Stichting Akvo (Akvo Foundation)
*
* This file is part of Akvo FLOW.
*
* Akvo FLOW is free software: you can redistribute it and modify it under the terms of
* the GNU Affero General Public License (AGPL) as published by the Free Software Foundation,
* either version 3 of the Li... | GAE/src/org/waterforpeople/mapping/app/web/RawDataRestServlet.java | /*
* Copyright (C) 2010-2012 Stichting Akvo (Akvo Foundation)
*
* This file is part of Akvo FLOW.
*
* Akvo FLOW is free software: you can redistribute it and modify it under the terms of
* the GNU Affero General Public License (AGPL) as published by the Free Software Foundation,
* either version 3 of the Li... | Issue #205 - Adds Object Title when saving the message
| GAE/src/org/waterforpeople/mapping/app/web/RawDataRestServlet.java | Issue #205 - Adds Object Title when saving the message | |
Java | agpl-3.0 | c57351e27cc15ee8eeda2b9931d8fec7014f188e | 0 | duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test | 70d417d6-2e62-11e5-9284-b827eb9e62be | hello.java | 70cea6d4-2e62-11e5-9284-b827eb9e62be | 70d417d6-2e62-11e5-9284-b827eb9e62be | hello.java | 70d417d6-2e62-11e5-9284-b827eb9e62be | |
Java | agpl-3.0 | 4b02e6faf3dc374e3fa9121c5810c60c1599d25c | 0 | pughlab/cbioportal,cBioPortal/cbioportal,onursumer/cbioportal,angelicaochoa/cbioportal,HectorWon/cbioportal,adamabeshouse/cbioportal,jjgao/cbioportal,yichaoS/cbioportal,istemi-bahceci/cbioportal,shrumit/cbioportal-gsoc-final,zhx828/cbioportal,n1zea144/cbioportal,n1zea144/cbioportal,onursumer/cbioportal,mandawilson/cbio... | /** Copyright (c) 2012 Memorial Sloan-Kettering Cancer Center.
**
** 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 Foundation; either version 2.1 of the License, or
** any later version.
**
... | core/src/main/java/org/mskcc/cbio/portal/servlet/GetCoExpressionJSON.java | /** Copyright (c) 2012 Memorial Sloan-Kettering Cancer Center.
**
** 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 Foundation; either version 2.1 of the License, or
** any later version.
**
... | calc v3
| core/src/main/java/org/mskcc/cbio/portal/servlet/GetCoExpressionJSON.java | calc v3 | |
Java | agpl-3.0 | 7f6b65b91290d2ab0a4c7753dde5f77c032e46bf | 0 | VolumetricPixels/Politics | /*
* This file is part of Politics.
*
* Copyright (c) 2012-2012, VolumetricPixels <http://volumetricpixels.com/>
* Politics is licensed under the Affero General Public License Version 3.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public... | src/main/java/com/volumetricpixels/politics/universe/Universe.java | /*
* This file is part of Politics.
*
* Copyright (c) 2012-2012, VolumetricPixels <http://volumetricpixels.com/>
* Politics is licensed under the Affero General Public License Version 3.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public... | Finished up the destroyGroup method.
Signed-off-by: Ian Macalinao <08370e385f4778cad8fe504ec5445edd3d45bd9a@gmail.com>
| src/main/java/com/volumetricpixels/politics/universe/Universe.java | Finished up the destroyGroup method. Signed-off-by: Ian Macalinao <ianmacalinao@gmail.com> | |
Java | agpl-3.0 | be1a8a218e4b6b3333d831bfb0d544ece1724aa6 | 0 | laurianed/scheduling,laurianed/scheduling,zeineb/scheduling,fviale/scheduling,ShatalovYaroslav/scheduling,jrochas/scheduling,mbenguig/scheduling,yinan-liu/scheduling,jrochas/scheduling,sandrineBeauche/scheduling,sandrineBeauche/scheduling,tobwiens/scheduling,laurianed/scheduling,lpellegr/scheduling,ow2-proactive/schedu... | package functionalTests;
import java.io.File;
import org.junit.After;
import org.junit.Before;
import org.objectweb.proactive.core.ProActiveException;
import org.objectweb.proactive.core.node.Node;
import org.objectweb.proactive.core.xml.VariableContract;
import org.objectweb.proactive.core.xml.VariableContractType;
... | src/Tests/functionalTests/FunctionalTestDefaultNodes.java | package functionalTests;
import java.io.File;
import org.junit.After;
import org.junit.Before;
import org.objectweb.proactive.core.ProActiveException;
import org.objectweb.proactive.core.node.Node;
import org.objectweb.proactive.core.xml.VariableContract;
import org.objectweb.proactive.core.xml.VariableContractType;
... | Allow acces to vContract to subclasses
Added VAR_JVMARG
git-svn-id: 9146c88ff6d39b48099bf954d15d68f687b3fa69@8002 28e8926c-6b08-0410-baaa-805c5e19b8d6
| src/Tests/functionalTests/FunctionalTestDefaultNodes.java | Allow acces to vContract to subclasses Added VAR_JVMARG | |
Java | agpl-3.0 | 02d99a6ea71b662eef6311fd92968b9b71347f29 | 0 | kostasDrk/metafox,kostasDrk/metafox |
import ast.ASTNode;
import ast.ASTVisitor;
import ast.ASTVisitorException;
import ast.AnonymousFunctionCall;
import ast.ArrayDef;
import ast.AssignmentExpression;
import ast.BinaryExpression;
import ast.Operator;
import ast.Block;
import ast.BreakStatement;
import ast.ContinueStatement;
import ast.DoubleLiteral;
impor... | src/ExecutionASTVisitor.java |
import ast.ASTNode;
import ast.ASTVisitor;
import ast.ASTVisitorException;
import ast.AnonymousFunctionCall;
import ast.ArrayDef;
import ast.AssignmentExpression;
import ast.BinaryExpression;
import ast.Operator;
import ast.Block;
import ast.BreakStatement;
import ast.ContinueStatement;
import ast.DoubleLiteral;
impor... | [ExecutionsASTVisitor - FunctionDef: Fix bug] Return function.
| src/ExecutionASTVisitor.java | [ExecutionsASTVisitor - FunctionDef: Fix bug] Return function. | |
Java | agpl-3.0 | f80e823d7fa07497866c80875cb43a82d0633483 | 0 | marioestradarosa/axelor-development-kit,marioestradarosa/axelor-development-kit,axelor/axelor-development-kit,donsunsoft/axelor-development-kit,donsunsoft/axelor-development-kit,marioestradarosa/axelor-development-kit,axelor/axelor-development-kit,axelor/axelor-development-kit,axelor/axelor-development-kit,donsunsoft/a... | package com.axelor.meta.views;
import java.util.List;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlType;
import com.axelor.db.JPA;
import com.axelor.db.mapper.Mapper;
import com.axelor.met... | axelor-meta/src/main/java/com/axelor/meta/views/Field.java | package com.axelor.meta.views;
import java.util.List;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlType;
import com.axelor.db.JPA;
import com.axelor.db.mapper.Mapper;
import com.axelor.db.... | Fixed NPE issue.
| axelor-meta/src/main/java/com/axelor/meta/views/Field.java | Fixed NPE issue. | |
Java | apache-2.0 | f5ab62879f07b3432e66ddb429190cc1d8e4588d | 0 | brabenetz/xmlunit,xmlunit/xmlunit.net,brabenetz/xmlunit,xmlunit/xmlunit.net,xmlunit/xmlunit,xmlunit/xmlunit | /*
This file is licensed 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 applicable law or agreed to in writing, software
di... | src/main/java-core/org/xmlunit/validation/Validator.java | /*
This file is licensed 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 applicable law or agreed to in writing, software
di... | use varargs for schema sources
| src/main/java-core/org/xmlunit/validation/Validator.java | use varargs for schema sources | |
Java | apache-2.0 | d98d33756c03029a89d549f34e9204f58772a3dc | 0 | researchstudio-sat/webofneeds,researchstudio-sat/webofneeds,researchstudio-sat/webofneeds,researchstudio-sat/webofneeds,researchstudio-sat/webofneeds,researchstudio-sat/webofneeds,researchstudio-sat/webofneeds | /*
* Copyright 2012 Research Studios Austria Forschungsges.m.b.H.
*
* 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
*
* ... | webofneeds/won-bot/src/main/java/won/bot/framework/eventbot/action/EventBotActionUtils.java | /*
* Copyright 2012 Research Studios Austria Forschungsges.m.b.H.
*
* 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 new context listmap to represent all the needuris created by a single mail address
| webofneeds/won-bot/src/main/java/won/bot/framework/eventbot/action/EventBotActionUtils.java | added new context listmap to represent all the needuris created by a single mail address | |
Java | apache-2.0 | e6a07f4f7e2288c5633a885961b9591348b22b27 | 0 | smartcommunitylab/AAC,smartcommunitylab/AAC,smartcommunitylab/AAC,smartcommunitylab/AAC | /**
* Copyright 2015-2019 Smart Community Lab, FBK
*
* 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 req... | src/main/java/it/smartcommunitylab/aac/model/ClientDetailsRowMapper.java | /**
* Copyright 2015-2019 Smart Community Lab, FBK
*
* 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 req... | Role extraction fix | src/main/java/it/smartcommunitylab/aac/model/ClientDetailsRowMapper.java | Role extraction fix | |
Java | apache-2.0 | e359f39300732db6c7c9a8e0bf474ccf3f3d236d | 0 | bruceadowns/amza,bruceadowns/amza,jivesoftware/amza,jivesoftware/amza,jivesoftware/amza,jivesoftware/amza,bruceadowns/amza,bruceadowns/amza | /*
* $Revision$
* $Date$
*
* Copyright (C) 1999-$year$ Jive Software. All rights reserved.
*
* This software is the proprietary information of Jive Software. Use is subject to license terms.
*/
package com.jivesoftware.os.amza.service.filer;
import com.jivesoftware.os.amza.api.filer.IFiler;
import java.io.IOExc... | amza-service/src/main/java/com/jivesoftware/os/amza/service/filer/ByteBufferBackedFiler.java | /*
* $Revision$
* $Date$
*
* Copyright (C) 1999-$year$ Jive Software. All rights reserved.
*
* This software is the proprietary information of Jive Software. Use is subject to license terms.
*/
package com.jivesoftware.os.amza.service.filer;
import com.jivesoftware.os.amza.api.filer.IFiler;
import java.io.IOExc... | Added handling around ByteBufferBackedFiler.flush
| amza-service/src/main/java/com/jivesoftware/os/amza/service/filer/ByteBufferBackedFiler.java | Added handling around ByteBufferBackedFiler.flush | |
Java | apache-2.0 | 3c7ff6ff65419209d50fb440c7c42c3d714c5f71 | 0 | ivanjelinek/mall-csfd-ingestion | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package elasticparser;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
impor... | src/elasticparser/Ingest.java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package elasticparser;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
impor... | analyzer completed | src/elasticparser/Ingest.java | analyzer completed | |
Java | apache-2.0 | 74d677f2bae51cd693f4aa241a24ba75d1157af9 | 0 | ocpsoft/rewrite,chkal/rewrite,jsight/rewrite,chkal/rewrite,ocpsoft/rewrite,chkal/rewrite,ocpsoft/rewrite,chkal/rewrite,jsight/rewrite,jsight/rewrite,jsight/rewrite,ocpsoft/rewrite,chkal/rewrite,ocpsoft/rewrite,jsight/rewrite | /*
* Copyright 2011 <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*
* 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
... | config-servlet/src/main/java/org/ocpsoft/rewrite/servlet/config/Path.java | /*
* Copyright 2011 <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*
* 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
... | Patch for https://github.com/ocpsoft/rewrite/issues/117 | config-servlet/src/main/java/org/ocpsoft/rewrite/servlet/config/Path.java | Patch for https://github.com/ocpsoft/rewrite/issues/117 | |
Java | apache-2.0 | a2dc18118abf698c62a84910091d04d9c49c3d91 | 0 | jeffbrown/grailsnolib,jeffbrown/grailsnolib | /*
* Copyright 2004-2005 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ap... | src/web/org/codehaus/groovy/grails/web/metaclass/RenderDynamicMethod.java | /*
* Copyright 2004-2005 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ap... | refactored some of the code
git-svn-id: 29aad96320b2a07b98332cd568fc1316025c072f@6650 1cfb16fd-6d17-0410-8ff1-b7e8e1e2867d
| src/web/org/codehaus/groovy/grails/web/metaclass/RenderDynamicMethod.java | refactored some of the code | |
Java | apache-2.0 | db1d79d17daccdd0e2228711a0798f4932feee9c | 0 | ibissource/iaf,ibissource/iaf,ibissource/iaf,ibissource/iaf,ibissource/iaf | /*
* $Log: ShowConfiguration.java,v $
* Revision 1.3 2004-03-23 17:02:52 L190409
* corrected some typos and solved some warnings
*
*/
package nl.nn.adapterframework.webcontrol.action;
import nl.nn.adapterframework.util.StringResolver;
import nl.nn.adapterframework.util.AppConstants;
import org.apache.commons.la... | JavaSource/nl/nn/adapterframework/webcontrol/action/ShowConfiguration.java | package nl.nn.adapterframework.webcontrol.action;
import nl.nn.adapterframework.util.StringResolver;
import nl.nn.adapterframework.util.AppConstants;
import org.apache.commons.lang.SystemUtils;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.Ac... | corrected some typos and solved some warnings
| JavaSource/nl/nn/adapterframework/webcontrol/action/ShowConfiguration.java | corrected some typos and solved some warnings | |
Java | apache-2.0 | 9402d0348b73c41a0172574fe5210c3a3c78ac03 | 0 | ayltai/Newspaper | package com.github.ayltai.newspaper;
import android.app.Activity;
import android.support.test.InstrumentationRegistry;
import android.support.test.espresso.Espresso;
import android.support.test.espresso.action.ViewActions;
import android.support.test.espresso.assertion.ViewAssertions;
import android.support.test.espre... | app/src/androidTest/java/com/github/ayltai/newspaper/MainActivityTest.java | package com.github.ayltai.newspaper;
import android.app.Activity;
import android.support.test.InstrumentationRegistry;
import android.support.test.espresso.Espresso;
import android.support.test.espresso.action.ViewActions;
import android.support.test.espresso.assertion.ViewAssertions;
import android.support.test.espre... | Update instrumental tests to avoid using a closed Realm instance
| app/src/androidTest/java/com/github/ayltai/newspaper/MainActivityTest.java | Update instrumental tests to avoid using a closed Realm instance | |
Java | apache-2.0 | 6dce9f97bb54a361585a05f4ce5d38780d3decbc | 0 | industrial-data-space/trusted-connector,industrial-data-space/trusted-connector,industrial-data-space/trusted-connector,industrial-data-space/trusted-connector,industrial-data-space/trusted-connector,industrial-data-space/trusted-connector | /*-
* ========================LICENSE_START=================================
* IDS Core Platform Webconsole
* %%
* Copyright (C) 2017 Fraunhofer AISEC
* %%
* 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... | ids-webconsole/src/main/java/de/fhg/aisec/ids/webconsole/api/RouteApi.java | /*-
* ========================LICENSE_START=================================
* IDS Core Platform Webconsole
* %%
* Copyright (C) 2017 Fraunhofer AISEC
* %%
* 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... | improved/fixed aggregation function
| ids-webconsole/src/main/java/de/fhg/aisec/ids/webconsole/api/RouteApi.java | improved/fixed aggregation function | |
Java | apache-2.0 | 543770e6d38e75bf68c48a467f9a3effc52769ae | 0 | Praveen2112/presto,11xor6/presto,smartnews/presto,dain/presto,electrum/presto,losipiuk/presto,smartnews/presto,smartnews/presto,11xor6/presto,electrum/presto,Praveen2112/presto,erichwang/presto,smartnews/presto,dain/presto,11xor6/presto,electrum/presto,ebyhr/presto,11xor6/presto,erichwang/presto,dain/presto,losipiuk/pr... | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distribut... | presto-testng-services/src/main/java/io/prestosql/testng/services/FlakyAnnotationVerifier.java | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distribut... | Do not use Optional for loop control
| presto-testng-services/src/main/java/io/prestosql/testng/services/FlakyAnnotationVerifier.java | Do not use Optional for loop control | |
Java | apache-2.0 | 221537601fb64b7dfc4a5e9f088243248aa19484 | 0 | jeremylong/DependencyCheck,hansjoachim/DependencyCheck,wmaintw/DependencyCheck,hansjoachim/DependencyCheck,dwvisser/DependencyCheck,stefanneuhaus/DependencyCheck,recena/DependencyCheck,awhitford/DependencyCheck,stevespringett/DependencyCheck,wmaintw/DependencyCheck,adilakhter/DependencyCheck,adilakhter/DependencyCheck,... | /*
* This file is part of dependency-check-core.
*
* 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 ... | dependency-check-core/src/test/java/org/owasp/dependencycheck/data/nvdcve/DriverLoaderTest.java | /*
* This file is part of dependency-check-core.
*
* 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 ... | updated so compilation/tests work on linux
Former-commit-id: 3759e9438065138e6339aa3a56c81c08215406e4 | dependency-check-core/src/test/java/org/owasp/dependencycheck/data/nvdcve/DriverLoaderTest.java | updated so compilation/tests work on linux | |
Java | apache-2.0 | e0cd93f461049a281bce95a1315a06e2e8e62ad9 | 0 | Sargul/dbeaver,serge-rider/dbeaver,serge-rider/dbeaver,dbeaver/dbeaver,serge-rider/dbeaver,serge-rider/dbeaver,dbeaver/dbeaver,dbeaver/dbeaver,dbeaver/dbeaver,Sargul/dbeaver,Sargul/dbeaver,Sargul/dbeaver,Sargul/dbeaver | /*
* DBeaver - Universal Database Manager
* Copyright (C) 2010-2017 Serge Rider (serge@jkiss.org)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/license... | plugins/org.jkiss.dbeaver.core/src/org/jkiss/dbeaver/ui/perspective/DataSourceManagementToolbar.java | /*
* DBeaver - Universal Database Manager
* Copyright (C) 2010-2017 Serge Rider (serge@jkiss.org)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/license... | #3771 Database selector UI improvements
Former-commit-id: 620954eeeab0b60bd833f4aaa14a97e31a7730cc | plugins/org.jkiss.dbeaver.core/src/org/jkiss/dbeaver/ui/perspective/DataSourceManagementToolbar.java | #3771 Database selector UI improvements | |
Java | apache-2.0 | f3a8278ec494e12f6057d245c2d0d84aab0d6e46 | 0 | MathRandomNext/Android | package com.telerikacademy.meetup.view.venue_details;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.net.Uri;
import android.os.Bundle;
import an... | Meetup/app/src/main/java/com/telerikacademy/meetup/view/venue_details/VenueDetailsContentFragment.java | package com.telerikacademy.meetup.view.venue_details;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.net.Uri;
import android.os.Bundle;
import an... | minor changes
| Meetup/app/src/main/java/com/telerikacademy/meetup/view/venue_details/VenueDetailsContentFragment.java | minor changes | |
Java | apache-2.0 | 7e9115e04a5ff15f3880feeee428610a517576fc | 0 | telefonicaid/fiware-keypass,telefonicaid/fiware-keypass,telefonicaid/fiware-keypass | package es.tid.fiware.iot.ac.util;
/*
* Copyright 2016 Telefonica Investigación y Desarrollo, S.A.U
*
* 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... | src/main/java/es/tid/fiware/iot/ac/util/LogsEndpoint.java | package es.tid.fiware.iot.ac.util;
/*
* Copyright 2016 Telefonica Investigación y Desarrollo, S.A.U
*
* 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... | remove a typo
| src/main/java/es/tid/fiware/iot/ac/util/LogsEndpoint.java | remove a typo | |
Java | apache-2.0 | 872b8e007d9e9bfc06ae02d57dd16e8ddbe733fe | 0 | APriestman/autopsy,esaunders/autopsy,APriestman/autopsy,wschaeferB/autopsy,esaunders/autopsy,esaunders/autopsy,esaunders/autopsy,rcordovano/autopsy,rcordovano/autopsy,narfindustries/autopsy,APriestman/autopsy,millmanorama/autopsy,APriestman/autopsy,dgrove727/autopsy,millmanorama/autopsy,millmanorama/autopsy,wschaeferB/... | /*
* Autopsy Forensic Browser
*
* Copyright 2013 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://ww... | Core/src/org/sleuthkit/autopsy/report/ReportGenerator.java | /*
* Autopsy Forensic Browser
*
* Copyright 2013 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://ww... | Fixed bug in reports
| Core/src/org/sleuthkit/autopsy/report/ReportGenerator.java | Fixed bug in reports | |
Java | apache-2.0 | 85f26bb899cba58b52288f6d5df84f265e135757 | 0 | sidheshenator/autopsy,APriestman/autopsy,dgrove727/autopsy,sidheshenator/autopsy,narfindustries/autopsy,maxrp/autopsy,mhmdfy/autopsy,karlmortensen/autopsy,raman-bt/autopsy,raman-bt/autopsy,APriestman/autopsy,esaunders/autopsy,raman-bt/autopsy,narfindustries/autopsy,eXcomm/autopsy,APriestman/autopsy,esaunders/autopsy,dg... | /*
* Autopsy Forensic Browser
*
* Copyright 2011 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://ww... | Ingest/src/org/sleuthkit/autopsy/ingest/IngestManager.java | /*
* Autopsy Forensic Browser
*
* Copyright 2011 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://ww... | Ensure any individual service managed background threads are shutdown first, before the ingester thread.
| Ingest/src/org/sleuthkit/autopsy/ingest/IngestManager.java | Ensure any individual service managed background threads are shutdown first, before the ingester thread. | |
Java | apache-2.0 | 2d6c5bfb01713671cccc0c9543a4c0844f11bddb | 0 | oaugustus/phonegap-diagnostic-plugin,oaugustus/phonegap-diagnostic-plugin | /*
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... | src/android/Diagnostic.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... | Fixes
| src/android/Diagnostic.java | Fixes | |
Java | apache-2.0 | 673e8581ae82e4c0a7a2704a944457aa09b5bf2c | 0 | aika-algorithm/aika,aika-algorithm/aika | /*
* 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/main/java/network/aika/neuron/phase/RankedImpl.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 ... | refactored phase ranking
| src/main/java/network/aika/neuron/phase/RankedImpl.java | refactored phase ranking | |
Java | apache-2.0 | d592e1e161ec67929421d4beeb6216eba833c402 | 0 | DBCG/cql_measure_processor,DBCG/cqf-ruler,DBCG/cqf-ruler,DBCG/cqf-ruler,DBCG/cql_measure_processor | package org.opencds.cqf.r4.providers;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Objects;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.apache.commons.lang... | r4/src/main/java/org/opencds/cqf/r4/providers/LibraryOperationsProvider.java | package org.opencds.cqf.r4.providers;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Objects;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.apache.commons.lang... | Fix not using local terminology provider
| r4/src/main/java/org/opencds/cqf/r4/providers/LibraryOperationsProvider.java | Fix not using local terminology provider | |
Java | apache-2.0 | 0e86bcaaed699db925e42dbb6f9b45530129bd5a | 0 | IHTSDO/snomed-release-service,IHTSDO/snomed-release-service | package org.ihtsdo.buildcloud.config;
import org.ihtsdo.sso.integration.RequestHeaderAuthenticationDecorator;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.c... | src/main/java/org/ihtsdo/buildcloud/config/SecurityContextConfiguration.java | package org.ihtsdo.buildcloud.config;
import org.ihtsdo.sso.integration.RequestHeaderAuthenticationDecorator;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.c... | FRI-225 - Updated security configuration
| src/main/java/org/ihtsdo/buildcloud/config/SecurityContextConfiguration.java | FRI-225 - Updated security configuration | |
Java | apache-2.0 | 257ca00b2f6d0e6e8a6d66b8513d9c7210217698 | 0 | meikaiyipian/solo,ZacharyChang/solo,istarvip/solo,taolong001/solo,lfyuan13/solo,meikaiyipian/solo,kanjianhaian/solo,AndiHappy/solo,sshiting/solo,EasonYi/solo,WilliamRen/solo,fengshao0907/solo,446541492/solo,b3log/b3log-solo,wziyong/solo,leontius/solo,xuzizzz/solo,lfyuan13/solo,fengjx/solo,oamzn/solo,b3log/b3log-solo,Za... | /*
* Copyright (c) 2009, 2010, 2011, 2012, B3log Team
*
* 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 ... | core/src/main/java/org/b3log/solo/SoloServletListener.java | /*
* Copyright (c) 2009, 2010, 2011, 2012, B3log Team
*
* 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 ... | 修改 Rhythm 调用地址
从 b3log-rhythm.appspot.com 改成 rhythm.b3log.org
| core/src/main/java/org/b3log/solo/SoloServletListener.java | 修改 Rhythm 调用地址 | |
Java | apache-2.0 | 2f08d4aaa4ea7f0c6f5467b08ece344dffe2cec5 | 0 | pupnewfster/Lavasurvival,pupnewfster/Lavasurvival | package me.eddiep.minecraft.ls.system;
import me.eddiep.handles.ClassicPhysicsEvent;
import me.eddiep.minecraft.ls.Lavasurvival;
import me.eddiep.minecraft.ls.game.Gamemode;
import org.bukkit.Bukkit;
import org.bukkit.Material;
import org.bukkit.block.Block;
import org.bukkit.event.EventHandler;
import org.bukkit.even... | Lavasurvival/src/main/java/me/eddiep/minecraft/ls/system/PhysicsListener.java | package me.eddiep.minecraft.ls.system;
import me.eddiep.handles.ClassicPhysicsEvent;
import me.eddiep.minecraft.ls.Lavasurvival;
import me.eddiep.minecraft.ls.game.Gamemode;
import org.bukkit.Bukkit;
import org.bukkit.Material;
import org.bukkit.block.Block;
import org.bukkit.event.EventHandler;
import org.bukkit.even... | Check if negative instead of just -1 because of when we divide by 20
| Lavasurvival/src/main/java/me/eddiep/minecraft/ls/system/PhysicsListener.java | Check if negative instead of just -1 because of when we divide by 20 | |
Java | apache-2.0 | 8400beec35549a3c79efe7f944fd114fc9ed831b | 0 | Legioth/vaadin,fireflyc/vaadin,Peppe/vaadin,travisfw/vaadin,shahrzadmn/vaadin,cbmeeks/vaadin,magi42/vaadin,bmitc/vaadin,oalles/vaadin,cbmeeks/vaadin,Legioth/vaadin,travisfw/vaadin,Peppe/vaadin,synes/vaadin,synes/vaadin,peterl1084/framework,carrchang/vaadin,Darsstar/framework,oalles/vaadin,shahrzadmn/vaadin,sitexa/vaadi... | /*
@ITMillApache2LicenseForJavaFiles@
*/
package com.itmill.toolkit.terminal.gwt.client.ui;
import com.google.gwt.user.client.Timer;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.ClickListener;
import com.google.gwt.user.client.ui.FileUpload;
import com.google.gwt.user.client.ui.... | src/com/itmill/toolkit/terminal/gwt/client/ui/IUpload.java | /*
@ITMillApache2LicenseForJavaFiles@
*/
package com.itmill.toolkit.terminal.gwt.client.ui;
import com.google.gwt.user.client.Timer;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.ClickListener;
import com.google.gwt.user.client.ui.FileUpload;
import com.google.gwt.user.client.ui.... | proper default value
svn changeset:3261/svn branch:trunk
| src/com/itmill/toolkit/terminal/gwt/client/ui/IUpload.java | proper default value | |
Java | apache-2.0 | a0c5a75ab5cc3fcb2958f18898234bdf42a92e42 | 0 | gavanx/pdflearn,ZhenyaM/veraPDF-pdfbox,BezrukovM/veraPDF-pdfbox,BezrukovM/veraPDF-pdfbox,mdamt/pdfbox,ChunghwaTelecom/pdfbox,benmccann/pdfbox,ChunghwaTelecom/pdfbox,mathieufortin01/pdfbox,joansmith/pdfbox,mathieufortin01/pdfbox,veraPDF/veraPDF-pdfbox,mdamt/pdfbox,ZhenyaM/veraPDF-pdfbox,gavanx/pdflearn,veraPDF/veraPDF-p... | /*
* 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 ... | pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/form/PDChoice.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 ... | PDFBOX-2576: correct javadoc
git-svn-id: c3ad59981690829a43dc34c293c4e2cd04bcd994@1687747 13f79535-47bb-0310-9956-ffa450edef68
| pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/form/PDChoice.java | PDFBOX-2576: correct javadoc | |
Java | bsd-3-clause | 692fe1e8215c7ad2919ac810e64ccc2853ac985d | 0 | vkscool/xstream,emopers/xstream,Groostav/xstream,tenghuihua/xstream,emopers/xstream,tenghuihua/xstream,Groostav/xstream,vkscool/xstream | package com.thoughtworks.xstream;
import java.awt.font.TextAttribute;
import java.io.EOFException;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.NotActiveException;
import java.io.ObjectInputStream;
import java.io.ObjectInputValidation;
import java.io.ObjectOutputStream;
i... | xstream/src/java/com/thoughtworks/xstream/XStream.java | package com.thoughtworks.xstream;
import java.awt.font.TextAttribute;
import java.io.EOFException;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.NotActiveException;
import java.io.ObjectInputStream;
import java.io.ObjectInputValidation;
import java.io.ObjectOutputStream;
i... | Add getReflectionProvider().
git-svn-id: fe6d842192ccfb78748eb71580d1ce65f168b559@1043 9830eeb5-ddf4-0310-9ef7-f4b9a3e3227e
| xstream/src/java/com/thoughtworks/xstream/XStream.java | Add getReflectionProvider(). | |
Java | bsd-3-clause | e62edb1b579cb35371b6f86e900adcf3e68c3dbc | 0 | sammymax/nullpomino,sammymax/nullpomino | /*
Copyright (c) 2010, NullNoname
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this ... | src/org/game_host/hebo/nullpomino/game/subsystem/mode/AvalancheVSMode.java | /*
Copyright (c) 2010, NullNoname
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this ... | Add preliminary Fever support to Avalanche VS Mode
| src/org/game_host/hebo/nullpomino/game/subsystem/mode/AvalancheVSMode.java | Add preliminary Fever support to Avalanche VS Mode | |
Java | bsd-3-clause | 5a77ee2ed7403b0746c41acfcb40ecd2bf126f7e | 0 | wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy | /*
* Copyright (c) 2012, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/node/NodeCodeGenerator.java | /*
* Copyright (c) 2012, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | Revert local change made in dsl.processor
| graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/node/NodeCodeGenerator.java | Revert local change made in dsl.processor | |
Java | apache-2.0 | 95d5fe4eb7891d30e89554b288f6dcab85a8cec3 | 0 | rbheemana/Sqoop-Automated,rbheemana/Cobol-to-Hive | src/com/savy3/CobolField.java | package com.savy3.hadoop.hive.serde3.cobol;
import java.nio.charset.Charset;
import java.util.Arrays;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
import org.apache.hadoop.hive.serde2.typeinfo.TypeInfo;
import com.savy3.hadoop.hive.serde2.cobol.CobolSerdeException;
public class Cobo... | Delete CobolField.java | src/com/savy3/CobolField.java | Delete CobolField.java | ||
Java | mit | 8011a61876aa9734cd448d408a73fceb554ddce2 | 0 | andreas-eberle/settlers-remake,phirschbeck/settlers-remake,Peter-Maximilian/settlers-remake,JKatzwinkel/settlers-remake,jsettlers/settlers-remake,phirschbeck/settlers-remake,andreasb242/settlers-remake,andreasb242/settlers-remake,andreas-eberle/settlers-remake,jsettlers/settlers-remake,jsettlers/settlers-remake,andreas... | /*******************************************************************************
* Copyright (c) 2015
*
* 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 withou... | jsettlers.tests/tests/jsettlers/tests/autoreplay/AutoReplayIT.java | /*******************************************************************************
* Copyright (c) 2015
*
* 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 withou... | Ensured deletion of generated auto replay savegames.
| jsettlers.tests/tests/jsettlers/tests/autoreplay/AutoReplayIT.java | Ensured deletion of generated auto replay savegames. | |
Java | mit | d0c61d87ad766021ba49bd592991a55fc9370a15 | 0 | hhaslam11/Text-Fighter | package com.hotmail.kalebmarc.textfighter.main;
class Version {
private Version(){}
private static final String VERSION = "4.8DEV";
private static final String STAGE = "Alpha";
private static final String DESC = ""
+ "Text-Fighter is a Text-Based\n"
+ "Fighter RPG game, completely\n"
+ "written in J... | src/com/hotmail/kalebmarc/textfighter/main/Version.java | package com.hotmail.kalebmarc.textfighter.main;
class Version {
private Version(){}
private static final String VERSION = "4.7";
private static final String STAGE = "Alpha";
private static final String DESC = ""
+ "Text-Fighter is a Text-Based\n"
+ "Fighter RPG game, completely\n"
+ "written in Java... | Prepped for Alpha 4.8DEV
| src/com/hotmail/kalebmarc/textfighter/main/Version.java | Prepped for Alpha 4.8DEV | |
Java | mit | 577219a02347002cfd7ae2f0c980dfc315fce490 | 0 | fredyw/leetcode,fredyw/leetcode,fredyw/leetcode,fredyw/leetcode | package leetcode;
import java.util.HashSet;
import java.util.Set;
/**
* https://leetcode.com/problems/number-of-operations-to-make-network-connected/
*/
public class Problem1319 {
public int makeConnected(int n, int[][] connections) {
if (connections.length < n - 1) {
return -1;
}
... | src/main/java/leetcode/Problem1319.java | package leetcode;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
/**
* https://leetcode.com/problems/number-of-operations-to-make-network-connected/
*/
public class Problem1319 {
public int makeConnected(int n, int[][] connections) {
if (connections.length < n - 1) {
... | Update problem 1319
| src/main/java/leetcode/Problem1319.java | Update problem 1319 | |
Java | mit | baab39c11cf1b2f5d3234def708d65f7e0213b8f | 0 | StaySharp0/SimpleMerge | package view;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.event.Event;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.*;
import model.Model;
import model.ModelInterface;
import view.UI.*;
import dataSet.MergeCompare;
import java.io.... | src/view/MainController.java | package view;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.event.Event;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.*;
import model.Model;
import model.ModelInterface;
import view.UI.*;
import dataSet.MergeCompare;
import java.io.... | Fix: save할시 view mode로 전환
| src/view/MainController.java | Fix: save할시 view mode로 전환 | |
Java | mit | 12d283456354ce416f1a016de47a72317512d241 | 0 | ngageoint/geopackage-java,ngageoint/geopackage-java | package mil.nga.geopackage.extension.index;
import java.sql.SQLException;
import java.util.Map;
import java.util.concurrent.Callable;
import java.util.logging.Level;
import java.util.logging.Logger;
import com.j256.ormlite.misc.TransactionManager;
import com.j256.ormlite.support.ConnectionSource;
import mil.nga.geop... | src/main/java/mil/nga/geopackage/extension/index/FeatureTableIndex.java | package mil.nga.geopackage.extension.index;
import java.sql.SQLException;
import java.util.Map;
import java.util.concurrent.Callable;
import java.util.logging.Level;
import java.util.logging.Logger;
import com.j256.ormlite.misc.TransactionManager;
import com.j256.ormlite.support.ConnectionSource;
import mil.nga.geop... | minor method call change
| src/main/java/mil/nga/geopackage/extension/index/FeatureTableIndex.java | minor method call change | |
Java | mit | 6de454c80ea360f9754cfed83f02a14fc7015c9a | 0 | Damian3395/Contained,Damian3395/Contained,Damian3395/Contained | package com.contained.game.user;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Random;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.m... | src/main/java/com/contained/game/user/PlayerMiniGame.java | package com.contained.game.user;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Random;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.m... | Misc negligible fixes
| src/main/java/com/contained/game/user/PlayerMiniGame.java | Misc negligible fixes | |
Java | mit | 08273c9abbf0737d95dcba30b5842818477b120e | 0 | daviddaw/clase1617 | package matematicas.geometria;
public class TrianguloRectangulo {
private double cateto1;
private double cateto2;
public TrianguloRectangulo(double cateto1, double cateto2) {
this.cateto1 = cateto1;
this.cateto2 = cateto2;
}
public double getCateto1() {
return cateto1;
}
public void setCateto1(dou... | poo/src/matematicas/geometria/TrianguloRectangulo.java | package matematicas.geometria;
public class TrianguloRectangulo {
private int cateto1;
private int cateto2;
}
| metodo getHipotenusa() | poo/src/matematicas/geometria/TrianguloRectangulo.java | metodo getHipotenusa() | |
Java | mit | fd372adc0e84057581f18faa8e1b3c9428306fa3 | 0 | VSETH-GECO/BASS | package ch.ethz.geco.bass.server.auth;
import ch.ethz.geco.bass.util.SQLite;
import org.java_websocket.WebSocket;
import org.mindrot.jbcrypt.BCrypt;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLExc... | src/main/java/ch/ethz/geco/bass/server/auth/UserManager.java | package ch.ethz.geco.bass.server.auth;
import ch.ethz.geco.bass.util.SQLite;
import org.java_websocket.WebSocket;
import org.mindrot.jbcrypt.BCrypt;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLExc... | Small jdoc fixes
| src/main/java/ch/ethz/geco/bass/server/auth/UserManager.java | Small jdoc fixes | |
Java | mit | d5f48482c347dad2d7ebc50951c1e9de7cb4a0d8 | 0 | elBukkit/MagicPlugin,elBukkit/MagicPlugin,elBukkit/MagicPlugin,elBukkit/MagicAPI | package com.elmakers.mine.bukkit.api.event;
import com.elmakers.mine.bukkit.api.entity.EntityData;
import com.elmakers.mine.bukkit.api.magic.Mage;
import com.elmakers.mine.bukkit.api.magic.MageController;
import org.bukkit.entity.Entity;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.Player;
import or... | src/main/java/com/elmakers/mine/bukkit/api/event/MagicMobDeathEvent.java | package com.elmakers.mine.bukkit.api.event;
import com.elmakers.mine.bukkit.api.entity.EntityData;
import org.bukkit.event.Event;
import org.bukkit.event.HandlerList;
import org.bukkit.event.entity.EntityDeathEvent;
public class MagicMobDeathEvent extends Event {
private static final HandlerList handlers = new Ha... | Fixes and improvements to Magic Mob death event, add killer info
| src/main/java/com/elmakers/mine/bukkit/api/event/MagicMobDeathEvent.java | Fixes and improvements to Magic Mob death event, add killer info | |
Java | mit | 394aca0e3ffb4ab3f5c01818d6ab155c9eb35639 | 0 | ome450901/SimpleRatingBar | package com.willy.ratingbar;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.drawable.Drawable;
import android.support.annotation.DrawableRes;
import android.support.annotation.FloatRange;
import android.support.annotation.Nullable;
import android.support.v4.content.Conte... | library/src/main/java/com/willy/ratingbar/BaseRatingBar.java | package com.willy.ratingbar;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.drawable.Drawable;
import android.support.annotation.DrawableRes;
import android.support.annotation.FloatRange;
import android.support.annotation.Nullable;
import android.support.v4.content.Conte... | Fix conflit
| library/src/main/java/com/willy/ratingbar/BaseRatingBar.java | Fix conflit | |
Java | epl-1.0 | 3e102a0d5534e0e9d4ee53e34d7e95e9b6fb2b4d | 0 | css-iter/cs-studio,ControlSystemStudio/cs-studio,css-iter/cs-studio,css-iter/cs-studio,ESSICS/cs-studio,ControlSystemStudio/cs-studio,ControlSystemStudio/cs-studio,ControlSystemStudio/cs-studio,css-iter/cs-studio,ESSICS/cs-studio,css-iter/cs-studio,ESSICS/cs-studio,ControlSystemStudio/cs-studio,ESSICS/cs-studio,Control... | package org.csstudio.sns.passwordprovider;
import javax.crypto.spec.PBEKeySpec;
import org.eclipse.core.runtime.Platform;
import org.eclipse.equinox.security.storage.provider.IPreferencesContainer;
import org.eclipse.equinox.security.storage.provider.PasswordProvider;
/** PasswordProvider for
* extension point org... | products/SNS/plugins/org.csstudio.sns.passwordprovider/src/org/csstudio/sns/passwordprovider/SNSPasswordProvider.java | package org.csstudio.sns.passwordprovider;
import javax.crypto.spec.PBEKeySpec;
import org.eclipse.core.runtime.Platform;
import org.eclipse.equinox.security.storage.provider.IPreferencesContainer;
import org.eclipse.equinox.security.storage.provider.PasswordProvider;
/** PasswordProvider for
* extension point org... | change master password so it won't include spaces
| products/SNS/plugins/org.csstudio.sns.passwordprovider/src/org/csstudio/sns/passwordprovider/SNSPasswordProvider.java | change master password so it won't include spaces | |
Java | epl-1.0 | de87b24e2e924a7c7a05d2c17b3771fa43130e5c | 0 | aryantaheri/controller,aryantaheri/controller,aryantaheri/controller | package org.opendaylight.controller.samples.differentiatedforwarding.openstack.performance;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import org.opendaylight.contro... | opendaylight/samples/differentiatedforwarding/src/main/java/org/opendaylight/controller/samples/differentiatedforwarding/openstack/performance/SubExp.java | package org.opendaylight.controller.samples.differentiatedforwarding.openstack.performance;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.co... | Dir support for report files
| opendaylight/samples/differentiatedforwarding/src/main/java/org/opendaylight/controller/samples/differentiatedforwarding/openstack/performance/SubExp.java | Dir support for report files | |
Java | agpl-3.0 | 2a3176fe5ecd8d717dc61b63187dadbc4532d99e | 0 | duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test | 243faad6-2e60-11e5-9284-b827eb9e62be | hello.java | 243a294e-2e60-11e5-9284-b827eb9e62be | 243faad6-2e60-11e5-9284-b827eb9e62be | hello.java | 243faad6-2e60-11e5-9284-b827eb9e62be | |
Java | apache-2.0 | 5466e45ee5434f810e90ed9d4d2ef75da832454c | 0 | halober/ovirt-engine,yapengsong/ovirt-engine,zerodengxinchao/ovirt-engine,walteryang47/ovirt-engine,yingyun001/ovirt-engine,OpenUniversity/ovirt-engine,yapengsong/ovirt-engine,OpenUniversity/ovirt-engine,walteryang47/ovirt-engine,OpenUniversity/ovirt-engine,halober/ovirt-engine,eayun/ovirt-engine,halober/ovirt-engine,w... | package org.ovirt.engine.api.extensions.aaa;
import java.util.List;
import org.ovirt.engine.api.extensions.ExtKey;
import org.ovirt.engine.api.extensions.ExtMap;
import org.ovirt.engine.api.extensions.ExtUUID;
/**
* Authorization related constants.
*/
public class Authz {
/**
* Context keys.
*/
... | backend/manager/modules/extensions-api-root/extensions-api/src/main/java/org/ovirt/engine/api/extensions/aaa/Authz.java | package org.ovirt.engine.api.extensions.aaa;
import java.util.List;
import org.ovirt.engine.api.extensions.ExtKey;
import org.ovirt.engine.api.extensions.ExtMap;
import org.ovirt.engine.api.extensions.ExtUUID;
/**
* Authorization related constants.
*/
public class Authz {
/**
* Context keys.
*/
... | extapi: aaa: add missing final to constants
Topic: AAA
Change-Id: I1a352a876c2236aecdb13dc7c06b48edb8ed3e8d
Signed-off-by: Alon Bar-Lev <2e3ceb4d37adc6ae3ccc00d3646e0e0a036ace03@redhat.com>
| backend/manager/modules/extensions-api-root/extensions-api/src/main/java/org/ovirt/engine/api/extensions/aaa/Authz.java | extapi: aaa: add missing final to constants | |
Java | apache-2.0 | bfb4bdaa47d8aa3688f2c3cf37bd456e1dad776a | 0 | Alluxio/alluxio,maboelhassan/alluxio,EvilMcJerkface/alluxio,madanadit/alluxio,bf8086/alluxio,calvinjia/tachyon,jswudi/alluxio,bf8086/alluxio,PasaLab/tachyon,WilliamZapata/alluxio,wwjiang007/alluxio,jsimsa/alluxio,ShailShah/alluxio,riversand963/alluxio,ShailShah/alluxio,EvilMcJerkface/alluxio,Reidddddd/alluxio,Reidddddd... | /*
* Licensed to the University of California, Berkeley under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may no... | examples/src/main/java/tachyon/examples/BasicCheckpoint.java | /*
* Licensed to the University of California, Berkeley under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may no... | Simplify getoutstream call.
| examples/src/main/java/tachyon/examples/BasicCheckpoint.java | Simplify getoutstream call. | |
Java | apache-2.0 | adfe3445d9e51a0f068a15fae661fa47fe7cf860 | 0 | nielsbasjes/yauaa,nielsbasjes/yauaa,nielsbasjes/yauaa,nielsbasjes/yauaa | /*
* Yet Another UserAgent Analyzer
* Copyright (C) 2013-2022 Niels Basjes
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless... | analyzer/src/main/java/nl/basjes/parse/useragent/UserAgent.java | /*
* Yet Another UserAgent Analyzer
* Copyright (C) 2013-2022 Niels Basjes
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless... | feat: Improved the extraction of testcases
| analyzer/src/main/java/nl/basjes/parse/useragent/UserAgent.java | feat: Improved the extraction of testcases | |
Java | apache-2.0 | f7811484bdd28d0e3354a4b930c3a6d066a097de | 0 | sk413025/carcv,oskopek/carcv,oskopek/carcv,sk413025/carcv,sk413025/carcv,sk413025/carcv,oskopek/carcv,oskopek/carcv,sk413025/carcv,oskopek/carcv,sk413025/carcv,oskopek/carcv | /**
*
*/
package org.carcv.model;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.OneToOne;
import javax.validation.constraints.NotNull;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apa... | src/main/java/org/carcv/model/Entry.java | /**
*
*/
package org.carcv.model;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.OneToOne;
import javax.validation.constraints.NotNull;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apa... | Small error in toString of Entry | src/main/java/org/carcv/model/Entry.java | Small error in toString of Entry | |
Java | apache-2.0 | 9736dfd0c9551dd60b8f99f0b21c9b60f95c8950 | 0 | boulzordev/android_external_okhttp,OneRom/external_okhttp,AOSPB/external_okhttp,Infinitive-OS/platform_external_okhttp,OneRom/external_okhttp,TeamExodus/external_okhttp,boulzordev/android_external_okhttp,PAC-ROM/android_external_okhttp,w3nd1go/android_external_okhttp,CyanogenMod/android_external_okhttp,OneRom/external_... | /*
* 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... | okhttp/src/main/java/com/squareup/okhttp/ConnectionPool.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... | am 6257f0c1: Fixes to ConnectionPool noticed during upstream review
* commit '6257f0c1c5e6e94d446051f856207782d7188c43':
Fixes to ConnectionPool noticed during upstream review
| okhttp/src/main/java/com/squareup/okhttp/ConnectionPool.java | am 6257f0c1: Fixes to ConnectionPool noticed during upstream review | |
Java | apache-2.0 | a87596162e1809a878636c3c91d95d6ddb83d8d2 | 0 | xfournet/intellij-community,mglukhikh/intellij-community,adedayo/intellij-community,vladmm/intellij-community,apixandru/intellij-community,diorcety/intellij-community,ryano144/intellij-community,ibinti/intellij-community,vvv1559/intellij-community,orekyuu/intellij-community,ftomassetti/intellij-community,retomerz/intel... | /*
* 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... | xml/impl/src/com/intellij/xml/util/XIncludeProvider.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... | project files skipped
| xml/impl/src/com/intellij/xml/util/XIncludeProvider.java | project files skipped | |
Java | apache-2.0 | 2d31befdabb405abe513678f9341f0f3baf78b76 | 0 | huitseeker/deeplearning4j,kinbod/deeplearning4j,huitseeker/deeplearning4j,huitseeker/deeplearning4j,kinbod/deeplearning4j,dmmiller612/deeplearning4j,dmmiller612/deeplearning4j,huitseeker/deeplearning4j,kinbod/deeplearning4j,huitseeker/deeplearning4j,kinbod/deeplearning4j,dmmiller612/deeplearning4j,dmmiller612/deeplearn... | package org.deeplearning4j.models.embeddings.learning.impl.elements;
import lombok.NonNull;
import lombok.extern.slf4j.Slf4j;
import org.deeplearning4j.models.embeddings.WeightLookupTable;
import org.deeplearning4j.models.embeddings.inmemory.InMemoryLookupTable;
import org.deeplearning4j.models.embeddings.learning.Ele... | deeplearning4j-nlp-parent/deeplearning4j-nlp/src/main/java/org/deeplearning4j/models/embeddings/learning/impl/elements/SkipGram.java | package org.deeplearning4j.models.embeddings.learning.impl.elements;
import lombok.NonNull;
import lombok.extern.slf4j.Slf4j;
import org.deeplearning4j.models.embeddings.WeightLookupTable;
import org.deeplearning4j.models.embeddings.inmemory.InMemoryLookupTable;
import org.deeplearning4j.models.embeddings.learning.Ele... | new w2v integration p.4.01
Former-commit-id: 89a7077f9603dd742ae0c766d1a0aee1235e4c50 | deeplearning4j-nlp-parent/deeplearning4j-nlp/src/main/java/org/deeplearning4j/models/embeddings/learning/impl/elements/SkipGram.java | new w2v integration p.4.01 | |
Java | apache-2.0 | ecf01a111aec530d55ced295e444f66dee56f2ae | 0 | AVnetWS/Hentoid,AVnetWS/Hentoid,AVnetWS/Hentoid | package me.devsaki.hentoid.widget;
import android.annotation.SuppressLint;
import android.content.Context;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.View;
import androidx.core.view.GestureDetectorCompat;
import me.devsaki.hentoid.R;
/**
* Zoned tap listener for the i... | app/src/main/java/me/devsaki/hentoid/widget/OnZoneTapListener.java | package me.devsaki.hentoid.widget;
import android.content.Context;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.View;
import androidx.core.view.GestureDetectorCompat;
import me.devsaki.hentoid.R;
/**
* Zoned tap listener for the image viewer
*/
public class OnZoneTapLi... | Cleanup
| app/src/main/java/me/devsaki/hentoid/widget/OnZoneTapListener.java | Cleanup | |
Java | apache-2.0 | 523ac934af466af36ac4a331f71d2ce46f82ed46 | 0 | cn-cerc/summer-mis,cn-cerc/summer-mis | package cn.cerc.mis.core;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import cn.cerc.core.ClassResource;
import cn.cerc.core.DataSet;
import cn.cerc.core.IS... | summer-mis/src/main/java/cn/cerc/mis/core/CustomService.java | package cn.cerc.mis.core;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import cn.cerc.core.ClassResource;
import cn.cerc.core.DataSet;
import cn.cerc.core.IS... | !4 CustomService增加getUserCode方法,优先从handle取值
| summer-mis/src/main/java/cn/cerc/mis/core/CustomService.java | !4 CustomService增加getUserCode方法,优先从handle取值 | |
Java | apache-2.0 | 325775db9ccc185d06d2c1b95e9f9affb16bec20 | 0 | OmerMachluf/Mykeyboard,OmerMachluf/Mykeyboard,OmerMachluf/Mykeyboard,AnySoftKeyboard/AnySoftKeyboard,AnySoftKeyboard/AnySoftKeyboard,AnySoftKeyboard/AnySoftKeyboard,AnySoftKeyboard/AnySoftKeyboard,AnySoftKeyboard/AnySoftKeyboard,OmerMachluf/Mykeyboard,AnySoftKeyboard/AnySoftKeyboard,AnySoftKeyboard/AnySoftKeyboard,Omer... | package com.menny.android.anysoftkeyboard.dictionary;
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import android.util.Log;
import com... | src/com/menny/android/anysoftkeyboard/dictionary/DictionaryFactory.java | package com.menny.android.anysoftkeyboard.dictionary;
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import android.util.Log;
import com... | avoid npe
| src/com/menny/android/anysoftkeyboard/dictionary/DictionaryFactory.java | avoid npe | |
Java | apache-2.0 | 510e297f23acc581ac6cff3ec65ffd39dd274260 | 0 | SpineEventEngine/core-java,SpineEventEngine/core-java,SpineEventEngine/core-java | /*
* Copyright 2020, TeamDev. All rights reserved.
*
* Redistribution and use in source and/or binary forms, with or without
* modification, must retain the above copyright notice and the following
* disclaimer.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR... | server/src/test/java/io/spine/server/ServerEnvironmentTest.java | /*
* Copyright 2020, TeamDev. All rights reserved.
*
* Redistribution and use in source and/or binary forms, with or without
* modification, must retain the above copyright notice and the following
* disclaimer.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR... | Test whether the testing resources are closed on `ServerEnvironment#close`.
| server/src/test/java/io/spine/server/ServerEnvironmentTest.java | Test whether the testing resources are closed on `ServerEnvironment#close`. | |
Java | apache-2.0 | 7685b9219dab1e483fc21f7cb13b5c03c966b999 | 0 | Esri/geoportal-server,Esri/geoportal-server,Esri/geoportal-server,Esri/geoportal-server,Esri/geoportal-server | /* See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* Esri Inc. 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
*
... | geoportal/src/com/esri/gpt/server/csw/provider30/GetRecordsProvider.java | /* See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* Esri Inc. 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
*
... | CSW3.0: GetReordsProvider accepts recordIds | geoportal/src/com/esri/gpt/server/csw/provider30/GetRecordsProvider.java | CSW3.0: GetReordsProvider accepts recordIds | |
Java | apache-2.0 | c287f250391f15349e9fc821f971a7529be435b4 | 0 | michael-rapp/AndroidAdapters | /*
* AndroidAdapters Copyright 2014 Michael Rapp
*
* This program 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 3 of the License, or
* (at your option) any later version.
*
*... | src/de/mrapp/android/adapter/datastructure/item/ItemComparator.java | /*
* AndroidAdapters Copyright 2014 Michael Rapp
*
* This program 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 3 of the License, or
* (at your option) any later version.
*
*... | Added @since annotation.
| src/de/mrapp/android/adapter/datastructure/item/ItemComparator.java | Added @since annotation. | |
Java | apache-2.0 | 1f95cf896110afb750300a4efc9965a9f82f02a4 | 0 | wwjiang007/alluxio,wwjiang007/alluxio,apc999/alluxio,wwjiang007/alluxio,PasaLab/tachyon,madanadit/alluxio,EvilMcJerkface/alluxio,madanadit/alluxio,calvinjia/tachyon,calvinjia/tachyon,Alluxio/alluxio,bf8086/alluxio,EvilMcJerkface/alluxio,madanadit/alluxio,Alluxio/alluxio,maboelhassan/alluxio,Alluxio/alluxio,madanadit/al... | /*
* The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
* (the "License"). You may not use this work except in compliance with the License, which is
* available at www.apache.org/licenses/LICENSE-2.0
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDI... | core/client/hdfs/src/test/java/alluxio/hadoop/AbstractFileSystemTest.java | /*
* The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
* (the "License"). You may not use this work except in compliance with the License, which is
* available at www.apache.org/licenses/LICENSE-2.0
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDI... | [ALLUXIO-2036] Add a unit test to validate AbstractFileSystem#ListStatus exceptions
| core/client/hdfs/src/test/java/alluxio/hadoop/AbstractFileSystemTest.java | [ALLUXIO-2036] Add a unit test to validate AbstractFileSystem#ListStatus exceptions | |
Java | apache-2.0 | db12fbd293a70449b851728eb7a46d6279db5023 | 0 | chrisvest/stormpot,chrisvest/stormpot | package stormpot.benchmark;
import java.util.Random;
public abstract class Benchmark {
private static final Random rnd = new Random();
private static final int SIZE = 10;
private static final long TRIAL_TIME_MILLIS = 500L;
private static final long OBJ_TTL_MILLIS = 5 * 60 * 100;
protected static Bench[] bu... | stormpot-benchmark/src/main/java/stormpot/benchmark/Benchmark.java | package stormpot.benchmark;
import java.util.Random;
public abstract class Benchmark {
private static final Random rnd = new Random();
private static final int SIZE = 10;
private static final long TRIAL_TIME_MILLIS = 500L;
private static final long OBJ_TTL_MILLIS = 5 * 60 * 100;
protected static Bench[] bu... | try to improve the warmup for the MT benchmark -- still not perfect...
| stormpot-benchmark/src/main/java/stormpot/benchmark/Benchmark.java | try to improve the warmup for the MT benchmark -- still not perfect... | |
Java | apache-2.0 | 47ea048c2360661798538932d235b731705aa5d1 | 0 | jasperhoogland/jautomata | package net.jhoogland.jautomata;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import... | jautomata/src/main/java/net/jhoogland/jautomata/Automata.java | package net.jhoogland.jautomata;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import... | Test code changed. | jautomata/src/main/java/net/jhoogland/jautomata/Automata.java | Test code changed. | |
Java | bsd-3-clause | 5e0fa6459c9638114451409539482bbb1e06bc7b | 0 | bsmr-java/jmonkeyengine,danteinforno/jmonkeyengine,g-rocket/jmonkeyengine,davidB/jmonkeyengine,bsmr-java/jmonkeyengine,tr0k/jmonkeyengine,rbottema/jmonkeyengine,bertleft/jmonkeyengine,atomixnmc/jmonkeyengine,InShadow/jmonkeyengine,skapi1992/jmonkeyengine,wrvangeest/jmonkeyengine,tr0k/jmonkeyengine,aaronang/jmonkeyengin... | /*
* Copyright (c) 2009-2012 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of ... | engine/src/core-plugins/com/jme3/scene/plugins/OBJLoader.java | /*
* Copyright (c) 2009-2012 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of ... | - avoid null node names in obj importer
git-svn-id: f9411aee4f13664f2fc428a5b3e824fe43a079a3@10362 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
| engine/src/core-plugins/com/jme3/scene/plugins/OBJLoader.java | - avoid null node names in obj importer | |
Java | mit | e301549a8095293c3cd1d639bb71af7cbff9922e | 0 | concord-consortium/webstart-maven-plugin | package org.codehaus.mojo.webstart;
/*
* Copyright 2001-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License" );
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/L... | plugin/src/main/java/org/codehaus/mojo/webstart/JnlpMojo.java | package org.codehaus.mojo.webstart;
/*
* Copyright 2001-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License" );
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/L... | fixed up regex so it doesn't match .sf files
git-svn-id: 4f0dbfeeb358eb5effd1ef9d64a147967f90bd05@1925 e004626d-f90d-0410-840a-8a47d1743edb
| plugin/src/main/java/org/codehaus/mojo/webstart/JnlpMojo.java | fixed up regex so it doesn't match .sf files | |
Java | mit | 3823a0c5c84f87cd0475c1802e5410949cf1d2ba | 0 | draoullig/docker-build-step-plugin,tylerdavis/docker-build-step-plugin,wzheng2310/docker-build-step-plugin,BlackPepperSoftware/docker-build-step-plugin,BlackPepperSoftware/docker-build-step-plugin,wzheng2310/docker-build-step-plugin,tylerdavis/docker-build-step-plugin,ldtkms/docker-build-step-plugin,draoullig/docker-bu... | package org.jenkinsci.plugins.dockerbuildstep.cmd;
import java.util.Arrays;
import java.util.List;
import hudson.Extension;
import hudson.model.AbstractBuild;
import hudson.model.BuildListener;
import org.jenkinsci.plugins.dockerbuildstep.action.EnvInvisibleAction;
import org.kohsuke.stapler.DataBoundConstructor;
i... | src/main/java/org/jenkinsci/plugins/dockerbuildstep/cmd/StartCommand.java | package org.jenkinsci.plugins.dockerbuildstep.cmd;
import java.util.Arrays;
import java.util.List;
import hudson.Extension;
import hudson.model.AbstractBuild;
import hudson.model.BuildListener;
import org.jenkinsci.plugins.dockerbuildstep.action.EnvInvisibleAction;
import org.kohsuke.stapler.DataBoundConstructor;
i... | Remove sysout
| src/main/java/org/jenkinsci/plugins/dockerbuildstep/cmd/StartCommand.java | Remove sysout | |
Java | mit | 561b3cf532612e9f79f39989ee97e88210d74bb9 | 0 | talah/BBTH | package bbth.game;
import java.util.Map;
import android.graphics.Canvas;
import android.graphics.Paint;
import bbth.engine.achievements.AchievementInfo;
import bbth.engine.core.GameActivity;
import bbth.engine.net.bluetooth.Bluetooth;
import bbth.engine.net.simulation.LockStepProtocol;
import bbth.engine.ui.Anchor;
i... | gameSrc/bbth/game/TitleScreen.java | package bbth.game;
import java.util.Map;
import android.graphics.Canvas;
import android.graphics.Paint;
import bbth.engine.achievements.AchievementInfo;
import bbth.engine.core.GameActivity;
import bbth.engine.net.bluetooth.Bluetooth;
import bbth.engine.net.simulation.LockStepProtocol;
import bbth.engine.ui.Anchor;
i... | Animations now end properly in TitleScreen.
| gameSrc/bbth/game/TitleScreen.java | Animations now end properly in TitleScreen. | |
Java | mit | 205a95670395e645af723e76f7a5891429596064 | 0 | JetBrains/ideavim,JetBrains/ideavim | package com.maddyhome.idea.vim;
/*
* IdeaVim - A Vim emulator plugin for IntelliJ Idea
* Copyright (C) 2003-2008 Rick Maddy
*
* This program 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; either versio... | src/com/maddyhome/idea/vim/VimPlugin.java | package com.maddyhome.idea.vim;
/*
* IdeaVim - A Vim emulator plugin for IntelliJ Idea
* Copyright (C) 2003-2008 Rick Maddy
*
* This program 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; either versio... | Turn on insert mode when active lookup is invoked
| src/com/maddyhome/idea/vim/VimPlugin.java | Turn on insert mode when active lookup is invoked | |
Java | mit | 7a49a8c6f15608c6c95a1efacdcb70af701cfc1a | 0 | tkuhn/nanopub-server,tkuhn/nanopub-server | package ch.tkuhn.nanopub.server;
import java.io.IOException;
import javax.servlet.http.HttpServletResponse;
import net.trustyuri.TrustyUriUtils;
public class NanopubListPage extends Page {
public static final String PAGE_NAME = "nanopubs";
private boolean asHtml;
public static void show(ServerRequest req, Htt... | src/main/java/ch/tkuhn/nanopub/server/NanopubListPage.java | package ch.tkuhn.nanopub.server;
import java.io.IOException;
import javax.servlet.http.HttpServletResponse;
import net.trustyuri.TrustyUriUtils;
public class NanopubListPage extends Page {
public static final String PAGE_NAME = "nanopubs";
private boolean asHtml;
public static void show(ServerRequest req, Htt... | Link to gzipped version of packages | src/main/java/ch/tkuhn/nanopub/server/NanopubListPage.java | Link to gzipped version of packages | |
Java | mit | 10be2b4c2622c0d15de7bd1f9adfbbcd80585c68 | 0 | technology16/dbreplicator2,Technologiya/dbreplicator2,technology16/dbreplicator2,Technologiya/dbreplicator2 | /*
* The MIT License (MIT)
*
* Copyright (c) 2013 Technologiya
*
* 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,... | src/main/java/ru/taximaxim/dbreplicator2/el/ErrorsLog.java | /*
* The MIT License (MIT)
*
* Copyright (c) 2013 Technologiya
*
* 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,... | Снизил уровень ошибки записи в rep2_errors_log до ERROR. FATAL спамил
сквозь emailthrottle | src/main/java/ru/taximaxim/dbreplicator2/el/ErrorsLog.java | Снизил уровень ошибки записи в rep2_errors_log до ERROR. FATAL спамил сквозь emailthrottle | |
Java | agpl-3.0 | dda3912f77e34322ade551ad0a929901c4fba4f1 | 0 | elki-project/elki,elki-project/elki,elki-project/elki | package de.lmu.ifi.dbs.elki.evaluation.clustering;
/*
This file is part of ELKI:
Environment for Developing KDD-Applications Supported by Index-Structures
Copyright (C) 2011
Ludwig-Maximilians-Universität München
Lehr- und Forschungseinheit für Datenbanksysteme
ELKI Development Team
This program is free softw... | src/de/lmu/ifi/dbs/elki/evaluation/clustering/ClusterContingencyTable.java | package de.lmu.ifi.dbs.elki.evaluation.clustering;
/*
This file is part of ELKI:
Environment for Developing KDD-Applications Supported by Index-Structures
Copyright (C) 2011
Ludwig-Maximilians-Universität München
Lehr- und Forschungseinheit für Datenbanksysteme
ELKI Development Team
This program is free softw... | Start adding references.
| src/de/lmu/ifi/dbs/elki/evaluation/clustering/ClusterContingencyTable.java | Start adding references. | |
Java | agpl-3.0 | ba2b329337d225537698ca6f18808c34398502bf | 0 | duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test | ebbd79d6-2e5f-11e5-9284-b827eb9e62be | hello.java | ebb5d942-2e5f-11e5-9284-b827eb9e62be | ebbd79d6-2e5f-11e5-9284-b827eb9e62be | hello.java | ebbd79d6-2e5f-11e5-9284-b827eb9e62be | |
Java | apache-2.0 | 799c52ac77b6074d6e1345940705e2f168256951 | 0 | datacite/mds,ulbricht/mds,datacite/mds,ulbricht/mds,datacite/mds,ulbricht/mds,datacite/mds,datacite/mds,ulbricht/mds | package org.datacite.mds.validation.util;
import java.lang.annotation.Annotation;
import java.net.IDN;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Set;
import javax.validation.ConstraintValidatorContext;
import javax.validation.ConstraintViolation;
import javax.validation.Validation;
... | src/main/java/org/datacite/mds/validation/util/ValidationUtils.java | package org.datacite.mds.validation.util;
import java.lang.annotation.Annotation;
import java.net.IDN;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Set;
import javax.validation.ConstraintValidatorContext;
import javax.validation.ConstraintViolation;
import javax.validation.Validation;
... | add getViolationMessage method
| src/main/java/org/datacite/mds/validation/util/ValidationUtils.java | add getViolationMessage method | |
Java | apache-2.0 | edb719f49f36e789ee673a1ba72cca0d5fc11160 | 0 | LonoCloud/transit-java,freakynit/transit-java,freakynit/transit-java,alexanderkiel/transit-java,cognitect/transit-java,alexanderkiel/transit-java,cognitect/transit-java,LonoCloud/transit-java | // Copyright (c) Cognitect, Inc.
// All rights reserved.
package com.cognitect.transit;
import com.cognitect.transit.impl.AbstractParser;
import com.cognitect.transit.impl.JsonParser;
import com.cognitect.transit.impl.ReadCache;
import com.cognitect.transit.impl.WriteCache;
import junit.framework.Test;
import junit.f... | src/test/java/com/cognitect/transit/TransitJSONMachineModeTest.java | // Copyright (c) Cognitect, Inc.
// All rights reserved.
package com.cognitect.transit;
import com.cognitect.transit.impl.AbstractParser;
import com.cognitect.transit.impl.JsonParser;
import com.cognitect.transit.impl.ReadCache;
import com.cognitect.transit.impl.WriteCache;
import junit.framework.Test;
import junit.f... | JSON-M times reading properly - added tests.
| src/test/java/com/cognitect/transit/TransitJSONMachineModeTest.java | JSON-M times reading properly - added tests. | |
Java | apache-2.0 | dc3d84aa813457841e04281b5ba03ef629d402c2 | 0 | vector-im/vector-android,vector-im/vector-android,vector-im/riot-android,vector-im/riot-android,vector-im/riot-android,vector-im/vector-android,vector-im/riot-android,vector-im/vector-android,vector-im/riot-android | /*
* Copyright 2017 Vector Creations Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or a... | vector/src/main/java/im/vector/util/PhoneNumberUtils.java | /*
* Copyright 2017 Vector Creations Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or a... | add_language_selection
fix invalid contries list.
| vector/src/main/java/im/vector/util/PhoneNumberUtils.java | add_language_selection fix invalid contries list. | |
Java | apache-2.0 | 6057c57057a100766b0db9b34e6fea1ebb38f56a | 0 | Nickname0806/Test_Q4,Nickname0806/Test_Q4,apache/tomcat,Nickname0806/Test_Q4,Nickname0806/Test_Q4,apache/tomcat,apache/tomcat,apache/tomcat,apache/tomcat | /*
* 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 ... | java/org/apache/catalina/ha/deploy/FarmWarDeployer.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 ... | Fix FindBugs warning
Remove unnecessary code
Better error handling
git-svn-id: 79cef5a5a257cc9dbe40a45ac190115b4780e2d0@1058556 13f79535-47bb-0310-9956-ffa450edef68
| java/org/apache/catalina/ha/deploy/FarmWarDeployer.java | Fix FindBugs warning Remove unnecessary code Better error handling | |
Java | apache-2.0 | cbae8fbe3442142f48f8dc401c3e512583c88fad | 0 | Gigaspaces/xap-openspaces,Gigaspaces/xap-openspaces,Gigaspaces/xap-openspaces | /*
* Copyright 2006-2007 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ap... | src/main/src/org/openspaces/maven/support/OutputVersion.java | /*
* Copyright 2006-2007 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ap... | make the vesrion concatanation done in runtime and not static construction time
svn path=/trunk/openspaces/; revision=25808
Former-commit-id: 0f26163228ecceedc661056bc12ce8be6e897577 | src/main/src/org/openspaces/maven/support/OutputVersion.java | make the vesrion concatanation done in runtime and not static construction time | |
Java | apache-2.0 | 13fb7d60813931e6181675e219cc7aa660d6c0b9 | 0 | sebasbaumh/gwt-three.js,sebasbaumh/gwt-three.js,sebasbaumh/gwt-three.js | package com.akjava.gwt.three.client.js.extras.controls;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.user.client.ui.HasEnabled;
/**
* Controls for changing the position and angle of an object, e.g. a camera.
* @author sbaumhekel
*/
public class TrackballControls extends JavaScriptObjec... | src/com/akjava/gwt/three/client/js/extras/controls/TrackballControls.java | package com.akjava.gwt.three.client.js.extras.controls;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.user.client.ui.HasEnabled;
/**
* Controls for changing the position and angle of an object, e.g. a camera.
* @author sbaumhekel
*/
public class TrackballControls extends JavaScriptObjec... | allow rolling with latest three.js.
| src/com/akjava/gwt/three/client/js/extras/controls/TrackballControls.java | allow rolling with latest three.js. | |
Java | apache-2.0 | 2383a838fc74d444df128fe6bf5e7d0a2b33a573 | 0 | protyposis/Spectaculum,protyposis/MediaPlayer-Extended,protyposis/MediaPlayer-Extended,protyposis/Spectaculum | /*
* Copyright (c) 2014 Mario Guggenberger <mg@itec.aau.at>
*
* This file is part of ITEC MediaPlayer.
*
* ITEC MediaPlayer 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, either version 3 of the Licens... | MediaPlayer/src/main/java/at/aau/itec/android/mediaplayer/MediaPlayer.java | /*
* Copyright (c) 2014 Mario Guggenberger <mg@itec.aau.at>
*
* This file is part of ITEC MediaPlayer.
*
* ITEC MediaPlayer 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, either version 3 of the Licens... | Fix seeking from the end of the input stream
When seeking to the end of a stream and the end of the input stream is reached, the mVideoInputEos flag gets set to true. A following seek then resulted in an infinite loop of the media player waiting for a decoded frame, because due to the flag, no more sample data was rea... | MediaPlayer/src/main/java/at/aau/itec/android/mediaplayer/MediaPlayer.java | Fix seeking from the end of the input stream | |
Java | apache-2.0 | 67479043a372b27be40951b36a621c981577ae62 | 0 | deesebc/conmigo,deesebc/conmigo,deesebc/conmigo | package com.conmigo.app.controller;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.Requ... | src/main/java/com/conmigo/app/controller/LoginController.java | package com.conmigo.app.controller;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContextHolder;
imp... | DSBC: QUitamos metodo duplicado
| src/main/java/com/conmigo/app/controller/LoginController.java | DSBC: QUitamos metodo duplicado | |
Java | apache-2.0 | 6648c412a6463a898bb8660c51a7c7c6851a4ff0 | 0 | yumingjuan/selenium,jmt4/Selenium2,jmt4/Selenium2,yumingjuan/selenium,yumingjuan/selenium,yumingjuan/selenium,jmt4/Selenium2,yumingjuan/selenium,jmt4/Selenium2,jmt4/Selenium2,yumingjuan/selenium,jmt4/Selenium2,jmt4/Selenium2,yumingjuan/selenium,jmt4/Selenium2,yumingjuan/selenium,yumingjuan/selenium,jmt4/Selenium2 | /*
Copyright 2007-2009 WebDriver committers
Copyright 2007-2009 Google Inc.
Portions copyright 2011 Software Freedom Conservancy
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.apac... | java/client/src/org/openqa/selenium/UnhandledAlertException.java | /*
Copyright 2007-2009 WebDriver committers
Copyright 2007-2009 Google Inc.
Portions copyright 2011 Software Freedom Conservancy
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.apac... | DanielWagnerHall: Mark LocallyStoredAlert as Serializable, which hopefully will make it pass on Sauce
git-svn-id: aa1aa1384423cb28c2b1e29129bb3a91de1d9196@15826 07704840-8298-11de-bf8c-fd130f914ac9
| java/client/src/org/openqa/selenium/UnhandledAlertException.java | DanielWagnerHall: Mark LocallyStoredAlert as Serializable, which hopefully will make it pass on Sauce | |
Java | apache-2.0 | 5c2cb2d668f5ff8fe0694ca9fea9c2daf1657d61 | 0 | GerritCodeReview/gerrit,WANdisco/gerrit,WANdisco/gerrit,qtproject/qtqa-gerrit,WANdisco/gerrit,WANdisco/gerrit,GerritCodeReview/gerrit,WANdisco/gerrit,GerritCodeReview/gerrit,qtproject/qtqa-gerrit,GerritCodeReview/gerrit,GerritCodeReview/gerrit,qtproject/qtqa-gerrit,GerritCodeReview/gerrit,qtproject/qtqa-gerrit,qtprojec... | // Copyright (C) 2017 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable ... | java/com/google/gerrit/server/permissions/PermissionBackend.java | // Copyright (C) 2017 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable ... | Document that repo in ForProject#filter() must be scoped to the project
Change-Id: I874124896029aeae85b946bb1a81410e693b3cd4
| java/com/google/gerrit/server/permissions/PermissionBackend.java | Document that repo in ForProject#filter() must be scoped to the project | |
Java | apache-2.0 | ae2a82711510d835e61e912f3f5abce73f2a95d4 | 0 | squanchy-dev/squanchy-android,squanchy-dev/squanchy-android,squanchy-dev/squanchy-android | package net.squanchy.schedule.view;
import android.content.Context;
import android.support.annotation.DrawableRes;
import android.util.AttributeSet;
import android.widget.ImageView;
import android.widget.TextView;
import net.squanchy.R;
import net.squanchy.schedule.domain.view.Event;
import org.joda.time.format.Date... | app/src/main/java/net/squanchy/schedule/view/OtherEventItemView.java | package net.squanchy.schedule.view;
import android.content.Context;
import android.support.annotation.DrawableRes;
import android.util.AttributeSet;
import android.widget.ImageView;
import android.widget.TextView;
import net.squanchy.R;
import net.squanchy.schedule.domain.view.Event;
import org.joda.time.format.Date... | Bind coffee break, registration and other to their drawables
| app/src/main/java/net/squanchy/schedule/view/OtherEventItemView.java | Bind coffee break, registration and other to their drawables | |
Java | apache-2.0 | 7897f718981a82a72fda2cc88f95c1b9f463a8be | 0 | yesil/jackrabbit-oak,francescomari/jackrabbit-oak,ieb/jackrabbit-oak,chetanmeh/jackrabbit-oak,AndreasAbdi/jackrabbit-oak,afilimonov/jackrabbit-oak,FlakyTestDetection/jackrabbit-oak,tripodsan/jackrabbit-oak,afilimonov/jackrabbit-oak,meggermo/jackrabbit-oak,tripodsan/jackrabbit-oak,rombert/jackrabbit-oak,AndreasAbdi/jack... | /*
* 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 ... | oak-core/src/main/java/org/apache/jackrabbit/oak/core/SecureNodeState.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 ... | OAK-709: Consider moving permission evaluation to the node state level
- implement rebasing of secure node state differences on top of non secure node state giving transient changes precedence: no need to override compareAgainstBaseState
- remove done TODOs
git-svn-id: 67138be12999c61558c3dd34328380c8e4523e73@1468820 ... | oak-core/src/main/java/org/apache/jackrabbit/oak/core/SecureNodeState.java | OAK-709: Consider moving permission evaluation to the node state level - implement rebasing of secure node state differences on top of non secure node state giving transient changes precedence: no need to override compareAgainstBaseState - remove done TODOs | |
Java | apache-2.0 | 35ba26d5c8ac399fefe5d308556fe94e32628891 | 0 | realityforge/arez,realityforge/arez,realityforge/arez | package org.realityforge.arez.processor;
import com.google.auto.service.AutoService;
import com.squareup.javapoet.AnnotationSpec;
import com.squareup.javapoet.ClassName;
import com.squareup.javapoet.MethodSpec;
import com.squareup.javapoet.ParameterSpec;
import com.squareup.javapoet.TypeName;
import com.squareup.javap... | processor/src/main/java/org/realityforge/arez/processor/ArezProcessor.java | package org.realityforge.arez.processor;
import com.google.auto.service.AutoService;
import com.squareup.javapoet.AnnotationSpec;
import com.squareup.javapoet.ClassName;
import com.squareup.javapoet.MethodSpec;
import com.squareup.javapoet.ParameterSpec;
import com.squareup.javapoet.TypeName;
import com.squareup.javap... | Extract constant for context field name
| processor/src/main/java/org/realityforge/arez/processor/ArezProcessor.java | Extract constant for context field name | |
Java | apache-2.0 | e0021ade99fb570d1771ca6721ab812d40cfa033 | 0 | martamarszal/mini-mesos,ContainerSolutions/minimesos,jitpack-io/mini-mesos,mwl/mini-mesos,ContainerSolutions/minimesos,mwl/mini-mesos,ruo91/mini-mesos,puneetguptanitj/mini-mesos,ContainerSolutions/mini-mesos,ContainerSolutions/mini-mesos,ContainerSolutions/minimesos,jitpack-io/mini-mesos,Praqma/mini-mesos,jhftrifork/mi... | package org.apache.mesos.mini.docker;
import com.github.dockerjava.api.DockerClient;
import com.github.dockerjava.api.command.CreateContainerCmd;
import com.github.dockerjava.api.command.CreateContainerResponse;
import com.github.dockerjava.api.command.InspectContainerResponse;
import com.github.dockerjava.api.command... | src/main/java/org/apache/mesos/mini/docker/DockerUtil.java | package org.apache.mesos.mini.docker;
import com.github.dockerjava.api.DockerClient;
import com.github.dockerjava.api.command.*;
import com.jayway.awaitility.core.ConditionTimeoutException;
import com.sun.tools.doclets.internal.toolkit.util.DocFinder;
import org.apache.commons.io.IOUtils;
import org.apache.commons.io.... | Fixed unused import
| src/main/java/org/apache/mesos/mini/docker/DockerUtil.java | Fixed unused import | |
Java | apache-2.0 | 0f2a9c211cc04d7fb147917909c3b8f48452b4cf | 0 | bozimmerman/CoffeeMud,bozimmerman/CoffeeMud,bozimmerman/CoffeeMud,bozimmerman/CoffeeMud | package com.planet_ink.coffee_mud.Abilities.Tech;
import com.planet_ink.coffee_mud.core.interfaces.*;
import com.planet_ink.coffee_mud.core.*;
import com.planet_ink.coffee_mud.core.collections.*;
import com.planet_ink.coffee_mud.Abilities.StdAbility;
import com.planet_ink.coffee_mud.Abilities.Common.CommonSkill;
... | com/planet_ink/coffee_mud/Abilities/Tech/AstroEngineering.java | package com.planet_ink.coffee_mud.Abilities.Tech;
import com.planet_ink.coffee_mud.core.interfaces.*;
import com.planet_ink.coffee_mud.core.*;
import com.planet_ink.coffee_mud.core.collections.*;
import com.planet_ink.coffee_mud.Abilities.StdAbility;
import com.planet_ink.coffee_mud.Abilities.Common.CommonSkill;
... |
git-svn-id: svn://192.168.1.10/public/CoffeeMud@14112 0d6f1817-ed0e-0410-87c9-987e46238f29
| com/planet_ink/coffee_mud/Abilities/Tech/AstroEngineering.java | ||
Java | apache-2.0 | 1722d20426db7333c4cc485282390e39d165869b | 0 | rcordovano/autopsy,wschaeferB/autopsy,rcordovano/autopsy,esaunders/autopsy,APriestman/autopsy,APriestman/autopsy,wschaeferB/autopsy,millmanorama/autopsy,rcordovano/autopsy,rcordovano/autopsy,wschaeferB/autopsy,esaunders/autopsy,APriestman/autopsy,APriestman/autopsy,APriestman/autopsy,millmanorama/autopsy,wschaeferB/aut... | /*
* Autopsy Forensic Browser
*
* Copyright 2011 - 2013 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* ht... | Core/src/org/sleuthkit/autopsy/modules/hashdatabase/HashDbIngestModule.java | /*
* Autopsy Forensic Browser
*
* Copyright 2011 - 2013 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* ht... | Cleanup
| Core/src/org/sleuthkit/autopsy/modules/hashdatabase/HashDbIngestModule.java | Cleanup |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.