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
0be5f6c7e48edc24f11712b303e6c7b59136384b
0
Olgajjj/java_pft,Olgajjj/java_pft
package ru.stqa.pft.sandbox; public class Point { int x, y; public Point(int x, int y){ this.x=x; this.y=y; } //вычисляем расстояние от текущей точки до переданной public double calcDistance(Point p){ return Math.sqrt(Math.pow(this.x-p.x, 2)+Math.pow(this.y-p.y, 2)); }...
sandbox/src/main/java/ru/stqa/pft/sandbox/Point.java
package ru.stqa.pft.sandbox; public class Point { int x, y; public Point(int x, int y){ this.x=x; this.y=y; } //вычисляем расстояние от текущей точки до переданной public double calcDistance(Point p){ return Math.sqrt(Math.pow(x-p.x, 2)+Math.pow(y-p.y, 2)); } @Ove...
дз1 финал
sandbox/src/main/java/ru/stqa/pft/sandbox/Point.java
дз1 финал
Java
apache-2.0
22db83fd604283f927cbdfdfcbfe227e57a141ef
0
blue42u/swift-t,JohnPJenkins/swift-t,JohnPJenkins/swift-t,basheersubei/swift-t,blue42u/swift-t,blue42u/swift-t,basheersubei/swift-t,blue42u/swift-t,swift-lang/swift-t,swift-lang/swift-t,JohnPJenkins/swift-t,swift-lang/swift-t,JohnPJenkins/swift-t,basheersubei/swift-t,blue42u/swift-t,basheersubei/swift-t,JohnPJenkins/sw...
/* * Copyright 2013 University of Chicago and Argonne National Laboratory * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unles...
code/src/exm/stc/common/util/Pair.java
/* * Copyright 2013 University of Chicago and Argonne National Laboratory * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unles...
Bugfix in Pair.equals git-svn-id: 47705994653588c662f4ea400dfe88107361c0e2@14597 dc4e9af1-7f46-4ead-bba6-71afc04862de
code/src/exm/stc/common/util/Pair.java
Bugfix in Pair.equals
Java
apache-2.0
dfe6fe82eb1ff0f508b260b0209c6641aae9f69d
0
RedRoma/YelpJavaClient
/* * Copyright 2016 RedRoma, Inc.. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law...
src/test/java/tech/redroma/yelp/YelpAPIImplTest.java
/* * Copyright 2016 RedRoma, Inc.. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law...
Adds additional unit test cases when things go wrong
src/test/java/tech/redroma/yelp/YelpAPIImplTest.java
Adds additional unit test cases when things go wrong
Java
apache-2.0
74018661fd363e79d9f551753e442e8121f3bbee
0
chongma/BootsFaces-OSP,asterd/BootsFaces-OSP,jepsar/BootsFaces-OSP,mtvweb/BootsFaces-OSP,TheCoder4eu/BootsFaces-OSP,chongma/BootsFaces-OSP,TheCoder4eu/BootsFaces-OSP,jepsar/BootsFaces-OSP,asterd/BootsFaces-OSP,mtvweb/BootsFaces-OSP
/** * Copyright 2014 Riccardo Massera (TheCoder4.Eu) * * This file is part of BootsFaces. * * BootsFaces 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, ...
src/main/java/net/bootsfaces/component/NavLink.java
/** * Copyright 2014 Riccardo Massera (TheCoder4.Eu) * * This file is part of BootsFaces. * * BootsFaces 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, ...
Removed unneeded code for href rendering in NavLink. ( #200 )
src/main/java/net/bootsfaces/component/NavLink.java
Removed unneeded code for href rendering in NavLink. ( #200 )
Java
apache-2.0
2e3e69ce02524657748d76d0d47686f1c97731b4
0
ronsigal/xerces,RackerWilliams/xercesj,RackerWilliams/xercesj,ronsigal/xerces,RackerWilliams/xercesj,jimma/xerces,ronsigal/xerces,jimma/xerces,jimma/xerces
/* * The Apache Software License, Version 1.1 * * * Copyright (c) 1999,2000 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of...
src/org/apache/xerces/validators/common/XMLValidator.java
/* * The Apache Software License, Version 1.1 * * * Copyright (c) 1999,2000 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of...
follow up today AndyC's fix, do the samething for the attribute. --ericye git-svn-id: 21df804813e9d3638e43477f308dd0be51e5f30f@315812 13f79535-47bb-0310-9956-ffa450edef68
src/org/apache/xerces/validators/common/XMLValidator.java
follow up today AndyC's fix, do the samething for the attribute. --ericye
Java
apache-2.0
d4dcd713f16edf0457f233260e7d0bf485b47a1a
0
apache/cordova-plugin-statusbar,apache/cordova-plugin-statusbar
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
src/android/StatusBar.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 ...
refactor(android): simplify window & activity (#249)
src/android/StatusBar.java
refactor(android): simplify window & activity (#249)
Java
apache-2.0
433778a076e5a418012d05cccd8f8968f16fa3af
0
samskivert/libgdx,ttencate/libgdx,fwolff/libgdx,toa5/libgdx,kotcrab/libgdx,bsmr-java/libgdx,sarkanyi/libgdx,js78/libgdx,josephknight/libgdx,xoppa/libgdx,realitix/libgdx,bsmr-java/libgdx,jsjolund/libgdx,yangweigbh/libgdx,bladecoder/libgdx,josephknight/libgdx,ttencate/libgdx,ttencate/libgdx,bladecoder/libgdx,libgdx/libgd...
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.a...
gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ProgressBar.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.a...
Javadoc.
gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ProgressBar.java
Javadoc.
Java
apache-2.0
05cd0d33c9d73d3488bcee36431ab8e94f9b98ba
0
jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics
/* * Java Genetic Algorithm Library (@!identifier!@). * Copyright (c) @!year!@ Franz Wilhelmstötter * * 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 ...
src/main/java/org/jenetics/EnumGene.java
/* * Java Genetic Algorithm Library (@!identifier!@). * Copyright (c) @!year!@ Franz Wilhelmstötter * * 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 ...
Improve javadoc.
src/main/java/org/jenetics/EnumGene.java
Improve javadoc.
Java
apache-2.0
f9fa85862d0380c468227b7f2268fc47a34bb831
0
x-meta/x-meta
package org.xmeta.util; import ognl.Ognl; import ognl.OgnlException; import org.xmeta.Thing; public class OgnlUtil { private static String CACHE = "__ognl_attrPathCache_"; /** * 通过Ognl表达式取值, 事物的属性是Ognl的表达式。使用这种方式缓存了Ognl表达式。 * * @param thing * @param pathAttributeName * @param root * @re...
org.xmeta.engine/src/main/java/org/xmeta/util/OgnlUtil.java
package org.xmeta.util; import ognl.Ognl; import ognl.OgnlException; import org.xmeta.Thing; public class OgnlUtil { private static String CACHE = "__ognl_attrPathCache_"; /** * 通过Ognl表达式取值, 事物的属性是Ognl的表达式。使用这种方式缓存了Ognl表达式。 * * @param thing * @param pathAttributeName * @param root * @re...
修改了OgnlUtil
org.xmeta.engine/src/main/java/org/xmeta/util/OgnlUtil.java
修改了OgnlUtil
Java
apache-2.0
9b1bf2de4a098a494142c27f0dc3f4d2b8327f80
0
chunlinyao/fop,chunlinyao/fop,apache/fop,apache/fop,chunlinyao/fop,apache/fop,apache/fop,chunlinyao/fop,chunlinyao/fop,apache/fop
/* * 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/java/org/apache/fop/fonts/truetype/OTFSubSetFile.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 ...
FOP-2323: NPE caused by missing local subroutine index in private dictonary of OTF font git-svn-id: 102839466c3b40dd9c7e25c0a1a6d26afc40150a@1547330 13f79535-47bb-0310-9956-ffa450edef68
src/java/org/apache/fop/fonts/truetype/OTFSubSetFile.java
FOP-2323: NPE caused by missing local subroutine index in private dictonary of OTF font
Java
apache-2.0
4d46761b9e69b39c22aa530af1126e1e84991799
0
cbeams-archive/spring-framework-2.5.x,cbeams-archive/spring-framework-2.5.x,cbeams-archive/spring-framework-2.5.x,cbeams-archive/spring-framework-2.5.x
/* * Copyright 2002-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...
src/org/springframework/web/servlet/tags/TransformTag.java
/* * Copyright 2002-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...
use simpler "evaluate" signature git-svn-id: b619a0c99665f88f1afe72824344cefe9a1c8c90@8375 fd5a2b45-1f63-4059-99e9-3c7cb7fd75c8
src/org/springframework/web/servlet/tags/TransformTag.java
use simpler "evaluate" signature
Java
artistic-2.0
3af58b24a6cbfd9fe9febde22311dd453a1175a0
0
SpeedxPz/open2jam,open2jamorg/open2jam
package org.open2jam.render; import java.awt.Canvas; import java.awt.event.KeyEvent; import java.util.ArrayList; import javax.swing.JOptionPane; import java.util.Map; import org.open2jam.parser.ResourcesHandler; import org.open2jam.entities.*; public class Render extends Canvas implements GameWindowCallback { /** T...
ojn_render/org/open2jam/render/Render.java
package org.open2jam.render; import java.awt.Canvas; import java.awt.event.KeyEvent; import java.util.ArrayList; import javax.swing.JOptionPane; import java.util.Map; import org.open2jam.parser.ResourcesHandler; import org.open2jam.entities.*; public class Render extends Canvas implements GameWindowCallback { /** T...
java2d is not working, so I'll remove it for now
ojn_render/org/open2jam/render/Render.java
java2d is not working, so I'll remove it for now
Java
bsd-3-clause
2b23f2e5622ecca0a3418af08a84ea5fdd04f84a
0
alexbirkett/kiwi-java
package no.birkett.kiwi; import java.util.*; /** * Created by alex on 30/01/15. */ public class Solver { private static class Tag { Symbol marker; Symbol other; public Tag(){ marker = new Symbol(); other = new Symbol(); } } private static class...
src/main/java/no/birkett/kiwi/Solver.java
package no.birkett.kiwi; import java.util.*; /** * Created by alex on 30/01/15. */ public class Solver { private static class Tag { Symbol marker; Symbol other; public Tag(){ marker = new Symbol(); other = new Symbol(); } } private static class...
Erase the leaving symbols, not the entering symbols in dualOptimize. Matches the Kiwi C++ implementation: https://github.com/nucleic/kiwi/blob/0989ff015fdea5c59c90b1fd87383dfe6f733257/kiwi/solverimpl.h#L615
src/main/java/no/birkett/kiwi/Solver.java
Erase the leaving symbols, not the entering symbols in dualOptimize. Matches the Kiwi C++ implementation: https://github.com/nucleic/kiwi/blob/0989ff015fdea5c59c90b1fd87383dfe6f733257/kiwi/solverimpl.h#L615
Java
mit
1e6c16525d79bcc4e9351edaf5ec6c4221026fdd
0
nking/curvature-scale-space-corners-and-transformations,nking/curvature-scale-space-corners-and-transformations
package algorithms.imageProcessing; import algorithms.QuickSort; import algorithms.compGeometry.LinesAndAngles; import algorithms.util.PairIntArray; import gnu.trove.list.TDoubleList; import gnu.trove.list.TIntList; import gnu.trove.list.array.TDoubleArrayList; import gnu.trove.list.array.TIntArrayList; import gnu.tro...
src/algorithms/imageProcessing/PartialShapeMatcher.java
package algorithms.imageProcessing; import algorithms.QuickSort; import algorithms.compGeometry.LinesAndAngles; import algorithms.util.PairIntArray; import gnu.trove.list.TDoubleList; import gnu.trove.list.TIntList; import gnu.trove.list.array.TDoubleArrayList; import gnu.trove.list.array.TIntArrayList; import gnu.tro...
more towards refactoring the reading of blocks in PartialShapeMatcher
src/algorithms/imageProcessing/PartialShapeMatcher.java
more towards refactoring the reading of blocks in PartialShapeMatcher
Java
mit
5cab123cf07cff67d985c61bb02d2c24168d0736
0
qiniu/java-sdk
package com.qiniu.storage; import com.qiniu.common.QiniuException; import com.qiniu.http.Client; import com.qiniu.http.Response; import com.qiniu.util.StringMap; import java.io.File; import java.io.InputStream; import java.util.ArrayList; import java.util.List; import java.util.concurrent.Callable; import java.util.c...
src/main/java/com/qiniu/storage/ConcurrentResumeUploader.java
package com.qiniu.storage; import com.qiniu.common.QiniuException; import com.qiniu.http.Client; import com.qiniu.http.Response; import com.qiniu.util.StringMap; import java.io.File; import java.io.InputStream; import java.util.ArrayList; import java.util.List; import java.util.concurrent.Callable; import java.util.c...
modify code desc
src/main/java/com/qiniu/storage/ConcurrentResumeUploader.java
modify code desc
Java
mit
9f75ef121bfd95f7bdc5a8c864f13a0c5b5743a5
0
emc-mongoose/mongoose
package com.emc.mongoose.common.net; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; import sun.rmi.server.UnicastRef; import sun.rmi.transport.Channel; import sun.rmi.transport.LiveRef; import sun.rmi.transport.tcp.TCPEndpoint; import java.io.IOException; imp...
common/src/main/java/com/emc/mongoose/common/net/ServiceUtil.java
package com.emc.mongoose.common.net; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; import sun.rmi.server.UnicastRef; import sun.rmi.transport.Channel; import sun.rmi.transport.LiveRef; import sun.rmi.transport.tcp.TCPEndpoint; import java.io.IOException; imp...
fixed RMI port experiment
common/src/main/java/com/emc/mongoose/common/net/ServiceUtil.java
fixed RMI port experiment
Java
mit
b06b2490b2d027af54264a50abeaf5ce94e13032
0
Coderhypo/ayanami,Coderhypo/ayanami,Coderhypo/ayanami
package xyz.acmer.entity.problem; import xyz.acmer.entity.user.User; import javax.persistence.*; import java.util.Date; /** * 提交状态表 * Created by hypo on 16-2-11. */ @Entity public class Status { /** * 站内runid */ private Long runId; /** * 提交者 */ private User submiter; /**...
src/main/java/xyz/acmer/entity/problem/Status.java
package xyz.acmer.entity.problem; import xyz.acmer.entity.user.User; import javax.persistence.*; import java.util.Date; /** * 提交状态表 * Created by hypo on 16-2-11. */ @Entity public class Status { /** * 站内runid */ private Long runId; /** * 提交者 */ private User submiter; /**...
update status
src/main/java/xyz/acmer/entity/problem/Status.java
update status
Java
mit
0c1fefa39a938b5fe73500e452ffd34a1f568ae0
0
literacyapp-org/literacyapp-web,elimu-ai/webapp,elimu-ai/webapp,literacyapp-org/literacyapp-web,elimu-ai/webapp,literacyapp-org/literacyapp-web,elimu-ai/webapp,literacyapp-org/literacyapp-web
package ai.elimu.web.content; import ai.elimu.dao.AllophoneDao; import ai.elimu.dao.AudioContributionEventDao; import java.security.Principal; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSession; import org.apache.commons.lang.StringUtils; import org.apache.logging.log4j.Logger; impor...
src/main/java/ai/elimu/web/content/MainContentController.java
package ai.elimu.web.content; import ai.elimu.dao.AllophoneDao; import ai.elimu.dao.AudioContributionEventDao; import java.security.Principal; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSession; import org.apache.commons.lang.StringUtils; import org.apache.logging.log4j.Logger; impor...
#1401 Skip Edit Contribution page for dev - deletion of unwanted line
src/main/java/ai/elimu/web/content/MainContentController.java
#1401 Skip Edit Contribution page for dev - deletion of unwanted line
Java
mit
dd2e36d8bb90c3afafd1b4cf75563d853fc66aff
0
Mashape/unirest-java,Mashape/unirest-java
/** * The MIT License * * Copyright for portions of OpenUnirest/uniresr-java are held by Mashape (c) 2013 as part of Kong/unirest-java. * All other copyright for OpenUnirest/unirest-java are held by OpenUnirest (c) 2018. * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this s...
src/main/java/unirest/HttpRequest.java
/** * The MIT License * * Copyright for portions of OpenUnirest/uniresr-java are held by Mashape (c) 2013 as part of Kong/unirest-java. * All other copyright for OpenUnirest/unirest-java are held by OpenUnirest (c) 2018. * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this s...
more docs
src/main/java/unirest/HttpRequest.java
more docs
Java
agpl-3.0
e11e5cb0c86b51c7970232a9e7757a9926f590e7
0
imCodePartnerAB/imcms,imCodePartnerAB/imcms,imCodePartnerAB/imcms
package com.imcode.imcms.servlet.superadmin; import com.imcode.util.HumanReadable; import com.imcode.util.MultipartHttpServletRequest; import imcode.server.Imcms; import imcode.server.ImcmsServices; import imcode.server.WebAppGlobalConstants; import imcode.server.user.UserDomainObject; import imcode.util.Utility; impo...
server/src/com/imcode/imcms/servlet/superadmin/FileAdmin.java
package com.imcode.imcms.servlet.superadmin; import com.imcode.util.HumanReadable; import com.imcode.util.MultipartHttpServletRequest; import imcode.server.Imcms; import imcode.server.ImcmsServices; import imcode.server.WebAppGlobalConstants; import imcode.server.user.UserDomainObject; import imcode.util.Utility; impo...
Issue 3525: Fix directory-changing on windows. git-svn-id: b7e9aa1d6cd963481915708f70423d437278b157@4546 bd66a97b-2aff-0310-9095-89ca5cabf5a6
server/src/com/imcode/imcms/servlet/superadmin/FileAdmin.java
Issue 3525: Fix directory-changing on windows.
Java
agpl-3.0
7c42f2a4bb8f975e365f298b4feb63bf92dc8186
0
ibcn-cloudlet/dianne,ibcn-cloudlet/dianne,ibcn-cloudlet/dianne,ibcn-cloudlet/dianne,ibcn-cloudlet/dianne,ibcn-cloudlet/dianne,ibcn-cloudlet/dianne
/******************************************************************************* * DIANNE - Framework for distributed artificial neural networks * Copyright (C) 2015 iMinds - IBCN - UGent * * This file is part of DIANNE. * * DIANNE is free software: you can redistribute it and/or modify * it under the terms of...
be.iminds.iot.dianne.tensor/src/be/iminds/iot/dianne/tensor/Tensor.java
/******************************************************************************* * DIANNE - Framework for distributed artificial neural networks * Copyright (C) 2015 iMinds - IBCN - UGent * * This file is part of DIANNE. * * DIANNE is free software: you can redistribute it and/or modify * it under the terms of...
add Tensor clone convenience method
be.iminds.iot.dianne.tensor/src/be/iminds/iot/dianne/tensor/Tensor.java
add Tensor clone convenience method
Java
lgpl-2.1
4b21ff00a1449af3d9646ea34b71fc586d0c9210
0
beast-dev/beast-mcmc,adamallo/beast-mcmc,adamallo/beast-mcmc,adamallo/beast-mcmc,4ment/beast-mcmc,beast-dev/beast-mcmc,adamallo/beast-mcmc,adamallo/beast-mcmc,beast-dev/beast-mcmc,beast-dev/beast-mcmc,adamallo/beast-mcmc,4ment/beast-mcmc,beast-dev/beast-mcmc,beast-dev/beast-mcmc,4ment/beast-mcmc,4ment/beast-mcmc,4ment/...
/* * SubtreeLeapOperator.java * * Copyright (c) 2002-2015 Alexei Drummond, Andrew Rambaut and Marc Suchard * * This file is part of BEAST. * See the NOTICE file distributed with this work for additional * information regarding copyright ownership and licensing. * * BEAST is free software; you can redistribute ...
src/dr/evomodel/operators/SubtreeLeapOperator.java
/* * SubtreeLeapOperator.java * * Copyright (c) 2002-2015 Alexei Drummond, Andrew Rambaut and Marc Suchard * * This file is part of BEAST. * See the NOTICE file distributed with this work for additional * information regarding copyright ownership and licensing. * * BEAST is free software; you can redistribute ...
Fixing STL's slide only function.
src/dr/evomodel/operators/SubtreeLeapOperator.java
Fixing STL's slide only function.
Java
lgpl-2.1
fb681b1fdcdca4585dc1dbd61f743ad683290c13
0
certusoft/swingx,certusoft/swingx
/* * $Id$ * * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle, * Santa Clara, California 95054, U.S.A. All rights reserved. */ package org.jdesktop.swingx; import java.awt.Component; import java.awt.event.ActionEvent; import java.util.regex.Pattern; import javax.swing.AbstractAction; import javax.swi...
src/java/org/jdesktop/swingx/JXFindPanel.java
/* * $Id$ * * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle, * Santa Clara, California 95054, U.S.A. All rights reserved. */ package org.jdesktop.swingx; import java.awt.Component; import java.awt.event.ActionEvent; import javax.swing.AbstractAction; import javax.swing.Action; import javax.swing.Bo...
minor cleanup: - added hook for customizing found state - release old searchable on setSearchable
src/java/org/jdesktop/swingx/JXFindPanel.java
minor cleanup: - added hook for customizing found state - release old searchable on setSearchable
Java
apache-2.0
144e043543afa5071a178b4f6acf43beb2ac7f96
0
SpineEventEngine/core-java,SpineEventEngine/core-java,SpineEventEngine/core-java
/* * Copyright 2018, TeamDev Ltd. 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 EXPRES...
server/src/main/java/io/spine/server/entity/storage/Columns.java
/* * Copyright 2018, TeamDev Ltd. 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 EXPRES...
Clarify doc
server/src/main/java/io/spine/server/entity/storage/Columns.java
Clarify doc
Java
apache-2.0
6339b8f54751c3c6af4a8911c0f98196f5ec600e
0
AnySoftKeyboard/AnySoftKeyboard,OmerMachluf/Mykeyboard,AnySoftKeyboard/AnySoftKeyboard,AnySoftKeyboard/AnySoftKeyboard,AnySoftKeyboard/AnySoftKeyboard,OmerMachluf/Mykeyboard,OmerMachluf/Mykeyboard,OmerMachluf/Mykeyboard,OmerMachluf/Mykeyboard,AnySoftKeyboard/AnySoftKeyboard,OmerMachluf/Mykeyboard,AnySoftKeyboard/AnySof...
package com.menny.android.anysoftkeyboard.keyboards; import java.util.HashMap; import android.content.res.Resources; import android.content.res.XmlResourceParser; import android.inputmethodservice.Keyboard; import android.util.Log; import android.view.inputmethod.EditorInfo; import com.menny.android.anysoftkeyboard...
src/com/menny/android/anysoftkeyboard/keyboards/AnyKeyboard.java
package com.menny.android.anysoftkeyboard.keyboards; import java.util.HashMap; import android.content.res.Resources; import android.content.res.XmlResourceParser; import android.inputmethodservice.Keyboard; import android.util.Log; import android.view.inputmethod.EditorInfo; import com.menny.android.anysoftkeyboard...
Issue 141
src/com/menny/android/anysoftkeyboard/keyboards/AnyKeyboard.java
Issue 141
Java
apache-2.0
de7cd49ae6d67a226b7745eec056ccb03c0702e0
0
joansmith/supernode,bitsofproof/supernode
/* * Copyright 2012 Tamas Blummer tamas@bitsofproof.com * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
src/main/java/com/bitsofproof/supernode/model/JpaBlockStore.java
/* * Copyright 2012 Tamas Blummer tamas@bitsofproof.com * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
trying join with UTXO and TXOUT
src/main/java/com/bitsofproof/supernode/model/JpaBlockStore.java
trying join with UTXO and TXOUT
Java
apache-2.0
95b31ccd5716acda30f4b5a016718eb23eb1348a
0
cprice404/config,melrief/config,typesafehub/config,jasonchaffee/config,meln1k/config,yvvq/config,twitter-forks/config,roznalex/config,malexandert/config,leakingtapan/config,wmudge/config,roznalex/config,zeq9069/config,melrief/config,leakingtapan/config,cprice404/config,rmuhamedgaliev/config,rmuhamedgaliev/config,twitte...
/** * Copyright (C) 2011-2012 Typesafe Inc. <http://typesafe.com> */ package com.typesafe.config.impl; import java.io.File; import java.lang.ref.WeakReference; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map;...
config/src/main/java/com/typesafe/config/impl/ConfigImpl.java
/** * Copyright (C) 2011-2012 Typesafe Inc. <http://typesafe.com> */ package com.typesafe.config.impl; import java.io.File; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Properties; import...
Use a WeakReference to cache class loaders Fixes #171
config/src/main/java/com/typesafe/config/impl/ConfigImpl.java
Use a WeakReference to cache class loaders
Java
apache-2.0
bd70528441890456283e5e2ecf8ca59493b7cdf6
0
IhorZak/ALog
/* * Copyright 2022 Ihor Zakhozhyi * * 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 ...
library/src/main/java/ua/pp/ihorzak/alog/FileALogPrinter.java
/* * Copyright 2022 Ihor Zakhozhyi * * 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 ...
Fix end new line handling in FileALogPrinter
library/src/main/java/ua/pp/ihorzak/alog/FileALogPrinter.java
Fix end new line handling in FileALogPrinter
Java
apache-2.0
819a9250c9c5ddee37af71668b99785abb92b431
0
ublanquet/training-java,ublanquet/training-java,ublanquet/training-java
package persistance.dao; import persistance.model.Company; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.time.LocalDateTime; import java.util.ArrayList; public class DaoCompany implements DaoCompanyI { ...
src/main/java/persistance/dao/DaoCompany.java
package persistance.dao; import persistance.model.Company; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.time.LocalDateTime; import java.util.ArrayList; public class DaoCompany implements DaoCompanyI { ...
[refactor]persistance utils cleanup
src/main/java/persistance/dao/DaoCompany.java
[refactor]persistance utils cleanup
Java
apache-2.0
6689f958d34d9f1fb3875fe32e48a254b1530fe7
0
laborautonomo/jitsi,martin7890/jitsi,dkcreinoso/jitsi,459below/jitsi,marclaporte/jitsi,damencho/jitsi,laborautonomo/jitsi,jibaro/jitsi,cobratbq/jitsi,Metaswitch/jitsi,iant-gmbh/jitsi,iant-gmbh/jitsi,level7systems/jitsi,iant-gmbh/jitsi,bhatvv/jitsi,marclaporte/jitsi,dkcreinoso/jitsi,martin7890/jitsi,bhatvv/jitsi,Metaswi...
/* * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client. * * Distributable under LGPL license. * See terms of license at gnu.org. */ package net.java.sip.communicator.impl.media; import java.io.*; import java.net.*; import java.text.*; import java.util.*; import javax.media.*; import javax.me...
src/net/java/sip/communicator/impl/media/CallSessionImpl.java
/* * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client. * * Distributable under LGPL license. * See terms of license at gnu.org. */ package net.java.sip.communicator.impl.media; import java.io.*; import java.net.*; import java.text.*; import java.util.*; import javax.media.*; import javax.me...
Setting the receive buffer to 100ms
src/net/java/sip/communicator/impl/media/CallSessionImpl.java
Setting the receive buffer to 100ms
Java
apache-2.0
325142dda849c7150f41b975114cccab90608da6
0
ashwinrayaprolu1984/ringojs,ringo/ringojs,Transcordia/ringojs,Transcordia/ringojs,ashwinrayaprolu1984/ringojs,Transcordia/ringojs,ashwinrayaprolu1984/ringojs,ashwinrayaprolu1984/ringojs,ringo/ringojs,oberhamsi/ringojs,oberhamsi/ringojs,Transcordia/ringojs,ringo/ringojs,oberhamsi/ringojs,ringo/ringojs
/* * Helma License Notice * * The contents of this file are subject to the Helma License * Version 2.0 (the "License"). You may not use this file except in * compliance with the License. A copy of the License is available at * http://adele.helma.org/download/helma/license.txt * * Copyright 1998-2003 Helma Softw...
src/org/ringojs/repository/ZipRepository.java
/* * Helma License Notice * * The contents of this file are subject to the Helma License * Version 2.0 (the "License"). You may not use this file except in * compliance with the License. A copy of the License is available at * http://adele.helma.org/download/helma/license.txt * * Copyright 1998-2003 Helma Softw...
Minor cleanup in ZipRepository constructor
src/org/ringojs/repository/ZipRepository.java
Minor cleanup in ZipRepository constructor
Java
apache-2.0
7344bf4f8ae4487a6b8e0a9f3609105382c3ae3c
0
javild/opencga,j-coll/opencga,opencb/opencga,javild/opencga,opencb/opencga,javild/opencga,opencb/opencga,j-coll/opencga,j-coll/opencga,opencb/opencga,javild/opencga,j-coll/opencga,javild/opencga,javild/opencga,opencb/opencga,opencb/opencga,j-coll/opencga,j-coll/opencga
package org.opencb.opencga.core.common; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; import java.nio.file.Paths; /** * Created by hpccoll1 on 11/05/15. */ public class UriUtils { public static void checkUri(URI uri, String uriName, String schema) throws IOException { ...
opencga-core/src/main/java/org/opencb/opencga/core/common/UriUtils.java
package org.opencb.opencga.core.common; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; import java.nio.file.Paths; /** * Created by hpccoll1 on 11/05/15. */ public class UriUtils { public static void checkUri(URI uri, String uriName, String schema) throws IOException { ...
core: Fix UriUtils createDirectoryUri Did not create a directory uri (ended with "/") if the given input was without scheme, and the file does not exist in the file system.
opencga-core/src/main/java/org/opencb/opencga/core/common/UriUtils.java
core: Fix UriUtils createDirectoryUri
Java
apache-2.0
8a25dbc0da65395c75ccf8cdde2722cee7af5087
0
oriontribunal/CoffeeMud,MaxRau/CoffeeMud,Tycheo/coffeemud,bozimmerman/CoffeeMud,MaxRau/CoffeeMud,bozimmerman/CoffeeMud,oriontribunal/CoffeeMud,sfunk1x/CoffeeMud,bozimmerman/CoffeeMud,MaxRau/CoffeeMud,bozimmerman/CoffeeMud,sfunk1x/CoffeeMud,Tycheo/coffeemud,MaxRau/CoffeeMud,oriontribunal/CoffeeMud,oriontribunal/CoffeeMu...
package com.planet_ink.coffee_mud.Abilities.Spells; import com.planet_ink.coffee_mud.core.interfaces.*; import com.planet_ink.coffee_mud.core.*; import com.planet_ink.coffee_mud.Abilities.interfaces.*; import com.planet_ink.coffee_mud.Areas.interfaces.*; import com.planet_ink.coffee_mud.Behaviors.interfaces.*; im...
com/planet_ink/coffee_mud/Abilities/Spells/Spell_TimeStop.java
package com.planet_ink.coffee_mud.Abilities.Spells; import com.planet_ink.coffee_mud.core.interfaces.*; import com.planet_ink.coffee_mud.core.*; import com.planet_ink.coffee_mud.Abilities.interfaces.*; import com.planet_ink.coffee_mud.Areas.interfaces.*; import com.planet_ink.coffee_mud.Behaviors.interfaces.*; im...
git-svn-id: svn://192.168.1.10/public/CoffeeMud@8031 0d6f1817-ed0e-0410-87c9-987e46238f29
com/planet_ink/coffee_mud/Abilities/Spells/Spell_TimeStop.java
Java
apache-2.0
ca653d0481d3b43b1a1111a508d1ed586ca31ebd
0
cbarrin/EAGERFloodlight,cbarrin/EAGERFloodlight,cbarrin/EAGERFloodlight
package net.floodlightcontroller.randomizer.web; import net.floodlightcontroller.randomizer.IRandomizerService; import net.floodlightcontroller.randomizer.Server; import org.restlet.resource.Get; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.HashMap; import java.util.List; import java.util...
src/main/java/net/floodlightcontroller/randomizer/web/InfoResource.java
package net.floodlightcontroller.randomizer.web; import net.floodlightcontroller.randomizer.IRandomizerService; import net.floodlightcontroller.randomizer.Server; import org.restlet.resource.Get; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.HashMap; import java.util.List; import java.util...
Small fixes to the REST API after the server update.
src/main/java/net/floodlightcontroller/randomizer/web/InfoResource.java
Small fixes to the REST API after the server update.
Java
apache-2.0
b11369c73d012dc3eb5543cdb4ad83498e1ba0ca
0
MyersResearchGroup/iBioSim,MyersResearchGroup/iBioSim,MyersResearchGroup/iBioSim
/** * */ package biomodel.gui.schematic; import java.awt.Rectangle; import java.io.File; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; import java.util.HashMap; import java.util.Hashtable; import java.util.Properties; import java.util....
gui/src/biomodel/gui/schematic/BioGraph.java
/** * */ package biomodel.gui.schematic; import java.awt.Rectangle; import java.io.File; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; import java.util.HashMap; import java.util.Hashtable; import java.util.Properties; import java.util....
Add edges for constraints and events.
gui/src/biomodel/gui/schematic/BioGraph.java
Add edges for constraints and events.
Java
apache-2.0
330b2ad1ce493f608152358a50a0ea6158cb1946
0
452/USBHIDTerminal,452/USBHIDTerminal,452/USBHIDTerminal
package com.appspot.usbhidterminal.core; import java.nio.ByteBuffer; import java.util.LinkedList; import java.util.List; import android.app.PendingIntent; import android.app.Service; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentF...
src/com/appspot/usbhidterminal/core/AbstractUSBHIDService.java
package com.appspot.usbhidterminal.core; import java.util.LinkedList; import java.util.List; import android.app.PendingIntent; import android.app.Service; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.hardwa...
Updated USB HID read API, USED UsbRequest queue
src/com/appspot/usbhidterminal/core/AbstractUSBHIDService.java
Updated USB HID read API, USED UsbRequest queue
Java
apache-2.0
584d3cd8f5c8a04b463681ebcf49b18cca41541d
0
java110/MicroCommunity,java110/MicroCommunity,java110/MicroCommunity,java110/MicroCommunity
/* * Copyright 2017-2020 吴学文 and java110 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 by applicable l...
service-user/src/main/java/com/java110/user/cmd/menu/ListCatalogCmd.java
/* * Copyright 2017-2020 吴学文 and java110 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 by applicable l...
优化菜单查询功能
service-user/src/main/java/com/java110/user/cmd/menu/ListCatalogCmd.java
优化菜单查询功能
Java
apache-2.0
bd4433ca01f7cf7e57a57c98de528096188914b2
0
ham1/jmeter,etnetera/jmeter,ham1/jmeter,etnetera/jmeter,ham1/jmeter,apache/jmeter,benbenw/jmeter,benbenw/jmeter,apache/jmeter,etnetera/jmeter,apache/jmeter,benbenw/jmeter,benbenw/jmeter,etnetera/jmeter,ham1/jmeter,apache/jmeter,ham1/jmeter,etnetera/jmeter,apache/jmeter
// $Header$ /* * 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/LICENSE-2.0 * * Unless requ...
src/components/org/apache/jmeter/visualizers/Graph.java
// $Header$ /* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy * of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requ...
Bug 33403 - thread safety problems git-svn-id: https://svn.apache.org/repos/asf/jakarta/jmeter/branches/rel-2-1@325754 13f79535-47bb-0310-9956-ffa450edef68 Former-commit-id: 27da3bf8a1e53d6653efb4ebce601ef3ff94e895
src/components/org/apache/jmeter/visualizers/Graph.java
Bug 33403 - thread safety problems
Java
apache-2.0
3d8fca22e070d211a1133ddeed16071c8b40056a
0
facebook/litho,facebook/litho,facebook/litho,facebook/litho,facebook/litho,facebook/litho
/** * Copyright (c) 2014-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ package co...
src/main/java/com/facebook/components/InternalNode.java
/** * Copyright (c) 2014-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ package co...
Lines authored by marcocova This commit forms part of the blame-preserving initial commit suite.
src/main/java/com/facebook/components/InternalNode.java
Lines authored by marcocova
Java
apache-2.0
73d9067226671adb6410ccfb4d5ca2f00283c82b
0
1haodian/spark,dbtsai/spark,nlalevee/spark,minixalpha/spark,goldmedal/spark,ueshin/apache-spark,icexelloss/spark,hhbyyh/spark,cin/spark,cloud-fan/spark,shuangshuangwang/spark,nchammas/spark,markhamstra/spark,mdespriee/spark,maropu/spark,1haodian/spark,eyalfa/spark,JoshRosen/spark,wangyum/spark,actuaryzhang/spark,ConeyL...
/* * 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 ...
common/unsafe/src/main/java/org/apache/spark/unsafe/types/UTF8String.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 ...
[SPARK-21967][CORE] org.apache.spark.unsafe.types.UTF8String#compareTo Should Compare 8 Bytes at a Time for Better Performance ## What changes were proposed in this pull request? * Using 64 bit unsigned long comparison instead of unsigned int comparison in `org.apache.spark.unsafe.types.UTF8String#compareTo` for bett...
common/unsafe/src/main/java/org/apache/spark/unsafe/types/UTF8String.java
[SPARK-21967][CORE] org.apache.spark.unsafe.types.UTF8String#compareTo Should Compare 8 Bytes at a Time for Better Performance
Java
bsd-3-clause
d9516a9d7c02ee1ec2d1148a71b49f954a7d0cf2
0
PedeLa/CAE-Model-Persistence-Service,PedeLa/CAE-Model-Persistence-Service
package i5.las2peer.services.modelPersistenceService; import java.io.Serializable; import java.net.HttpURLConnection; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import javax.ws.rs.BadRequestException; import javax...
src/main/i5/las2peer/services/modelPersistenceService/RESTResources.java
package i5.las2peer.services.modelPersistenceService; import java.io.Serializable; import java.net.HttpURLConnection; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import javax.ws.rs.BadRequestException; import javax...
Added debug message for postDoc method
src/main/i5/las2peer/services/modelPersistenceService/RESTResources.java
Added debug message for postDoc method
Java
mit
8c45eb9825e1db38d29cd9cf25106cfb5cfd2c3c
0
Pozo/bkk-info
package com.github.pozo.bkkinfo.activities; import com.github.pozo.bkkinfo.R; import com.github.pozo.bkkinfo.services.NotificationService; import com.github.pozo.bkkinfo.shared.Constants; import com.github.pozo.bkkinfo.shared.NetworkConnectionHelper; import android.content.Intent; import android.content.SharedPrefere...
src/com/github/pozo/bkkinfo/activities/BasicPreferenceActivity.java
package com.github.pozo.bkkinfo.activities; import com.github.pozo.bkkinfo.R; import com.github.pozo.bkkinfo.services.NotificationService; import com.github.pozo.bkkinfo.shared.Constants; import com.github.pozo.bkkinfo.shared.NetworkConnectionHelper; import android.content.Intent; import android.os.Bundle; import and...
Added preference reading at onCreate and refactored service starting
src/com/github/pozo/bkkinfo/activities/BasicPreferenceActivity.java
Added preference reading at onCreate and refactored service starting
Java
mit
4cc40a2ac60d1d519cd21c35dfafbd78a7fbdb87
0
jt19056/Notey,jt19056/Notey
package thomas.jonathan.notey; import android.annotation.TargetApi; import android.app.AlarmManager; import android.app.IntentService; import android.app.Notification; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Intent; import android.content.SharedPreferences; impo...
app/src/main/java/thomas/jonathan/notey/NotificationBootService.java
package thomas.jonathan.notey; import android.annotation.TargetApi; import android.app.AlarmManager; import android.app.IntentService; import android.app.Notification; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Intent; import android.content.SharedPreferences; impo...
Case 34 Closes #34
app/src/main/java/thomas/jonathan/notey/NotificationBootService.java
Case 34
Java
mit
6bc70a87dcfd178606f2a605db680672cad3cfae
0
rjust/defects4j,rjust/defects4j,jose/defects4j,jose/defects4j,jose/defects4j,rjust/defects4j,rjust/defects4j,jose/defects4j
package edu.washington.cs.mut.testrunner; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.OutputStream; import java.io.PrintStream; import java.util.regex.Matcher; import java.util.regex.Pattern; import junit.framework.AssertionFail...
framework/lib/formatter/src/edu/washington/cs/mut/testrunner/Formatter.java
package edu.washington.cs.mut.testrunner; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.OutputStream; import java.io.PrintStream; import java.util.regex.Matcher; import java.util.regex.Pattern; import junit.framework.AssertionFail...
Log the name of all executed tests, in addition to the failing ones.
framework/lib/formatter/src/edu/washington/cs/mut/testrunner/Formatter.java
Log the name of all executed tests, in addition to the failing ones.
Java
mit
0a50448b08ca5ecfa3a8d62c6c8bdd3d5784c6f8
0
anotheria/moskito,anotheria/moskito,anotheria/moskito,anotheria/moskito
package net.anotheria.moskito.aop.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Include the whole class or its method into monitoring. * * @author Vitaliy Zhovtiuk. */ @Target ( {El...
moskito-aop/src/main/java/net/anotheria/moskito/aop/annotation/Monitor.java
package net.anotheria.moskito.aop.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Include the whole class or its method into monitoring. * * @author <a href="mailto:vzhovtiuk@anotheria...
fixed author tag
moskito-aop/src/main/java/net/anotheria/moskito/aop/annotation/Monitor.java
fixed author tag
Java
mit
205f22398d196bbeb0d8fbbeec59059de4518f3d
0
carrot/cream
package com.carrotcreative.cream.cache; import android.content.Context; import com.carrotcreative.cream.tasks.ReadSerializableTask; import com.carrotcreative.cream.tasks.WriteSerializableTask; import java.io.File; import java.io.FileFilter; import java.io.Serializable; import java.util.regex.Pattern; public class C...
src/main/java/com/carrotcreative/cream/cache/CacheManager.java
package com.carrotcreative.cream.cache; import android.content.Context; import com.carrotcreative.cream.tasks.ReadSerializableTask; import com.carrotcreative.cream.tasks.WriteSerializableTask; import java.io.File; import java.io.FileFilter; import java.io.Serializable; import java.util.regex.Pattern; public class C...
change delimiter to - from -CR-
src/main/java/com/carrotcreative/cream/cache/CacheManager.java
change delimiter to - from -CR-
Java
mit
374668052f148982de868a4ff40e6cec281bba3a
0
onessimofalconi/bc-java,FAU-Inf2/spongycastle,onessimofalconi/bc-java,sergeypayu/bc-java,Skywalker-11/spongycastle,isghe/bc-java,bcgit/bc-java,open-keychain/spongycastle,sergeypayu/bc-java,FAU-Inf2/spongycastle,partheinstein/bc-java,sonork/spongycastle,sergeypayu/bc-java,savichris/spongycastle,iseki-masaya/spongycastle...
package org.bouncycastle.crypto.tls; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.security.SecureRandom; import java.util.Enumeration; import java.util.Hashtable; import java.util.Ve...
src/main/java/org/bouncycastle/crypto/tls/TlsProtocolHandler.java
package org.bouncycastle.crypto.tls; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.security.SecureRandom; import java.util.Enumeration; import java.util.Hashtable; import java.util.Ve...
Revert last change, but add explanatory comments
src/main/java/org/bouncycastle/crypto/tls/TlsProtocolHandler.java
Revert last change, but add explanatory comments
Java
mit
8c188f794793ed8e4743971ff0bb2082b7a23c79
0
FastenYourSeatbelts/luggage-system
/** * The MIT License (MIT) * * Copyright (c) 2014-2015 ITopia IS102-5 * * 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 ri...
src/luggage/controllers/LuggageController.java
/** * The MIT License (MIT) * * Copyright (c) 2014-2015 ITopia IS102-5 * * 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 ri...
Hoi, Jasper hier. Ik heb even gezorgd dat er een warning komt als je op de knop ExportToPdf klikt. Dus je kan zeggen dat ik deze keer ook echt iets nuttigs heb gedaan. Jeey voor Jasper. Sorry dat de message zo lang is. :D
src/luggage/controllers/LuggageController.java
Hoi, Jasper hier.
Java
mit
137bfbfcaa199819f17477b9b031f23f8d671f4e
0
alanjds/python-for-android,gonboy/python-for-android,wexi/python-for-android,vaginessa/python-for-android,inclement/python-for-android,kivatu/python-for-android,pybee/Python-Android-support,alanjds/python-for-android,PKRoma/python-for-android,germn/python-for-android,ehealthafrica-ci/python-for-android,PKRoma/python-fo...
/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
src/src/org/renpy/android/SDLSurfaceView.java
/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
fix size of presplash, was incorrectly displayed at 50% of its initial size.
src/src/org/renpy/android/SDLSurfaceView.java
fix size of presplash, was incorrectly displayed at 50% of its initial size.
Java
mit
061672223e92135c72f8a3dbe51a1d735c7e921c
0
mhogrefe/wheels
package mho.wheels.misc; import org.junit.Test; import java.math.BigDecimal; import java.math.BigInteger; import static mho.wheels.misc.Readers.*; import static org.junit.Assert.*; public class ReadersTest { @Test public void testConstants() { aeq(MAX_POSITIVE_BYTE_LENGTH, 3); aeq(MAX_POSITI...
src/test/java/mho/wheels/misc/ReadersTest.java
package mho.wheels.misc; import org.junit.Test; import java.math.BigDecimal; import java.math.BigInteger; import static mho.wheels.misc.Readers.*; import static org.junit.Assert.*; public class ReadersTest { @Test public void testConstants() { aeq(MAX_POSITIVE_BYTE_LENGTH, 3); aeq(MAX_POSITI...
added String and Character reader tests
src/test/java/mho/wheels/misc/ReadersTest.java
added String and Character reader tests
Java
mit
5b82a80012128f74094be051fd9718ae1c49d320
0
bamless/chromium-swe-updater
package com.bamless.chromiumsweupdater; import android.Manifest; import android.app.AlarmManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.content.pm.PackageManager; import android.graphics.Color; import android.graphics.Paint; import android.os.Bu...
app/src/main/java/com/bamless/chromiumsweupdater/MainActivity.java
package com.bamless.chromiumsweupdater; import android.Manifest; import android.app.AlarmManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.content.pm.PackageManager; import android.graphics.Color; import android.graphics.Paint; import android.os.Bu...
Stop the "checkUpdateButton" on failure When ChromiumUpdater#checkForUpdate fails the chheckUpdateButton animation stops. Previously the statement for stopping the animation was placed after a return statement called in case of failure. Now it is called before, so that the animation always stops when checkForUpdate r...
app/src/main/java/com/bamless/chromiumsweupdater/MainActivity.java
Stop the "checkUpdateButton" on failure
Java
mit
d73fbd7e5fec212f2f1a15ac8c715e673cac3187
0
jananzhu/slogo,jananzhu/slogo
package commands; import java.util.Queue; import slogo_back.Model; public class Forward extends Command { private final static int numParams = 1; private final static String PARAM_NAME = "forward"; public Forward(Queue<String> cmdQueue, Model model) { super(cmdQueue, model, numParams); } ...
src/commands/Forward.java
package commands; import java.util.Queue; import slogo_back.Model; public class Forward extends Command { private final static int numParams = 1; private final static String PARAM_NAME = "Forward"; public Forward(Queue<String> cmdQueue, Model model) { super(cmdQueue, model, numParams); } ...
integration slight changes
src/commands/Forward.java
integration slight changes
Java
mit
e9dfc17c374392d49d3a61f237da1063c3ababe0
0
JonathanxD/CodeAPI,JonathanxD/CodeAPI
/* * CodeAPI - Framework to generate Java code and Bytecode code. <https://github.com/JonathanxD/CodeAPI> * * The MIT License (MIT) * * Copyright (c) 2017 TheRealBuggy/JonathanxD (https://github.com/JonathanxD/ & https://github.com/TheRealBuggy/) <jonathan.scripter@programmer.net> * Copyrig...
src/test/java/com/github/jonathanxd/codeapi/test/TestInspect.java
/* * CodeAPI - Framework to generate Java code and Bytecode code. <https://github.com/JonathanxD/CodeAPI> * * The MIT License (MIT) * * Copyright (c) 2017 TheRealBuggy/JonathanxD (https://github.com/JonathanxD/ & https://github.com/TheRealBuggy/) <jonathan.scripter@programmer.net> * Copyrig...
Fixed inspect test
src/test/java/com/github/jonathanxd/codeapi/test/TestInspect.java
Fixed inspect test
Java
mit
f4efe0522dc437e002822d1848d2e9e539e6a5ae
0
itenente/igv,godotgildor/igv,itenente/igv,godotgildor/igv,itenente/igv,godotgildor/igv,amwenger/igv,amwenger/igv,godotgildor/igv,amwenger/igv,igvteam/igv,igvteam/igv,amwenger/igv,itenente/igv,igvteam/igv,amwenger/igv,igvteam/igv,igvteam/igv,godotgildor/igv,itenente/igv
/* * Copyright (c) 2007-2011 by The Broad Institute of MIT and Harvard. All Rights Reserved. * * This software is licensed under the terms of the GNU Lesser General Public License (LGPL), * Version 2.1 which is available at http://www.opensource.org/licenses/lgpl-2.1.php. * * THE SOFTWARE IS PROVIDED "AS IS." TH...
src/org/broad/igv/feature/genome/GenomeManager.java
/* * Copyright (c) 2007-2011 by The Broad Institute of MIT and Harvard. All Rights Reserved. * * This software is licensed under the terms of the GNU Lesser General Public License (LGPL), * Version 2.1 which is available at http://www.opensource.org/licenses/lgpl-2.1.php. * * THE SOFTWARE IS PROVIDED "AS IS." TH...
Added logging statements git-svn-id: b5cf87c434d9ee7c8f18865e4378c9faabe04646@1543 17392f64-ead8-4cea-ae29-09b3ab513800
src/org/broad/igv/feature/genome/GenomeManager.java
Added logging statements
Java
mit
74f53ecc61b11a37cf3c7c09323760bd1f899a39
0
Canadensys/vascan,Canadensys/vascan,Canadensys/vascan
package net.canadensys.dataportal.vascan.impl; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import net.canadensys.dataportal.vascan.ChecklistService; import net.canadensys.dataportal.vascan.constant.Rank; import net.canadensys.dataportal...
src/main/java/net/canadensys/dataportal/vascan/impl/ChecklistServiceImpl.java
package net.canadensys.dataportal.vascan.impl; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import net.canadensys.dataportal.vascan.ChecklistService; import net.canadensys.dataportal.vascan.constant.Rank; import net.canadensys.dataportal...
fixed hybrids default value
src/main/java/net/canadensys/dataportal/vascan/impl/ChecklistServiceImpl.java
fixed hybrids default value
Java
mpl-2.0
1a714d884c31f6be9d467bf7863753eecc7467d1
0
powsybl/powsybl-core,powsybl/powsybl-core,powsybl/powsybl-core
/** * Copyright (c) 2016, All partners of the iTesla project (http://www.itesla-project.eu/consortium) * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package co...
iidm/iidm-impl/src/main/java/com/powsybl/iidm/network/impl/NetworkImpl.java
/** * Copyright (c) 2016, All partners of the iTesla project (http://www.itesla-project.eu/consortium) * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package co...
Use EnumSet for the countries of a network, in particular to respect a constant order from call to call (natural enum order).
iidm/iidm-impl/src/main/java/com/powsybl/iidm/network/impl/NetworkImpl.java
Use EnumSet for the countries of a network, in particular to respect a constant order from call to call (natural enum order).
Java
agpl-3.0
d924fd9e553bd6a707bc018f974759d5b56882ae
0
roskens/opennms-pre-github,aihua/opennms,tdefilip/opennms,tdefilip/opennms,roskens/opennms-pre-github,aihua/opennms,aihua/opennms,roskens/opennms-pre-github,rdkgit/opennms,roskens/opennms-pre-github,aihua/opennms,tdefilip/opennms,roskens/opennms-pre-github,tdefilip/opennms,rdkgit/opennms,tdefilip/opennms,rdkgit/opennms...
// // // This file is part of the OpenNMS(R) Application. // // OpenNMS(R) is Copyright (C) 2002-2005 The OpenNMS Group, Inc. All rights // reserved. // OpenNMS(R) is a derivative work, containing both original code, included // code // and modified // code that was published under the GNU General Public License. Copyr...
opennms-install/src/main/java/org/opennms/install/Installer.java
// // // This file is part of the OpenNMS(R) Application. // // OpenNMS(R) is Copyright (C) 2002-2005 The OpenNMS Group, Inc. All rights // reserved. // OpenNMS(R) is a derivative work, containing both original code, included // code // and modified // code that was published under the GNU General Public License. Copyr...
When the light is green, the trap is clean.
opennms-install/src/main/java/org/opennms/install/Installer.java
When the light is green, the trap is clean.
Java
agpl-3.0
10973573d5c6b3b14e08db37e858d13e5eb7cacb
0
OPEN-ENT-NG/vie-scolaire,OPEN-ENT-NG/vie-scolaire,OPEN-ENT-NG/vie-scolaire,OPEN-ENT-NG/vie-scolaire,OPEN-ENT-NG/vie-scolaire,OPEN-ENT-NG/vie-scolaire
/* * Copyright (c) Région Hauts-de-France, Département de la Seine-et-Marne, Région Nouvelle Aquitaine, Mairie de Paris, CGI, 2016. * This file is part of OPEN ENT NG. OPEN ENT NG is a versatile ENT Project based on the JVM and ENT Core Project. * * This program is free software; you can redistribute it and/or modi...
src/main/java/fr/openent/viescolaire/service/impl/DefaultMatiereService.java
/* * Copyright (c) Région Hauts-de-France, Département de la Seine-et-Marne, Région Nouvelle Aquitaine, Mairie de Paris, CGI, 2016. * This file is part of OPEN ENT NG. OPEN ENT NG is a versatile ENT Project based on the JVM and ENT Core Project. * * This program is free software; you can redistribute it and/or modi...
[CO-648]: Pas d'acces au module Competence pour deux enseignantes.
src/main/java/fr/openent/viescolaire/service/impl/DefaultMatiereService.java
[CO-648]: Pas d'acces au module Competence pour deux enseignantes.
Java
agpl-3.0
ccc3b03e5e89bbaec2a2aa623629d733b7ce0cbd
0
adamabeshouse/cbioportal,cBioPortal/cbioportal,adamabeshouse/cbioportal,mandawilson/cbioportal,zhx828/cbioportal,inodb/cbioportal,adamabeshouse/cbioportal,mandawilson/cbioportal,n1zea144/cbioportal,d3b-center/pedcbioportal,jjgao/cbioportal,cBioPortal/cbioportal,zhx828/cbioportal,onursumer/cbioportal,pughlab/cbioportal,...
/* * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder * is on an "...
core/src/main/java/org/mskcc/cbio/portal/util/internal/AccessControlImpl.java
/* * Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder * is on an "...
fixed NullPointerException in getUserDetails()
core/src/main/java/org/mskcc/cbio/portal/util/internal/AccessControlImpl.java
fixed NullPointerException in getUserDetails()
Java
lgpl-2.1
2c1dff12d810a1035b7cd62a8d43a847516da7a7
0
levants/lightmare
package org.lightmare.ejb.handlers; import java.lang.reflect.Method; /** * Handler class to call EJB bean methods for REST services * * @author levan * */ public class RestHandler<T> { // Appropriated bean's handler private final BeanHandler handler; //EJB bean instance private final T bean; ...
src/main/java/org/lightmare/ejb/handlers/RestHandler.java
package org.lightmare.ejb.handlers; import java.lang.reflect.Method; /** * Handler class to call EJB bean methods for REST services * * @author levan * */ public class RestHandler<T> { // Appropriated bean's handler private final BeanHandler handler; private final T bean; public RestHandler(...
improved code / comments at utility classes
src/main/java/org/lightmare/ejb/handlers/RestHandler.java
improved code / comments at utility classes
Java
unlicense
f96d2e10184aab392b0ad82b11674c42d12962a0
0
HenryLoenwind/EnderIO,SleepyTrousers/EnderIO,D-Inc/EnderIO
package crazypants.enderio.item; import java.util.ArrayList; import java.util.List; import com.enderio.core.api.client.gui.IAdvancedTooltipProvider; import com.enderio.core.client.handlers.SpecialTooltipHandler; import buildcraft.api.tools.IToolWrench; import crazypants.enderio.EnderIO; import crazypants.enderio.End...
src/main/java/crazypants/enderio/item/ItemYetaWrench.java
package crazypants.enderio.item; import java.util.ArrayList; import java.util.List; import org.lwjgl.input.Keyboard; import com.enderio.core.api.client.gui.IAdvancedTooltipProvider; import com.enderio.core.client.handlers.SpecialTooltipHandler; import buildcraft.api.tools.IToolWrench; import crazypants.enderio.Ende...
Added support for showing key combos to Yeta Wrench tooltip * closes #3467
src/main/java/crazypants/enderio/item/ItemYetaWrench.java
Added support for showing key combos to Yeta Wrench tooltip
Java
unlicense
d4c3278577c6f24ffe35025dc1704c60900de7f7
0
Ohohcakester/Any-Angle-Pathfinding,Ohohcakester/Any-Angle-Pathfinding
package main; import algorithms.AStar; import algorithms.AStarOctileHeuristic; import algorithms.AStarStaticMemory; import algorithms.AcceleratedAStar; import algorithms.AdjustmentThetaStar; import algorithms.Anya; import algorithms.BasicThetaStar; import algorithms.BreadthFirstSearch; import algorithms.JumpPointSearch...
src/main/AnyAnglePathfinding.java
package main; import algorithms.AStar; import algorithms.AStarOctileHeuristic; import algorithms.AStarStaticMemory; import algorithms.AcceleratedAStar; import algorithms.AdjustmentThetaStar; import algorithms.Anya; import algorithms.BasicThetaStar; import algorithms.BreadthFirstSearch; import algorithms.JumpPointSearch...
Add scaled maze and tiled maze load options to maze 57 in AnyAnglePathfinding.java
src/main/AnyAnglePathfinding.java
Add scaled maze and tiled maze load options to maze 57 in AnyAnglePathfinding.java
Java
apache-2.0
f7a73863ec3c98558ea79e62e19e26403ec98ffc
0
tburch/jsonblob,tburch/jsonblob,tburch/jsonblob
package com.lowtuna.jsonblob.core; import com.codahale.metrics.CachedGauge; import com.codahale.metrics.MetricRegistry; import com.codahale.metrics.Timer; import com.mongodb.BasicDBObject; import com.mongodb.BasicDBObjectBuilder; import com.mongodb.DB; import com.mongodb.DBCollection; import com.mongodb.DBObject; impo...
src/main/java/com/lowtuna/jsonblob/core/BlobManager.java
package com.lowtuna.jsonblob.core; import com.codahale.metrics.CachedGauge; import com.codahale.metrics.MetricRegistry; import com.codahale.metrics.Timer; import com.mongodb.BasicDBObject; import com.mongodb.BasicDBObjectBuilder; import com.mongodb.DB; import com.mongodb.DBCollection; import com.mongodb.DBObject; impo...
formatting
src/main/java/com/lowtuna/jsonblob/core/BlobManager.java
formatting
Java
apache-2.0
96808086d5431f4116a0308bba6f472b40b6b77a
0
diennea/herddb,diennea/herddb,eolivelli/herddb,eolivelli/herddb,diennea/herddb,diennea/herddb,eolivelli/herddb,eolivelli/herddb
package herddb.core; import java.util.Collection; import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; import java.util.logging.Level; import java.util.logging.Logger; import herddb.utils.ListWithMap; /** * Basic implementation of CAR algorithm. * * Based on the original work: ...
herddb-core/src/main/java/herddb/core/ClockAdaptiveReplacement.java
package herddb.core; import java.util.Collection; import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; import java.util.logging.Level; import java.util.logging.Logger; import herddb.utils.ListWithMap; /** * Basic implementation of CAR algorithm. * * Based on the original work: ...
fix division by zero on CAR
herddb-core/src/main/java/herddb/core/ClockAdaptiveReplacement.java
fix division by zero on CAR
Java
apache-2.0
7167d2d1917d035ffb95841ccb047747e168e40d
0
JBYoshi/GitUpdate
/* * Copyright (c) 2015 JBYoshi * * 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 ...
src/main/java/jbyoshi/gitupdate/processor/Push.java
/* * Copyright (c) 2015 JBYoshi * * 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 ...
Fix a few more warnings.
src/main/java/jbyoshi/gitupdate/processor/Push.java
Fix a few more warnings.
Java
apache-2.0
dd35dbc1443cd1f641cbbc4b69b4ea1f60fb8618
0
nikelin/Redshape-AS,nikelin/Redshape-AS
package com.redshape.servlet.views; import com.redshape.servlet.WebApplication; import com.redshape.servlet.actions.exceptions.PageNotFoundException; import com.redshape.servlet.core.IHttpRequest; import com.redshape.servlet.core.controllers.Action; import com.redshape.servlet.core.controllers.IAction; import com.reds...
servlet/src/main/java/com/redshape/servlet/views/ViewHelper.java
package com.redshape.servlet.views; import com.redshape.servlet.WebApplication; import com.redshape.servlet.actions.exceptions.PageNotFoundException; import com.redshape.servlet.core.IHttpRequest; import com.redshape.servlet.core.controllers.Action; import com.redshape.servlet.core.controllers.IAction; import com.reds...
* ViewHelper little improved
servlet/src/main/java/com/redshape/servlet/views/ViewHelper.java
* ViewHelper little improved
Java
apache-2.0
698e88f01243527964bd15a6abab0bebdde57486
0
salyh/geronimo-specs,apache/geronimo-specs,salyh/javamailspec,salyh/geronimo-specs,apache/geronimo-specs,apache/geronimo-specs,salyh/geronimo-specs
/* * 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 ma...
geronimo-jaxws_2.1_spec/src/main/java/javax/xml/ws/Service.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 ma...
update variable name git-svn-id: 60e751271f50ec028ae56d425821c1c711e0b018@659402 13f79535-47bb-0310-9956-ffa450edef68
geronimo-jaxws_2.1_spec/src/main/java/javax/xml/ws/Service.java
update variable name
Java
apache-2.0
ac216520b907ebcfa4f30a6f6b9a5cf347b6b47e
0
code-distillery/baselining-maven-plugin
package net.distilledcode.maven.baselining; import org.apache.maven.it.VerificationException; import org.apache.maven.it.Verifier; import org.apache.maven.it.util.ResourceExtractor; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import java.io.File; import java.io.IOException; impo...
src/test/java/net/distilledcode/maven/baselining/DummyApiIT.java
package net.distilledcode.maven.baselining; import org.apache.maven.it.VerificationException; import org.apache.maven.it.Verifier; import org.apache.maven.it.util.ResourceExtractor; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import java.io.File; import java.io.IOException; impo...
prevent NPE
src/test/java/net/distilledcode/maven/baselining/DummyApiIT.java
prevent NPE
Java
apache-2.0
3092ec97f9be52653d25e4a434946885c3b3ba76
0
ngageoint/mrgeo,ngageoint/mrgeo,ngageoint/mrgeo
package org.mrgeo.data.raster; import org.apache.commons.lang3.NotImplementedException; import org.gdal.gdal.Band; import org.gdal.gdal.Dataset; import org.gdal.gdal.gdal; import org.gdal.gdalconst.gdalconstConstants; import org.mrgeo.aggregators.Aggregator; import org.mrgeo.data.raster.Interpolator.Bilinear; import o...
mrgeo-core/src/main/java/org/mrgeo/data/raster/MrGeoRaster.java
package org.mrgeo.data.raster; import org.apache.commons.lang3.NotImplementedException; import org.gdal.gdal.Band; import org.gdal.gdal.Dataset; import org.gdal.gdal.gdal; import org.gdal.gdalconst.gdalconstConstants; import org.mrgeo.aggregators.Aggregator; import org.mrgeo.data.raster.Interpolator.Bilinear; import o...
Fix single band clip
mrgeo-core/src/main/java/org/mrgeo/data/raster/MrGeoRaster.java
Fix single band clip
Java
apache-2.0
fddd1af14103beff7a8b60736da0c774465a73b4
0
YUKAI/konashi-android-sdk,kiryuxxu/konashi-android-sdk,YUKAI/konashi-android-sdk
package com.uxxu.konashi.lib; import android.app.Activity; import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothGattCharacteristic; import android.bluetooth.BluetoothGattService; import android.content.Context; import com.uxxu.konashi.lib.action.AioAnalogReadAction; import com.uxxu.konashi.lib....
konashi-android-sdk/src/main/java/com/uxxu/konashi/lib/KonashiManager.java
package com.uxxu.konashi.lib; import android.app.Activity; import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothGattCharacteristic; import android.bluetooth.BluetoothGattService; import android.content.Context; import com.uxxu.konashi.lib.action.AioAnalogReadAction; import com.uxxu.konashi.lib....
Add SPI APIs to KonashiManager
konashi-android-sdk/src/main/java/com/uxxu/konashi/lib/KonashiManager.java
Add SPI APIs to KonashiManager
Java
apache-2.0
05bc569b1df5ea2648409eecb318d8e306f5f174
0
appium/appium,Sw0rdstream/appium,appium/appium,appium/appium,appium/appium,appium/appium,appium/appium
package io.appium.android.bootstrap; import java.util.ArrayList; import org.json.JSONArray; import org.json.JSONException; import com.android.uiautomator.core.UiSelector; // Constants from // https://android.googlesource.com/platform/frameworks/testing/+/master/uiautomator/library/core-src/com/android/uiautomator/c...
lib/devices/android/bootstrap/src/io/appium/android/bootstrap/Dynamic.java
package io.appium.android.bootstrap; import java.util.ArrayList; import org.json.JSONArray; import org.json.JSONException; import com.android.uiautomator.core.UiSelector; // Constants from // https://android.googlesource.com/platform/frameworks/testing/+/master/uiautomator/library/src/com/android/uiautomator/core/U...
Update complex find with new uiautomator constants
lib/devices/android/bootstrap/src/io/appium/android/bootstrap/Dynamic.java
Update complex find with new uiautomator constants
Java
apache-2.0
4c0558893c2f0a5dd1caba17f8711fa1df364706
0
sdeleuze/reactor-core,reactor/reactor-core,sdeleuze/reactor-core,sdeleuze/reactor-core,sdeleuze/reactor-core
/* * Copyright (c) 2011-2016 Pivotal Software Inc, All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unles...
src/main/java/reactor/core/publisher/Flux.java
/* * Copyright (c) 2011-2016 Pivotal Software Inc, All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unles...
more marble
src/main/java/reactor/core/publisher/Flux.java
more marble
Java
apache-2.0
de02593e1e945bda4a955dffca7c0bbea4c34cfd
0
KFCBETA/chikan,KFCBETA/chikan
package com.KFCBETA.hjeaimreus.chikan; import android.util.Log; import org.apache.http.HttpResponse; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.DefaultHttpClient; import org.json.JSONArray; import org.json.JSONException; import java.io.Bu...
app/src/main/java/com/KFCBETA/hjeaimreus/chikan/ParseCategories.java
package com.KFCBETA.hjeaimreus.chikan; import android.util.Log; import org.apache.http.HttpResponse; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.DefaultHttpClient; import org.json.JSONArray; import org.json.JSONException; import java.io....
Organized import
app/src/main/java/com/KFCBETA/hjeaimreus/chikan/ParseCategories.java
Organized import
Java
apache-2.0
b4367af27ee67d63c67c34dadbdbb6bc94f1906f
0
ibissource/iaf,ibissource/iaf,ibissource/iaf,ibissource/iaf,ibissource/iaf
/* * $Log: JmsSender.java,v $ * Revision 1.12 2004-10-12 15:12:34 L190409 * reworked handling of ParameterValueList * * Revision 1.11 2004/10/05 10:43:58 Gerrit van Brakel <gerrit.van.brakel@ibissource.org> * made into parameterized sender * * Revision 1.10 2004/09/01 07:30:00 Gerrit van Brakel <gerrit.v...
JavaSource/nl/nn/adapterframework/jms/JmsSender.java
/* * $Log: JmsSender.java,v $ * Revision 1.11 2004-10-05 10:43:58 L190409 * made into parameterized sender * * Revision 1.10 2004/09/01 07:30:00 Gerrit van Brakel <gerrit.van.brakel@ibissource.org> * correction in documentation * * Revision 1.9 2004/08/16 11:27:56 Gerrit van Brakel <gerrit.van.brakel@ibis...
reworked handling of ParameterValueList
JavaSource/nl/nn/adapterframework/jms/JmsSender.java
reworked handling of ParameterValueList
Java
apache-2.0
352cb58214f97b4afee1b572eceb7865618af215
0
elandau/ribbon,roykachouh/ribbon,drmaas/ribbon,bondj/ribbon,drtechniko/ribbon,elandau/ribbon,spencergibb/ribbon,brajput24/ribbon,robertroeser/ribbon,enriclluelles/ribbon,Netflix/ribbon
/* * * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writin...
ribbon-loadbalancer/src/main/java/com/netflix/loadbalancer/ServerStats.java
/* * * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writin...
Minor cleanup
ribbon-loadbalancer/src/main/java/com/netflix/loadbalancer/ServerStats.java
Minor cleanup
Java
apache-2.0
983f92c0dfa170cd50c5d8241d6f4790ae72537c
0
axxter99/profileWOW,axxter99/profileWOW,axxter99/profileWOW
package org.sakaiproject.profilewow.tool.producers; import java.util.ArrayList; import java.util.List; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.sakaiproject.api.common.edu.person.SakaiPerson; import org.sakaiproject.api.common.edu.person.SakaiPersonManager; impor...
tool/src/java/org/sakaiproject/profilewow/tool/producers/ChangePicture.java
package org.sakaiproject.profilewow.tool.producers; import java.util.ArrayList; import java.util.List; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.sakaiproject.api.common.edu.person.SakaiPerson; import org.sakaiproject.api.common.edu.person.SakaiPersonManager; impor...
VULA-196 use right paramater
tool/src/java/org/sakaiproject/profilewow/tool/producers/ChangePicture.java
VULA-196 use right paramater
Java
apache-2.0
3bf9d2af0bbca3f5daa241ac5ac535cc06853e57
0
itachizhu/cms,itachizhu/cms,itachizhu/cms,itachizhu/cms
package org.itachi.cms.controller; import org.itachi.cms.service.RoleService; import org.itachi.cms.service.UserGroupService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotat...
cms-boot/src/main/java/org/itachi/cms/controller/AdmUserGroupController.java
package org.itachi.cms.controller; import org.itachi.cms.service.RoleService; import org.itachi.cms.service.UserGroupService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotat...
用户群组管理界面
cms-boot/src/main/java/org/itachi/cms/controller/AdmUserGroupController.java
用户群组管理界面
Java
apache-2.0
0b30f1318c8be9c3d096899331979788805f101b
0
OpenHFT/Chronicle-Queue,OpenHFT/Chronicle-Queue,fengshao0907/Chronicle-Queue
package demo; import javax.imageio.ImageIO; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; import java.io.IOException; import java.util.List; import java.util.concurrent.atomic.AtomicLong; /** * Demo application for Chronicle */...
chronicle-demo/src/main/java/demo/ChronicleDashboard2.java
package demo; import javax.imageio.ImageIO; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; import java.io.IOException; import java.util.List; import java.util.concurrent.atomic.AtomicLong; /** * Demo application for Chronicle */...
Events.
chronicle-demo/src/main/java/demo/ChronicleDashboard2.java
Events.
Java
apache-2.0
6ffe908e9627752a1b5edb4fd1427d9f7c154cac
0
pipoop/hobby-android-app,irkit/android-sdk
package com.getirkit.irkit; import android.os.AsyncTask; import android.os.Parcel; import android.os.Parcelable; import android.util.Log; import com.getirkit.irkit.net.IRDeviceAPIService; import com.getirkit.irkit.net.IRHTTPClient; import com.getirkit.irkit.net.IRInternetAPIService; import org.json.JSONException; im...
irkit-android-sdk/src/main/java/com/getirkit/irkit/IRPeripheral.java
package com.getirkit.irkit; import android.os.AsyncTask; import android.os.Parcel; import android.os.Parcelable; import android.util.Log; import com.getirkit.irkit.net.IRDeviceAPIService; import com.getirkit.irkit.net.IRHTTPClient; import com.getirkit.irkit.net.IRInternetAPIService; import org.json.JSONException; im...
IRPeripheral: Put Japanese doc first
irkit-android-sdk/src/main/java/com/getirkit/irkit/IRPeripheral.java
IRPeripheral: Put Japanese doc first
Java
apache-2.0
bc40c9050019561d5227fb7dafa60760febde6d0
0
astarlabs/bitcoin-java-api-client,astarlabs/bitcoin-java-api-client
package br.com.astarlabs.util; import java.io.File; import java.io.IOException; import java.nio.file.Files; import java.util.List; import br.com.astarlabs.client.ApiException; import br.com.astarlabs.client.api.SearchApi; import br.com.astarlabs.client.api.SendApi; import br.com.astarlabs.client.model.BlockchainNetwo...
src/main/java/br/com/astarlabs/util/Blockchain.java
package br.com.astarlabs.util; import java.io.File; import java.io.IOException; import java.nio.file.Files; import java.util.List; import br.com.astarlabs.client.ApiException; import br.com.astarlabs.client.api.SearchApi; import br.com.astarlabs.client.api.SendApi; import br.com.astarlabs.client.model.BlockchainNetwo...
Melhoria da documentação do metodo registrarDocumento
src/main/java/br/com/astarlabs/util/Blockchain.java
Melhoria da documentação do metodo registrarDocumento
Java
bsd-2-clause
8a5ed58a14c4b29269604d15f4f2f257492007dd
0
KorAP/Koral
package de.ids_mannheim.korap.query.serialize; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import org.antlr.v4.runtime.ANTLRInputStream; import org.antlr.v4.runtime.Bail...
src/main/java/de/ids_mannheim/korap/query/serialize/PoliqarpPlusTree.java
package de.ids_mannheim.korap.query.serialize; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import org.antlr.v4.runtime.ANTLRInputStream; import org.antlr.v4.runtime.Bail...
PQ values
src/main/java/de/ids_mannheim/korap/query/serialize/PoliqarpPlusTree.java
PQ values
Java
bsd-2-clause
07d952aab9e888a19d306a44b77a600604a63b7a
0
scifio/scifio
// // MinimalTiffReader.java // /* OME Bio-Formats package for reading and converting biological file formats. Copyright (C) 2005-@year@ UW-Madison LOCI and Glencoe Software, Inc. 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 ...
components/bio-formats/src/loci/formats/in/MinimalTiffReader.java
// // MinimalTiffReader.java // /* OME Bio-Formats package for reading and converting biological file formats. Copyright (C) 2005-@year@ UW-Madison LOCI and Glencoe Software, Inc. 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 ...
Fall back to default openThumbBytes(...) implementation when necessary.
components/bio-formats/src/loci/formats/in/MinimalTiffReader.java
Fall back to default openThumbBytes(...) implementation when necessary.
Java
bsd-3-clause
7041a4d2132a79a82d94e648bb34679ce22470fc
0
eclipse/rdf4j,eclipse/rdf4j,eclipse/rdf4j,eclipse/rdf4j,eclipse/rdf4j,eclipse/rdf4j
/******************************************************************************* * Copyright (c) 2015 Eclipse RDF4J contributors, Aduna, and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Distribution License v1.0 * which accompanies th...
tools/console/src/main/java/org/eclipse/rdf4j/console/ConsoleIO.java
/******************************************************************************* * Copyright (c) 2015 Eclipse RDF4J contributors, Aduna, and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Distribution License v1.0 * which accompanies th...
Resolve merge conflict
tools/console/src/main/java/org/eclipse/rdf4j/console/ConsoleIO.java
Resolve merge conflict
Java
mit
c29a68a4fd1edfe52b6c299f3a15897629667757
0
douggie/XChange
package org.knowm.xchange.huobi; import java.math.BigDecimal; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.knowm.xchange.currency.Currency; import org.knowm.xchange.currency.CurrencyPair; import org.knowm.xchange.dto.Order; import org.knowm.xchange.dto.O...
xchange-huobi/src/main/java/org/knowm/xchange/huobi/HuobiAdapters.java
package org.knowm.xchange.huobi; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.knowm.xchange.currency.Currency; import org.knowm.xchange.currency.CurrencyPair; import org.knowm.xchange.dto.Order; import org.knowm.xchange.dto.Order.OrderStatus; import org....
Provide an average price for the trading of huobi
xchange-huobi/src/main/java/org/knowm/xchange/huobi/HuobiAdapters.java
Provide an average price for the trading of huobi
Java
mit
3709ae717bd889f789afe5f41cfd1503a1ace1ff
0
RysingDragon/LandProtect
package com.initianovamc.rysingdragon.landprotect.listeners; import com.flowpowered.math.vector.Vector3i; import com.google.common.reflect.TypeToken; import com.initianovamc.rysingdragon.landprotect.config.GeneralConfig; import com.initianovamc.rysingdragon.landprotect.utils.Utils; import ninja.leaping.configurate.obj...
src/main/java/com/initianovamc/rysingdragon/landprotect/listeners/InteractBlockListener.java
package com.initianovamc.rysingdragon.landprotect.listeners; import com.flowpowered.math.vector.Vector3i; import com.google.common.reflect.TypeToken; import com.initianovamc.rysingdragon.landprotect.config.GeneralConfig; import com.initianovamc.rysingdragon.landprotect.utils.Utils; import ninja.leaping.configurate.obj...
bug fix
src/main/java/com/initianovamc/rysingdragon/landprotect/listeners/InteractBlockListener.java
bug fix
Java
mit
95637438ff859b634f2322a454d6e96d5b4d5fe6
0
madumlao/oxCore,GluuFederation/oxCore
/* * oxCore is available under the MIT License (2008). See http://opensource.org/licenses/MIT for full text. * * Copyright (c) 2014, Gluu */package org.xdi.config.oxtrust; import java.io.Serializable; import java.util.List; import org.codehaus.jackson.annotate.JsonIgnoreProperties; /** * oxTrust con...
oxService/src/main/java/org/xdi/config/oxtrust/ApplicationConfiguration.java
/* * oxCore is available under the MIT License (2008). See http://opensource.org/licenses/MIT for full text. * * Copyright (c) 2014, Gluu */package org.xdi.config.oxtrust; import java.io.Serializable; import java.util.List; import org.codehaus.jackson.annotate.JsonIgnoreProperties; /** * oxTrust con...
Remove deprecated properties
oxService/src/main/java/org/xdi/config/oxtrust/ApplicationConfiguration.java
Remove deprecated properties
Java
mit
549eef78eef80137dfc127e7cede9ce93c1c9384
0
fluttercommunity/flutter_contacts,fluttercommunity/flutter_contacts,fluttercommunity/flutter_contacts,fluttercommunity/flutter_contacts
package flutter.plugins.contactsservice.contactsservice; import io.flutter.plugin.common.MethodChannel; import io.flutter.plugin.common.MethodChannel.MethodCallHandler; import io.flutter.plugin.common.MethodChannel.Result; import io.flutter.plugin.common.MethodCall; import io.flutter.plugin.common.PluginRegistry.Regis...
android/src/main/java/flutter/plugins/contactsservice/contactsservice/ContactsServicePlugin.java
package flutter.plugins.contactsservice.contactsservice; import io.flutter.plugin.common.MethodChannel; import io.flutter.plugin.common.MethodChannel.MethodCallHandler; import io.flutter.plugin.common.MethodChannel.Result; import io.flutter.plugin.common.MethodCall; import io.flutter.plugin.common.PluginRegistry.Regis...
Added updateContact method to ContactsServicePlugin.java fin
android/src/main/java/flutter/plugins/contactsservice/contactsservice/ContactsServicePlugin.java
Added updateContact method to ContactsServicePlugin.java
Java
epl-1.0
1972ebe8bb509d5af0939a06678caea4bfdaaaf7
0
rrimmana/birt-1,Charling-Huang/birt,Charling-Huang/birt,sguan-actuate/birt,rrimmana/birt-1,Charling-Huang/birt,Charling-Huang/birt,rrimmana/birt-1,sguan-actuate/birt,rrimmana/birt-1,sguan-actuate/birt,rrimmana/birt-1,sguan-actuate/birt,Charling-Huang/birt,sguan-actuate/birt
/******************************************************************************* * Copyright (c) 2004, 2007 Actuate Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is av...
engine/org.eclipse.birt.report.engine.emitter.html/src/org/eclipse/birt/report/engine/emitter/html/HTMLEmitter.java
/******************************************************************************* * Copyright (c) 2004, 2007 Actuate Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is av...
Fix the bugzilla bug 272280.
engine/org.eclipse.birt.report.engine.emitter.html/src/org/eclipse/birt/report/engine/emitter/html/HTMLEmitter.java
Fix the bugzilla bug 272280.
Java
epl-1.0
8183a531eaf2633120bc62c3e00315e3cb1cb665
0
codenvy/plugin-datasource,codenvy/plugin-datasource
/* * CODENVY CONFIDENTIAL * __________________ * * [2013] - [2014] Codenvy, S.A. * All Rights Reserved. * * NOTICE: All information contained herein is, and remains * the property of Codenvy S.A. and its suppliers, * if any. The intellectual and technical concepts contained * herein are proprietary to Coden...
codenvy-ext-datasource-core/src/main/java/com/codenvy/ide/ext/datasource/client/sqllauncher/SqlRequestLauncherPresenter.java
/* * CODENVY CONFIDENTIAL * __________________ * * [2013] - [2014] Codenvy, S.A. * All Rights Reserved. * * NOTICE: All information contained herein is, and remains * the property of Codenvy S.A. and its suppliers, * if any. The intellectual and technical concepts contained * herein are proprietary to Coden...
Push the request limit value to the view
codenvy-ext-datasource-core/src/main/java/com/codenvy/ide/ext/datasource/client/sqllauncher/SqlRequestLauncherPresenter.java
Push the request limit value to the view
Java
mpl-2.0
9a8487645b41775627e81c9ac347438f9ad6a8d0
0
milankarunarathne/openmrs-core,ldf92/openmrs-core,milankarunarathne/openmrs-core,kabariyamilind/openMRSDEV,maany/openmrs-core,lilo2k/openmrs-core,sadhanvejella/openmrs,MuhammadSafwan/Stop-Button-Ability,jcantu1988/openmrs-core,macorrales/openmrs-core,dlahn/openmrs-core,jamesfeshner/openmrs-module,naraink/openmrs-core,N...
/** * The contents of this file are subject to the OpenMRS Public License * Version 1.0 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://license.openmrs.org * * Software distributed under the License is distributed on an "AS...
web/src/main/java/org/openmrs/web/controller/patient/ShortPatientFormController.java
/** * The contents of this file are subject to the OpenMRS Public License * Version 1.0 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://license.openmrs.org * * Software distributed under the License is distributed on an "AS...
Back porting TRUNK-3241: PersonAddresses get voided and recreated on form submission git-svn-id: 4718f6e240ca7210205b40b658d48b65419e2f31@26785 5bac5841-c719-aa4e-b3fe-cce5062f897a
web/src/main/java/org/openmrs/web/controller/patient/ShortPatientFormController.java
Back porting TRUNK-3241: PersonAddresses get voided and recreated on form submission
Java
agpl-3.0
5e4fe7f9b019f65c61f9500a170299969f2fef3d
0
KinshipSoftware/KinOathKinshipArchiver,PeterWithers/temp-to-delete1,KinshipSoftware/KinOathKinshipArchiver,PeterWithers/temp-to-delete1
package nl.mpi.kinnate.gedcomimport; import java.io.BufferedReader; import java.io.IOException; import java.io.StringReader; import java.util.ArrayList; import javax.swing.JProgressBar; import javax.swing.JTextArea; import junit.framework.TestCase; import nl.mpi.arbil.util.ApplicationVersionManager; import nl.mpi.arbi...
desktop/src/test/java/nl/mpi/kinnate/gedcomimport/CsvImporterTest.java
package nl.mpi.kinnate.gedcomimport; import java.io.BufferedReader; import java.io.IOException; import java.io.StringReader; import java.util.ArrayList; import javax.swing.JProgressBar; import javax.swing.JTextArea; import junit.framework.TestCase; import nl.mpi.arbil.util.ApplicationVersionManager; import nl.mpi.arbi...
refs #2394 #2400 In CSV import added support for ID column in any location. Also added info text to explain the use of this in the CSV text output. Corrected some graph sorting issues found after importing a CSV from Halle. Added CSV import for the french gender words. Added support for PUCK txt tab delimited files wh...
desktop/src/test/java/nl/mpi/kinnate/gedcomimport/CsvImporterTest.java
refs #2394 #2400 In CSV import added support for ID column in any location. Also added info text to explain the use of this in the CSV text output. Corrected some graph sorting issues found after importing a CSV from Halle. Added CSV import for the french gender words. Added support for PUCK txt tab delimited files wh...
Java
lgpl-2.1
d46aede2c46cfbc83a392738d66931d99808e75a
0
xwiki/xwiki-enterprise,xwiki/xwiki-enterprise
/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * th...
distribution-test/ui-tests/src/test/it/org/xwiki/test/ui/scheduler/SchedulerTest.java
/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * th...
Debug SchedulerTest on Hudson git-svn-id: cf27bad30c6b7316185bdac65b014e8c16cd40b6@34474 f329d543-caf0-0310-9063-dda96c69346f
distribution-test/ui-tests/src/test/it/org/xwiki/test/ui/scheduler/SchedulerTest.java
Debug SchedulerTest on Hudson
Java
lgpl-2.1
2172859e8d3a72d3b46f30bc06ab1c00527b5ab4
0
vladimir-bukhtoyarov/jagger8,anton-antonenko/jagger,Nmishin/jagger,vladimir-bukhtoyarov/jagger,SokolAndrey/jagger,vladimir-bukhtoyarov/jagger,anton-antonenko/jagger,anton-antonenko/jagger,griddynamics/jagger,SokolAndrey/jagger,griddynamics/jagger,SokolAndrey/jagger,Nmishin/jagger,vladimir-bukhtoyarov/jagger8,vladimir-b...
/* * Copyright (c) 2010-2012 Grid Dynamics Consulting Services, Inc, All Rights Reserved * http://www.griddynamics.com * * This library is free software; you can redistribute it and/or modify it under the terms of * the GNU Lesser General Public License as published by the Free Software Foundation; either * versi...
chassis/core/src/main/java/com/griddynamics/jagger/engine/e1/reporting/TestGeneralReporter.java
/* * Copyright (c) 2010-2012 Grid Dynamics Consulting Services, Inc, All Rights Reserved * http://www.griddynamics.com * * This library is free software; you can redistribute it and/or modify it under the terms of * the GNU Lesser General Public License as published by the Free Software Foundation; either * versi...
JFG-652 delete session scops plots
chassis/core/src/main/java/com/griddynamics/jagger/engine/e1/reporting/TestGeneralReporter.java
JFG-652 delete session scops plots
Java
lgpl-2.1
89905d9cf91c17760f2f7332466c3af584173b25
0
levants/lightmare
package org.lightmare.deploy.fs; import java.io.File; import java.io.FileFilter; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import java.nio.file.FileSystem; import java.nio.file.FileSystems; import java.nio.file.Path; import java.nio.file.StandardWatchEventKinds; import jav...
src/main/java/org/lightmare/deploy/fs/Watcher.java
package org.lightmare.deploy.fs; import java.io.File; import java.io.FileFilter; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import java.nio.file.FileSystem; import java.nio.file.FileSystems; import java.nio.file.Path; import java.nio.file.StandardWatchEventKinds; import jav...
improved code / comments at utility classes
src/main/java/org/lightmare/deploy/fs/Watcher.java
improved code / comments at utility classes
Java
apache-2.0
48b93e4829bd7a30b9adf059f8a445ee1e418af6
0
ppavlidis/Gemma,ppavlidis/Gemma,ppavlidis/Gemma,ppavlidis/Gemma,ppavlidis/Gemma,ppavlidis/Gemma,ppavlidis/Gemma
/* * The Gemma project. * * Copyright (c) 2006 University of British Columbia * * 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 ...
gemma-core/src/main/java/ubic/gemma/apps/ArrayDesignGOAnnotationGeneratorCli.java
/* * The Gemma project. * * Copyright (c) 2006 University of British Columbia * * 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 option to controll overwriting of existing annotation files.
gemma-core/src/main/java/ubic/gemma/apps/ArrayDesignGOAnnotationGeneratorCli.java
added option to controll overwriting of existing annotation files.
Java
apache-2.0
c373a971ad1e4e66a22c41188a744fde22e7da24
0
jenkinsci/gmaven,kurtharriger/gmaven
/* * Copyright (C) 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...
gmaven-runtime/gmaven-runtime-1.7/src/main/java/org/codehaus/gmaven/runtime/v1_7/JavaStubCompilationUnit.java
/* * Copyright (C) 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...
This also seems needed for import/resolve to work for stubgen
gmaven-runtime/gmaven-runtime-1.7/src/main/java/org/codehaus/gmaven/runtime/v1_7/JavaStubCompilationUnit.java
This also seems needed for import/resolve to work for stubgen
Java
apache-2.0
77db82d3c2915c76d44ada8cfdf4c315f4f20539
0
b2ihealthcare/snow-owl,IHTSDO/snow-owl,IHTSDO/snow-owl,b2ihealthcare/snow-owl,IHTSDO/snow-owl,b2ihealthcare/snow-owl,IHTSDO/snow-owl,b2ihealthcare/snow-owl
/* * Copyright 2017-2018 B2i Healthcare Pte Ltd, http://b2i.sg * * 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...
core/com.b2international.snowowl.datastore/src/com/b2international/snowowl/core/validation/ValidateRequest.java
/* * Copyright 2017-2018 B2i Healthcare Pte Ltd, http://b2i.sg * * 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...
SO-3125: use Stopwatch instead of custom elapsed time tracking
core/com.b2international.snowowl.datastore/src/com/b2international/snowowl/core/validation/ValidateRequest.java
SO-3125: use Stopwatch instead of custom elapsed time tracking
Java
apache-2.0
8816f85709417f447f50693c70647395971aa834
0
OpenUniversity/ovirt-engine,halober/ovirt-engine,halober/ovirt-engine,walteryang47/ovirt-engine,OpenUniversity/ovirt-engine,walteryang47/ovirt-engine,walteryang47/ovirt-engine,yingyun001/ovirt-engine,eayun/ovirt-engine,OpenUniversity/ovirt-engine,yapengsong/ovirt-engine,walteryang47/ovirt-engine,eayun/ovirt-engine,halo...
package org.ovirt.engine.ui.uicommonweb.models.clusters; import java.util.ArrayList; import org.ovirt.engine.core.common.businessentities.MigrateOnErrorOptions; import org.ovirt.engine.core.common.businessentities.ServerCpu; import org.ovirt.engine.core.common.businessentities.StorageType; import org.ovirt.engine.cor...
frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/clusters/ClusterModel.java
package org.ovirt.engine.ui.uicommonweb.models.clusters; import java.util.ArrayList; import org.ovirt.engine.core.common.businessentities.MigrateOnErrorOptions; import org.ovirt.engine.core.common.businessentities.ServerCpu; import org.ovirt.engine.core.common.businessentities.StorageType; import org.ovirt.engine.cor...
userportal,webadmin: ClusterModel FindBugs In StoragePool_SelectedItemChanged, selectedDataCenter is validated to be non-null in the beginning of the method, so further checks are redundant, and can be safely removed. Change-Id: Id3d2dbe60db232d07f463af96a3b05b9513a40e6 Signed-off-by: Allon Mureinik <abc9ddaceaf0c059...
frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/clusters/ClusterModel.java
userportal,webadmin: ClusterModel FindBugs
Java
apache-2.0
3fb5eafeacc9626f663584732fc64aa3f4da8574
0
subutai-io/Subutai,subutai-io/Subutai,subutai-io/base,subutai-io/base,subutai-io/Subutai,subutai-io/Subutai,subutai-io/Subutai,subutai-io/base,subutai-io/Subutai,subutai-io/base
/* * 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 org.safehaus.kiskis.mgmt.server.ui.modules.mongo.exec; import java.text.MessageFormat; import java.util.ArrayList; import java...
management/server/ui-modules/mongodb/src/main/java/org/safehaus/kiskis/mgmt/server/ui/modules/mongo/exec/Operation.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 org.safehaus.kiskis.mgmt.server.ui.modules.mongo.exec; import java.text.MessageFormat; import java.util.ArrayList; import java...
Mongo in progress Former-commit-id: ea1ebec5788294826e324e93b2a40085b4f53a33
management/server/ui-modules/mongodb/src/main/java/org/safehaus/kiskis/mgmt/server/ui/modules/mongo/exec/Operation.java
Mongo in progress
Java
apache-2.0
48e85b4dee8d1b8a08a886826116e49f1ba1bce2
0
softwaremill/softwaremill-common,softwaremill/softwaremill-common
package pl.softwaremill.common.test.web.selenium; import org.testng.Assert; import static pl.softwaremill.common.test.web.selenium.AbstractSeleniumTest.fail; import static pl.softwaremill.common.test.web.selenium.AbstractSeleniumTest.selenium; /** * @author Pawel Wrzeszcz (pawel . wrzeszcz [at] gmail . com) * @aut...
softwaremill-test/softwaremill-test-ui-web/src/main/java/pl/softwaremill/common/test/web/selenium/SeleniumCommands.java
package pl.softwaremill.common.test.web.selenium; import org.testng.Assert; import static pl.softwaremill.common.test.web.selenium.AbstractSeleniumTest.fail; import static pl.softwaremill.common.test.web.selenium.AbstractSeleniumTest.selenium; /** * @author Pawel Wrzeszcz (pawel . wrzeszcz [at] gmail . com) */ pub...
#14 add methods to SeleniumCommands
softwaremill-test/softwaremill-test-ui-web/src/main/java/pl/softwaremill/common/test/web/selenium/SeleniumCommands.java
#14 add methods to SeleniumCommands