id
int32
0
165k
repo
stringlengths
7
58
path
stringlengths
12
218
func_name
stringlengths
3
140
original_string
stringlengths
73
34.1k
language
stringclasses
1 value
code
stringlengths
73
34.1k
code_tokens
list
docstring
stringlengths
3
16k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
105
339
45,900
osiam/connector4java
src/main/java/org/osiam/resources/scim/Extension.java
Extension.getField
public <T> T getField(String field, ExtensionFieldType<T> extensionFieldType) { if (field == null || field.isEmpty()) { throw new IllegalArgumentException("Invalid field name"); } if (extensionFieldType == null) { throw new IllegalArgumentException("Invalid field type"); ...
java
public <T> T getField(String field, ExtensionFieldType<T> extensionFieldType) { if (field == null || field.isEmpty()) { throw new IllegalArgumentException("Invalid field name"); } if (extensionFieldType == null) { throw new IllegalArgumentException("Invalid field type"); ...
[ "public", "<", "T", ">", "T", "getField", "(", "String", "field", ",", "ExtensionFieldType", "<", "T", ">", "extensionFieldType", ")", "{", "if", "(", "field", "==", "null", "||", "field", ".", "isEmpty", "(", ")", ")", "{", "throw", "new", "IllegalArg...
Return the value for the field with a given name and type. @param field The name of the field to retrieve the value of. @param extensionFieldType The type of the field. @return The value for the field with the given name. @throws NoSuchElementException if this schema does not contain a field of the give...
[ "Return", "the", "value", "for", "the", "field", "with", "a", "given", "name", "and", "type", "." ]
a5e6ae1e706f4889d662a069fe2f3bf8e3848d12
https://github.com/osiam/connector4java/blob/a5e6ae1e706f4889d662a069fe2f3bf8e3848d12/src/main/java/org/osiam/resources/scim/Extension.java#L88-L101
45,901
jenkinsci/gmaven
gmaven-plugin/src/main/java/org/codehaus/gmaven/plugin/execute/ExecuteMojo.java
ExecuteMojo.getProjectClasspathElements
protected List getProjectClasspathElements() throws DependencyResolutionRequiredException { Set results = new LinkedHashSet(); Set includes = getClasspathIncludes(); if (includes.contains(CLASSPATH_INCLUDE_ALL) || includes.contains(CLASSPATH_INCLUDE_RUNTIME)) { for (Iterator i = pr...
java
protected List getProjectClasspathElements() throws DependencyResolutionRequiredException { Set results = new LinkedHashSet(); Set includes = getClasspathIncludes(); if (includes.contains(CLASSPATH_INCLUDE_ALL) || includes.contains(CLASSPATH_INCLUDE_RUNTIME)) { for (Iterator i = pr...
[ "protected", "List", "getProjectClasspathElements", "(", ")", "throws", "DependencyResolutionRequiredException", "{", "Set", "results", "=", "new", "LinkedHashSet", "(", ")", ";", "Set", "includes", "=", "getClasspathIncludes", "(", ")", ";", "if", "(", "includes", ...
Allow the script to work with every JAR dependency of both the project and plugin, including optional and provided dependencies. Runtime classpath elements are loaded first, so that legacy behavior is not modified. Additional elements are added first in the order of project artifacts, then in the order of plugin artif...
[ "Allow", "the", "script", "to", "work", "with", "every", "JAR", "dependency", "of", "both", "the", "project", "and", "plugin", "including", "optional", "and", "provided", "dependencies", ".", "Runtime", "classpath", "elements", "are", "loaded", "first", "so", ...
80d5f6657e15b3e05ffbb82128ed8bb280836e10
https://github.com/jenkinsci/gmaven/blob/80d5f6657e15b3e05ffbb82128ed8bb280836e10/gmaven-plugin/src/main/java/org/codehaus/gmaven/plugin/execute/ExecuteMojo.java#L220-L266
45,902
jenkinsci/gmaven
gmaven-runtime/gmaven-runtime-loader/src/main/java/org/codehaus/gmaven/runtime/loader/DefaultProviderLoader.java
DefaultProviderLoader.findProviders
private Map findProviders() { Map providers = getContainer().getComponentDescriptorMap(Provider.class.getName()); if (providers == null) { throw new Error("No providers discovered"); } Set keys = providers.keySet(); Map found = null; for (Iterator iter = key...
java
private Map findProviders() { Map providers = getContainer().getComponentDescriptorMap(Provider.class.getName()); if (providers == null) { throw new Error("No providers discovered"); } Set keys = providers.keySet(); Map found = null; for (Iterator iter = key...
[ "private", "Map", "findProviders", "(", ")", "{", "Map", "providers", "=", "getContainer", "(", ")", ".", "getComponentDescriptorMap", "(", "Provider", ".", "class", ".", "getName", "(", ")", ")", ";", "if", "(", "providers", "==", "null", ")", "{", "thr...
Find any providers which are available in the container.
[ "Find", "any", "providers", "which", "are", "available", "in", "the", "container", "." ]
80d5f6657e15b3e05ffbb82128ed8bb280836e10
https://github.com/jenkinsci/gmaven/blob/80d5f6657e15b3e05ffbb82128ed8bb280836e10/gmaven-runtime/gmaven-runtime-loader/src/main/java/org/codehaus/gmaven/runtime/loader/DefaultProviderLoader.java#L90-L122
45,903
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/frameworks/angularjs/FunctionWriter.java
FunctionWriter.writeDependencies
void writeDependencies(Writer writer, String deco, String... dependencies) throws IOException { boolean first = true; for (String dependency : dependencies) { if (!first) { writer.append(COMMA).append(SPACEOPTIONAL); } writer.append(deco).append(dependency).append(deco); first = false; } }
java
void writeDependencies(Writer writer, String deco, String... dependencies) throws IOException { boolean first = true; for (String dependency : dependencies) { if (!first) { writer.append(COMMA).append(SPACEOPTIONAL); } writer.append(deco).append(dependency).append(deco); first = false; } }
[ "void", "writeDependencies", "(", "Writer", "writer", ",", "String", "deco", ",", "String", "...", "dependencies", ")", "throws", "IOException", "{", "boolean", "first", "=", "true", ";", "for", "(", "String", "dependency", ":", "dependencies", ")", "{", "if...
dep1, dep2 or if deco = "'" 'dep1', 'dep2' @param writer @param deco @param dependencies @throws IOException
[ "dep1", "dep2", "or", "if", "deco", "=", "dep1", "dep2" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/frameworks/angularjs/FunctionWriter.java#L39-L48
45,904
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/frameworks/angularjs/FunctionWriter.java
FunctionWriter.writeCloseFunction
public void writeCloseFunction(Writer writer) throws IOException { writer.append(TAB).append(CLOSEBRACE).append(CR); }
java
public void writeCloseFunction(Writer writer) throws IOException { writer.append(TAB).append(CLOSEBRACE).append(CR); }
[ "public", "void", "writeCloseFunction", "(", "Writer", "writer", ")", "throws", "IOException", "{", "writer", ".", "append", "(", "TAB", ")", ".", "append", "(", "CLOSEBRACE", ")", ".", "append", "(", "CR", ")", ";", "}" ]
\t} @param writer @throws IOException
[ "\\", "t", "}" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/frameworks/angularjs/FunctionWriter.java#L71-L73
45,905
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java
DataServiceVisitorJsBuilder.writeArguments
void writeArguments(Iterator<String> names, Writer writer) throws IOException { while(names.hasNext()) { String name = names.next(); writer.append(name); // argname if(names.hasNext()) { writer.append(COMMA).append(SPACEOPTIONAL); //, } } }
java
void writeArguments(Iterator<String> names, Writer writer) throws IOException { while(names.hasNext()) { String name = names.next(); writer.append(name); // argname if(names.hasNext()) { writer.append(COMMA).append(SPACEOPTIONAL); //, } } }
[ "void", "writeArguments", "(", "Iterator", "<", "String", ">", "names", ",", "Writer", "writer", ")", "throws", "IOException", "{", "while", "(", "names", ".", "hasNext", "(", ")", ")", "{", "String", "name", "=", "names", ".", "next", "(", ")", ";", ...
Write argument whit comma if necessary @param names @param writer @throws IOException
[ "Write", "argument", "whit", "comma", "if", "necessary" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java#L92-L100
45,906
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java
DataServiceVisitorJsBuilder.writeReturnComment
void writeReturnComment(TypeMirror returnType, Writer writer) throws IOException { String type = returnType.toString(); if (!"void".equals(type)) { writer.append(TAB2).append(" * @return ").append(OPENBRACE).append(type).append(CLOSEBRACE).append(CR); } }
java
void writeReturnComment(TypeMirror returnType, Writer writer) throws IOException { String type = returnType.toString(); if (!"void".equals(type)) { writer.append(TAB2).append(" * @return ").append(OPENBRACE).append(type).append(CLOSEBRACE).append(CR); } }
[ "void", "writeReturnComment", "(", "TypeMirror", "returnType", ",", "Writer", "writer", ")", "throws", "IOException", "{", "String", "type", "=", "returnType", ".", "toString", "(", ")", ";", "if", "(", "!", "\"void\"", ".", "equals", "(", "type", ")", ")"...
write js documentation for return type @param returnType @param writer @throws IOException
[ "write", "js", "documentation", "for", "return", "type" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java#L126-L131
45,907
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java
DataServiceVisitorJsBuilder.writeArgumentsComment
void writeArgumentsComment(Iterator<String> argumentsType, Iterator<String> argumentsName, Writer writer) throws IOException { while(argumentsType.hasNext()) { String type = argumentsType.next(); String name = argumentsName.next(); writer.append(TAB2).append(" * @param ").append(OPENBRACE).append(type).a...
java
void writeArgumentsComment(Iterator<String> argumentsType, Iterator<String> argumentsName, Writer writer) throws IOException { while(argumentsType.hasNext()) { String type = argumentsType.next(); String name = argumentsName.next(); writer.append(TAB2).append(" * @param ").append(OPENBRACE).append(type).a...
[ "void", "writeArgumentsComment", "(", "Iterator", "<", "String", ">", "argumentsType", ",", "Iterator", "<", "String", ">", "argumentsName", ",", "Writer", "writer", ")", "throws", "IOException", "{", "while", "(", "argumentsType", ".", "hasNext", "(", ")", ")...
write js documentation for arguments @param argumentsType @param argumentsName @param writer @throws IOException
[ "write", "js", "documentation", "for", "arguments" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java#L141-L147
45,908
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java
DataServiceVisitorJsBuilder.writeJavadocComment
void writeJavadocComment(String methodComment, Writer writer) throws IOException { // From javadoc if (methodComment != null) { methodComment = methodComment.split("@")[0]; int lastIndexOf = methodComment.lastIndexOf("\n"); if (lastIndexOf >= 0) { methodComment = methodComment.substring(0, lastIn...
java
void writeJavadocComment(String methodComment, Writer writer) throws IOException { // From javadoc if (methodComment != null) { methodComment = methodComment.split("@")[0]; int lastIndexOf = methodComment.lastIndexOf("\n"); if (lastIndexOf >= 0) { methodComment = methodComment.substring(0, lastIn...
[ "void", "writeJavadocComment", "(", "String", "methodComment", ",", "Writer", "writer", ")", "throws", "IOException", "{", "// From javadoc\r", "if", "(", "methodComment", "!=", "null", ")", "{", "methodComment", "=", "methodComment", ".", "split", "(", "\"@\"", ...
write js documentation from javadoc @param methodComment @param writer @throws IOException
[ "write", "js", "documentation", "from", "javadoc" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java#L154-L165
45,909
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java
DataServiceVisitorJsBuilder.createMethodBody
void createMethodBody(String classname, ExecutableElement methodElement, List<String> arguments, Writer writer) throws IOException { String methodName = getMethodName(methodElement); boolean ws = isWebsocketDataService(methodElement); String args = stringJoinAndDecorate(arguments, COMMA, new NothingDecorator()...
java
void createMethodBody(String classname, ExecutableElement methodElement, List<String> arguments, Writer writer) throws IOException { String methodName = getMethodName(methodElement); boolean ws = isWebsocketDataService(methodElement); String args = stringJoinAndDecorate(arguments, COMMA, new NothingDecorator()...
[ "void", "createMethodBody", "(", "String", "classname", ",", "ExecutableElement", "methodElement", ",", "List", "<", "String", ">", "arguments", ",", "Writer", "writer", ")", "throws", "IOException", "{", "String", "methodName", "=", "getMethodName", "(", "methodE...
Create javascript method body @param classname @param methodElement @param arguments @param writer @throws IOException
[ "Create", "javascript", "method", "body" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java#L186-L192
45,910
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java
DataServiceVisitorJsBuilder.computeKeys
String computeKeys(ExecutableElement methodElement, List<String> arguments) { String keys = stringJoinAndDecorate(arguments, COMMA, new NothingDecorator()); if (arguments != null && !arguments.isEmpty()) { JsCacheResult jcr = methodElement.getAnnotation(JsCacheResult.class); // if there is a jcr annotatio...
java
String computeKeys(ExecutableElement methodElement, List<String> arguments) { String keys = stringJoinAndDecorate(arguments, COMMA, new NothingDecorator()); if (arguments != null && !arguments.isEmpty()) { JsCacheResult jcr = methodElement.getAnnotation(JsCacheResult.class); // if there is a jcr annotatio...
[ "String", "computeKeys", "(", "ExecutableElement", "methodElement", ",", "List", "<", "String", ">", "arguments", ")", "{", "String", "keys", "=", "stringJoinAndDecorate", "(", "arguments", ",", "COMMA", ",", "new", "NothingDecorator", "(", ")", ")", ";", "if"...
Generate key part for variable part of md5 @param methodElement @param arguments @return
[ "Generate", "key", "part", "for", "variable", "part", "of", "md5" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java#L218-L228
45,911
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java
DataServiceVisitorJsBuilder.createReturnOcelotPromiseFactory
void createReturnOcelotPromiseFactory(String classname, String methodName, boolean ws, String args, String keys, Writer writer) throws IOException { String md5 = keyMaker.getMd5(classname + DOT + methodName); writer.append(TAB3).append("return promiseFactory.create").append(OPENPARENTHESIS).append("_ds").append(C...
java
void createReturnOcelotPromiseFactory(String classname, String methodName, boolean ws, String args, String keys, Writer writer) throws IOException { String md5 = keyMaker.getMd5(classname + DOT + methodName); writer.append(TAB3).append("return promiseFactory.create").append(OPENPARENTHESIS).append("_ds").append(C...
[ "void", "createReturnOcelotPromiseFactory", "(", "String", "classname", ",", "String", "methodName", ",", "boolean", "ws", ",", "String", "args", ",", "String", "keys", ",", "Writer", "writer", ")", "throws", "IOException", "{", "String", "md5", "=", "keyMaker",...
Return body js line that return the OcelotPromise @param classname @param methodName @param args @param keys @param writer @throws IOException
[ "Return", "body", "js", "line", "that", "return", "the", "OcelotPromise" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java#L239-L247
45,912
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java
DataServiceVisitorJsBuilder.stringJoinAndDecorate
String stringJoinAndDecorate(final List<String> list, final String sep, StringDecorator decorator) { if (decorator == null) { decorator = new NothingDecorator(); } StringBuilder sb = new StringBuilder(); if (list != null) { boolean first = true; for (String argument : list) { if (!first) { ...
java
String stringJoinAndDecorate(final List<String> list, final String sep, StringDecorator decorator) { if (decorator == null) { decorator = new NothingDecorator(); } StringBuilder sb = new StringBuilder(); if (list != null) { boolean first = true; for (String argument : list) { if (!first) { ...
[ "String", "stringJoinAndDecorate", "(", "final", "List", "<", "String", ">", "list", ",", "final", "String", "sep", ",", "StringDecorator", "decorator", ")", "{", "if", "(", "decorator", "==", "null", ")", "{", "decorator", "=", "new", "NothingDecorator", "(...
Join list and separate by sep, each elements is decorate by 'decorator' @param list @param decoration @return
[ "Join", "list", "and", "separate", "by", "sep", "each", "elements", "is", "decorate", "by", "decorator" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/DataServiceVisitorJsBuilder.java#L256-L272
45,913
square/rack-servlet
core/src/main/java/com/squareup/rack/jruby/JRubyRackApplication.java
JRubyRackApplication.call
@Override public RackResponse call(RackEnvironment environment) { RubyHash environmentHash = convertToRubyHash(environment.entrySet()); RubyArray response = callRackApplication(environmentHash); return convertToJavaRackResponse(response); }
java
@Override public RackResponse call(RackEnvironment environment) { RubyHash environmentHash = convertToRubyHash(environment.entrySet()); RubyArray response = callRackApplication(environmentHash); return convertToJavaRackResponse(response); }
[ "@", "Override", "public", "RackResponse", "call", "(", "RackEnvironment", "environment", ")", "{", "RubyHash", "environmentHash", "=", "convertToRubyHash", "(", "environment", ".", "entrySet", "(", ")", ")", ";", "RubyArray", "response", "=", "callRackApplication",...
Calls the delegate Rack application, translating into and back out of the JRuby interpreter. @param environment the Rack environment @return the Rack response
[ "Calls", "the", "delegate", "Rack", "application", "translating", "into", "and", "back", "out", "of", "the", "JRuby", "interpreter", "." ]
9d480e4953f8297436a73928c41e592bddc1556b
https://github.com/square/rack-servlet/blob/9d480e4953f8297436a73928c41e592bddc1556b/core/src/main/java/com/squareup/rack/jruby/JRubyRackApplication.java#L63-L69
45,914
italiangrid/voms-api-java
src/main/java/org/italiangrid/voms/request/impl/DefaultVOMSACService.java
DefaultVOMSACService.getACFromResponse
protected AttributeCertificate getACFromResponse(VOMSACRequest request, VOMSResponse response) { byte[] acBytes = response.getAC(); if (acBytes == null) return null; ASN1InputStream asn1InputStream = new ASN1InputStream(acBytes); AttributeCertificate attributeCertificate = null; try {...
java
protected AttributeCertificate getACFromResponse(VOMSACRequest request, VOMSResponse response) { byte[] acBytes = response.getAC(); if (acBytes == null) return null; ASN1InputStream asn1InputStream = new ASN1InputStream(acBytes); AttributeCertificate attributeCertificate = null; try {...
[ "protected", "AttributeCertificate", "getACFromResponse", "(", "VOMSACRequest", "request", ",", "VOMSResponse", "response", ")", "{", "byte", "[", "]", "acBytes", "=", "response", ".", "getAC", "(", ")", ";", "if", "(", "acBytes", "==", "null", ")", "return", ...
Extracts an AC from a VOMS response @param request the request @param response the received response @return a possibly <code>null</code> {@link AttributeCertificate} object
[ "Extracts", "an", "AC", "from", "a", "VOMS", "response" ]
b33d6cf98ca9449bed87b1cc307d411514589deb
https://github.com/italiangrid/voms-api-java/blob/b33d6cf98ca9449bed87b1cc307d411514589deb/src/main/java/org/italiangrid/voms/request/impl/DefaultVOMSACService.java#L108-L135
45,915
italiangrid/voms-api-java
src/main/java/org/italiangrid/voms/request/impl/DefaultVOMSACService.java
DefaultVOMSACService.handleErrorsInResponse
protected void handleErrorsInResponse(VOMSACRequest request, VOMSServerInfo si, VOMSResponse response) { if (response.hasErrors()) requestListener.notifyErrorsInVOMSReponse(request, si, response.errorMessages()); }
java
protected void handleErrorsInResponse(VOMSACRequest request, VOMSServerInfo si, VOMSResponse response) { if (response.hasErrors()) requestListener.notifyErrorsInVOMSReponse(request, si, response.errorMessages()); }
[ "protected", "void", "handleErrorsInResponse", "(", "VOMSACRequest", "request", ",", "VOMSServerInfo", "si", ",", "VOMSResponse", "response", ")", "{", "if", "(", "response", ".", "hasErrors", "(", ")", ")", "requestListener", ".", "notifyErrorsInVOMSReponse", "(", ...
Handles errors included in the VOMS response @param request the request @param si the VOMS server endpoint information @param response the received {@link VOMSResponse}
[ "Handles", "errors", "included", "in", "the", "VOMS", "response" ]
b33d6cf98ca9449bed87b1cc307d411514589deb
https://github.com/italiangrid/voms-api-java/blob/b33d6cf98ca9449bed87b1cc307d411514589deb/src/main/java/org/italiangrid/voms/request/impl/DefaultVOMSACService.java#L164-L171
45,916
italiangrid/voms-api-java
src/main/java/org/italiangrid/voms/request/impl/DefaultVOMSACService.java
DefaultVOMSACService.handleWarningsInResponse
protected void handleWarningsInResponse(VOMSACRequest request, VOMSServerInfo si, VOMSResponse response) { if (response.hasWarnings()) requestListener.notifyWarningsInVOMSResponse(request, si, response.warningMessages()); }
java
protected void handleWarningsInResponse(VOMSACRequest request, VOMSServerInfo si, VOMSResponse response) { if (response.hasWarnings()) requestListener.notifyWarningsInVOMSResponse(request, si, response.warningMessages()); }
[ "protected", "void", "handleWarningsInResponse", "(", "VOMSACRequest", "request", ",", "VOMSServerInfo", "si", ",", "VOMSResponse", "response", ")", "{", "if", "(", "response", ".", "hasWarnings", "(", ")", ")", "requestListener", ".", "notifyWarningsInVOMSResponse", ...
Handles warnings included in the VOMS response @param request the request @param si the VOMS server endpoint information @param response the received {@link VOMSResponse}
[ "Handles", "warnings", "included", "in", "the", "VOMS", "response" ]
b33d6cf98ca9449bed87b1cc307d411514589deb
https://github.com/italiangrid/voms-api-java/blob/b33d6cf98ca9449bed87b1cc307d411514589deb/src/main/java/org/italiangrid/voms/request/impl/DefaultVOMSACService.java#L183-L189
45,917
hageldave/ImagingKit
ImagingKit_Core/src/main/java/hageldave/imagingkit/core/util/ImagePanel.java
ImagePanel.drawCheckerBoard
protected void drawCheckerBoard(Graphics2D g2d) { g2d.setColor(getBackground()); g2d.fillRect(0, 0, getWidth(), getHeight()); g2d.setColor(getForeground()); final int checkSize = this.checkerSize; final int halfCheckSize = checkSize/2; final Stroke checker = this.checkerStroke; final Stroke backup = g2...
java
protected void drawCheckerBoard(Graphics2D g2d) { g2d.setColor(getBackground()); g2d.fillRect(0, 0, getWidth(), getHeight()); g2d.setColor(getForeground()); final int checkSize = this.checkerSize; final int halfCheckSize = checkSize/2; final Stroke checker = this.checkerStroke; final Stroke backup = g2...
[ "protected", "void", "drawCheckerBoard", "(", "Graphics2D", "g2d", ")", "{", "g2d", ".", "setColor", "(", "getBackground", "(", ")", ")", ";", "g2d", ".", "fillRect", "(", "0", ",", "0", ",", "getWidth", "(", ")", ",", "getHeight", "(", ")", ")", ";"...
Draws the checkerboard background to the specified graphics context. @param g2d graphics context to draw on @since 1.4
[ "Draws", "the", "checkerboard", "background", "to", "the", "specified", "graphics", "context", "." ]
3837c7d550a12cf4dc5718b644ced94b97f52668
https://github.com/hageldave/ImagingKit/blob/3837c7d550a12cf4dc5718b644ced94b97f52668/ImagingKit_Core/src/main/java/hageldave/imagingkit/core/util/ImagePanel.java#L304-L321
45,918
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/web/rest/RSEndpoint.java
RSEndpoint.getMessageToClient
@POST @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_FORM_URLENCODED) @Override public String getMessageToClient(@FormParam(Constants.Message.MFC) String json) { HttpSession httpSession = getHttpSession(); setContext(httpSession); MessageFromClient message = MessageFromClient.createFrom...
java
@POST @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_FORM_URLENCODED) @Override public String getMessageToClient(@FormParam(Constants.Message.MFC) String json) { HttpSession httpSession = getHttpSession(); setContext(httpSession); MessageFromClient message = MessageFromClient.createFrom...
[ "@", "POST", "@", "Produces", "(", "MediaType", ".", "APPLICATION_JSON", ")", "@", "Consumes", "(", "MediaType", ".", "APPLICATION_FORM_URLENCODED", ")", "@", "Override", "public", "String", "getMessageToClient", "(", "@", "FormParam", "(", "Constants", ".", "Me...
Retrieves representation of an instance of org.ocelotds.GenericResource @param json @return an instance of java.lang.String
[ "Retrieves", "representation", "of", "an", "instance", "of", "org", ".", "ocelotds", ".", "GenericResource" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/web/rest/RSEndpoint.java#L54-L64
45,919
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/OcelotServices.java
OcelotServices.setLocale
@JsCacheRemove(cls = OcelotServices.class, methodName = "getLocale", keys = {}, userScope = true) public void setLocale(@JsonUnmarshaller(LocaleMarshaller.class) Locale locale) { logger.debug("Receive setLocale call from client. {}", locale); ocelotContext.setLocale(locale); }
java
@JsCacheRemove(cls = OcelotServices.class, methodName = "getLocale", keys = {}, userScope = true) public void setLocale(@JsonUnmarshaller(LocaleMarshaller.class) Locale locale) { logger.debug("Receive setLocale call from client. {}", locale); ocelotContext.setLocale(locale); }
[ "@", "JsCacheRemove", "(", "cls", "=", "OcelotServices", ".", "class", ",", "methodName", "=", "\"getLocale\"", ",", "keys", "=", "{", "}", ",", "userScope", "=", "true", ")", "public", "void", "setLocale", "(", "@", "JsonUnmarshaller", "(", "LocaleMarshalle...
define locale for current user @param locale
[ "define", "locale", "for", "current", "user" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/OcelotServices.java#L66-L70
45,920
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/OcelotServices.java
OcelotServices.getLocale
@JsCacheResult(year = 1) @JsonMarshaller(LocaleMarshaller.class) public Locale getLocale() { logger.debug("Receive getLocale call from client."); return ocelotContext.getLocale(); }
java
@JsCacheResult(year = 1) @JsonMarshaller(LocaleMarshaller.class) public Locale getLocale() { logger.debug("Receive getLocale call from client."); return ocelotContext.getLocale(); }
[ "@", "JsCacheResult", "(", "year", "=", "1", ")", "@", "JsonMarshaller", "(", "LocaleMarshaller", ".", "class", ")", "public", "Locale", "getLocale", "(", ")", "{", "logger", ".", "debug", "(", "\"Receive getLocale call from client.\"", ")", ";", "return", "oc...
get current user locale @return
[ "get", "current", "user", "locale" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/OcelotServices.java#L77-L82
45,921
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/OcelotServices.java
OcelotServices.getOutDatedCache
public Collection<String> getOutDatedCache(Map<String, Long> states) { return updatedCacheManager.getOutDatedCache(states); }
java
public Collection<String> getOutDatedCache(Map<String, Long> states) { return updatedCacheManager.getOutDatedCache(states); }
[ "public", "Collection", "<", "String", ">", "getOutDatedCache", "(", "Map", "<", "String", ",", "Long", ">", "states", ")", "{", "return", "updatedCacheManager", ".", "getOutDatedCache", "(", "states", ")", ";", "}" ]
GEt outdated cache among list @param states @return
[ "GEt", "outdated", "cache", "among", "list" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/OcelotServices.java#L99-L101
45,922
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/OcelotServices.java
OcelotServices.subscribe
@JsTopic @WsDataService public Integer subscribe(@JsTopicName(prefix = Constants.Topic.SUBSCRIBERS) String topic, Session session) throws IllegalAccessException { return topicManager.registerTopicSession(topic, session); }
java
@JsTopic @WsDataService public Integer subscribe(@JsTopicName(prefix = Constants.Topic.SUBSCRIBERS) String topic, Session session) throws IllegalAccessException { return topicManager.registerTopicSession(topic, session); }
[ "@", "JsTopic", "@", "WsDataService", "public", "Integer", "subscribe", "(", "@", "JsTopicName", "(", "prefix", "=", "Constants", ".", "Topic", ".", "SUBSCRIBERS", ")", "String", "topic", ",", "Session", "session", ")", "throws", "IllegalAccessException", "{", ...
Subscribe to topic @param topic @param session @return @throws IllegalAccessException
[ "Subscribe", "to", "topic" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/OcelotServices.java#L111-L115
45,923
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/OcelotServices.java
OcelotServices.unsubscribe
@JsTopic @WsDataService public Integer unsubscribe(@JsTopicName(prefix = Constants.Topic.SUBSCRIBERS) String topic, Session session) { return topicManager.unregisterTopicSession(topic, session); }
java
@JsTopic @WsDataService public Integer unsubscribe(@JsTopicName(prefix = Constants.Topic.SUBSCRIBERS) String topic, Session session) { return topicManager.unregisterTopicSession(topic, session); }
[ "@", "JsTopic", "@", "WsDataService", "public", "Integer", "unsubscribe", "(", "@", "JsTopicName", "(", "prefix", "=", "Constants", ".", "Topic", ".", "SUBSCRIBERS", ")", "String", "topic", ",", "Session", "session", ")", "{", "return", "topicManager", ".", ...
Unsubscribe to topic @param topic @param session @return
[ "Unsubscribe", "to", "topic" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/OcelotServices.java#L123-L127
45,924
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/messageControl/MessageControllerManager.java
MessageControllerManager.getJsTopicMessageController
public JsTopicMessageController getJsTopicMessageController(String topic) { logger.debug("Looking for messageController for topic '{}'", topic); JsTopicMessageController messageController = messageControllerCache.loadFromCache(topic); if(null == messageController) { // not in cache messageController = getJsTop...
java
public JsTopicMessageController getJsTopicMessageController(String topic) { logger.debug("Looking for messageController for topic '{}'", topic); JsTopicMessageController messageController = messageControllerCache.loadFromCache(topic); if(null == messageController) { // not in cache messageController = getJsTop...
[ "public", "JsTopicMessageController", "getJsTopicMessageController", "(", "String", "topic", ")", "{", "logger", ".", "debug", "(", "\"Looking for messageController for topic '{}'\"", ",", "topic", ")", ";", "JsTopicMessageController", "messageController", "=", "messageContro...
Get jstopic message controller @param topic @return
[ "Get", "jstopic", "message", "controller" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/messageControl/MessageControllerManager.java#L42-L56
45,925
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/messageControl/MessageControllerManager.java
MessageControllerManager.getJsTopicMessageControllerFromJsTopicControl
JsTopicMessageController getJsTopicMessageControllerFromJsTopicControl(String topic) { logger.debug("Looking for messageController for topic '{}' from JsTopicControl annotation", topic); Instance<JsTopicMessageController<?>> select = topicMessageController.select(new JsTopicCtrlAnnotationLiteral(topic)); if(!sele...
java
JsTopicMessageController getJsTopicMessageControllerFromJsTopicControl(String topic) { logger.debug("Looking for messageController for topic '{}' from JsTopicControl annotation", topic); Instance<JsTopicMessageController<?>> select = topicMessageController.select(new JsTopicCtrlAnnotationLiteral(topic)); if(!sele...
[ "JsTopicMessageController", "getJsTopicMessageControllerFromJsTopicControl", "(", "String", "topic", ")", "{", "logger", ".", "debug", "(", "\"Looking for messageController for topic '{}' from JsTopicControl annotation\"", ",", "topic", ")", ";", "Instance", "<", "JsTopicMessageC...
Get jstopic message controller from JsTopicControl @param topic @return
[ "Get", "jstopic", "message", "controller", "from", "JsTopicControl" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/messageControl/MessageControllerManager.java#L63-L71
45,926
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/TopicsMessagesBroadcaster.java
TopicsMessagesBroadcaster.sendMessageToTopicForSessions
int sendMessageToTopicForSessions(Collection<Session> sessions, MessageToClient mtc, Object payload) { int sended = 0; JsTopicMessageController msgControl = messageControllerManager.getJsTopicMessageController(mtc.getId()); Collection<Session> sessionsClosed = new ArrayList<>(); for (Session session : sessi...
java
int sendMessageToTopicForSessions(Collection<Session> sessions, MessageToClient mtc, Object payload) { int sended = 0; JsTopicMessageController msgControl = messageControllerManager.getJsTopicMessageController(mtc.getId()); Collection<Session> sessionsClosed = new ArrayList<>(); for (Session session : sessi...
[ "int", "sendMessageToTopicForSessions", "(", "Collection", "<", "Session", ">", "sessions", ",", "MessageToClient", "mtc", ",", "Object", "payload", ")", "{", "int", "sended", "=", "0", ";", "JsTopicMessageController", "msgControl", "=", "messageControllerManager", ...
send message to sessions apply msgControl to topic @param sessions @param mtc @param payload @return
[ "send", "message", "to", "sessions", "apply", "msgControl", "to", "topic" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/TopicsMessagesBroadcaster.java#L86-L102
45,927
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/TopicsMessagesBroadcaster.java
TopicsMessagesBroadcaster.checkAndSendMtcToSession
int checkAndSendMtcToSession(Session session, JsTopicMessageController msgControl, MessageToClient mtc, Object payload) throws SessionException { if (session != null) { if (session.isOpen()) { try { if (null != msgControl) { checkMessageTopic(userContextFactory.getUserContext(session.getId()), ...
java
int checkAndSendMtcToSession(Session session, JsTopicMessageController msgControl, MessageToClient mtc, Object payload) throws SessionException { if (session != null) { if (session.isOpen()) { try { if (null != msgControl) { checkMessageTopic(userContextFactory.getUserContext(session.getId()), ...
[ "int", "checkAndSendMtcToSession", "(", "Session", "session", ",", "JsTopicMessageController", "msgControl", ",", "MessageToClient", "mtc", ",", "Object", "payload", ")", "throws", "SessionException", "{", "if", "(", "session", "!=", "null", ")", "{", "if", "(", ...
Send Message to session, check right before @param session @param msgControl @param mtc @param payload @return @throws SessionException
[ "Send", "Message", "to", "session", "check", "right", "before" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/TopicsMessagesBroadcaster.java#L114-L132
45,928
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/TopicsMessagesBroadcaster.java
TopicsMessagesBroadcaster.checkMessageTopic
void checkMessageTopic(UserContext ctx, String topic, Object payload, JsTopicMessageController msgControl) throws NotRecipientException { if (null != msgControl) { msgControl.checkRight(ctx, topic, payload); } }
java
void checkMessageTopic(UserContext ctx, String topic, Object payload, JsTopicMessageController msgControl) throws NotRecipientException { if (null != msgControl) { msgControl.checkRight(ctx, topic, payload); } }
[ "void", "checkMessageTopic", "(", "UserContext", "ctx", ",", "String", "topic", ",", "Object", "payload", ",", "JsTopicMessageController", "msgControl", ")", "throws", "NotRecipientException", "{", "if", "(", "null", "!=", "msgControl", ")", "{", "msgControl", "."...
Check if message is granted by messageControl @param ctx @param mtc @param msgControl @return @throws NotRecipientException
[ "Check", "if", "message", "is", "granted", "by", "messageControl" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/TopicsMessagesBroadcaster.java#L143-L147
45,929
osiam/connector4java
src/main/java/org/osiam/client/OsiamConnector.java
OsiamConnector.getMe
public User getMe(AccessToken accessToken, String... attributes) { return getUserService().getMe(accessToken, attributes); }
java
public User getMe(AccessToken accessToken, String... attributes) { return getUserService().getMe(accessToken, attributes); }
[ "public", "User", "getMe", "(", "AccessToken", "accessToken", ",", "String", "...", "attributes", ")", "{", "return", "getUserService", "(", ")", ".", "getMe", "(", "accessToken", ",", "attributes", ")", ";", "}" ]
Retrieves the User holding the given access token. @param accessToken the OSIAM access token from for the current session @param attributes the attributes that should be returned in the response. If none are given, all are returned @return the actual logged in user @throws UnauthorizedException if the req...
[ "Retrieves", "the", "User", "holding", "the", "given", "access", "token", "." ]
a5e6ae1e706f4889d662a069fe2f3bf8e3848d12
https://github.com/osiam/connector4java/blob/a5e6ae1e706f4889d662a069fe2f3bf8e3848d12/src/main/java/org/osiam/client/OsiamConnector.java#L292-L294
45,930
osiam/connector4java
src/main/java/org/osiam/client/OsiamConnector.java
OsiamConnector.refreshAccessToken
public AccessToken refreshAccessToken(AccessToken accessToken, Scope... scopes) { return getAuthService().refreshAccessToken(accessToken, scopes); }
java
public AccessToken refreshAccessToken(AccessToken accessToken, Scope... scopes) { return getAuthService().refreshAccessToken(accessToken, scopes); }
[ "public", "AccessToken", "refreshAccessToken", "(", "AccessToken", "accessToken", ",", "Scope", "...", "scopes", ")", "{", "return", "getAuthService", "(", ")", ".", "refreshAccessToken", "(", "accessToken", ",", "scopes", ")", ";", "}" ]
Provides a new and refreshed access token by getting the refresh token from the given access token. @param accessToken the access token to be refreshed @param scopes an optional parameter if the scope of the token should be changed. Otherwise the scopes of the old token are used. @return the new access token with...
[ "Provides", "a", "new", "and", "refreshed", "access", "token", "by", "getting", "the", "refresh", "token", "from", "the", "given", "access", "token", "." ]
a5e6ae1e706f4889d662a069fe2f3bf8e3848d12
https://github.com/osiam/connector4java/blob/a5e6ae1e706f4889d662a069fe2f3bf8e3848d12/src/main/java/org/osiam/client/OsiamConnector.java#L381-L383
45,931
osiam/connector4java
src/main/java/org/osiam/client/OsiamConnector.java
OsiamConnector.updateUser
@Deprecated public User updateUser(String id, UpdateUser updateUser, AccessToken accessToken) { return getUserService().updateUser(id, updateUser, accessToken); }
java
@Deprecated public User updateUser(String id, UpdateUser updateUser, AccessToken accessToken) { return getUserService().updateUser(id, updateUser, accessToken); }
[ "@", "Deprecated", "public", "User", "updateUser", "(", "String", "id", ",", "UpdateUser", "updateUser", ",", "AccessToken", "accessToken", ")", "{", "return", "getUserService", "(", ")", ".", "updateUser", "(", "id", ",", "updateUser", ",", "accessToken", ")"...
update the user of the given id with the values given in the User Object. For more detailed information how to set new field, update Fields or to delete Fields please look in the documentation. This method is not compatible with OSIAM 3.x. @param id if of the User to be updated @param updateUser all Fields t...
[ "update", "the", "user", "of", "the", "given", "id", "with", "the", "values", "given", "in", "the", "User", "Object", ".", "For", "more", "detailed", "information", "how", "to", "set", "new", "field", "update", "Fields", "or", "to", "delete", "Fields", "...
a5e6ae1e706f4889d662a069fe2f3bf8e3848d12
https://github.com/osiam/connector4java/blob/a5e6ae1e706f4889d662a069fe2f3bf8e3848d12/src/main/java/org/osiam/client/OsiamConnector.java#L524-L527
45,932
osiam/connector4java
src/main/java/org/osiam/client/OsiamConnector.java
OsiamConnector.updateGroup
@Deprecated public Group updateGroup(String id, UpdateGroup updateGroup, AccessToken accessToken) { return getGroupService().updateGroup(id, updateGroup, accessToken); }
java
@Deprecated public Group updateGroup(String id, UpdateGroup updateGroup, AccessToken accessToken) { return getGroupService().updateGroup(id, updateGroup, accessToken); }
[ "@", "Deprecated", "public", "Group", "updateGroup", "(", "String", "id", ",", "UpdateGroup", "updateGroup", ",", "AccessToken", "accessToken", ")", "{", "return", "getGroupService", "(", ")", ".", "updateGroup", "(", "id", ",", "updateGroup", ",", "accessToken"...
update the group of the given id with the values given in the Group Object. For more detailed information how to set new field. Update Fields or to delete Fields please look in the documentation @param id id of the Group to be updated @param updateGroup all Fields that need to be updated @param accessToken th...
[ "update", "the", "group", "of", "the", "given", "id", "with", "the", "values", "given", "in", "the", "Group", "Object", ".", "For", "more", "detailed", "information", "how", "to", "set", "new", "field", ".", "Update", "Fields", "or", "to", "delete", "Fie...
a5e6ae1e706f4889d662a069fe2f3bf8e3848d12
https://github.com/osiam/connector4java/blob/a5e6ae1e706f4889d662a069fe2f3bf8e3848d12/src/main/java/org/osiam/client/OsiamConnector.java#L566-L569
45,933
osiam/connector4java
src/main/java/org/osiam/client/OsiamConnector.java
OsiamConnector.getClient
public Client getClient(String clientId, AccessToken accessToken) { return getAuthService().getClient(clientId, accessToken); }
java
public Client getClient(String clientId, AccessToken accessToken) { return getAuthService().getClient(clientId, accessToken); }
[ "public", "Client", "getClient", "(", "String", "clientId", ",", "AccessToken", "accessToken", ")", "{", "return", "getAuthService", "(", ")", ".", "getClient", "(", "clientId", ",", "accessToken", ")", ";", "}" ]
Get client by the given client id. @param clientId the client id @param accessToken the access token used to access the service @return The found client @throws UnauthorizedException if the accessToken is not valid @throws ForbiddenException if access to this resource is not allowed @thro...
[ "Get", "client", "by", "the", "given", "client", "id", "." ]
a5e6ae1e706f4889d662a069fe2f3bf8e3848d12
https://github.com/osiam/connector4java/blob/a5e6ae1e706f4889d662a069fe2f3bf8e3848d12/src/main/java/org/osiam/client/OsiamConnector.java#L636-L638
45,934
osiam/connector4java
src/main/java/org/osiam/client/OsiamConnector.java
OsiamConnector.createClient
public Client createClient(Client client, AccessToken accessToken) { return getAuthService().createClient(client, accessToken); }
java
public Client createClient(Client client, AccessToken accessToken) { return getAuthService().createClient(client, accessToken); }
[ "public", "Client", "createClient", "(", "Client", "client", ",", "AccessToken", "accessToken", ")", "{", "return", "getAuthService", "(", ")", ".", "createClient", "(", "client", ",", "accessToken", ")", ";", "}" ]
Create a client. @param client the client to create @param accessToken the access token used to access the service @return The created client @throws UnauthorizedException if the accessToken is not valid @throws ConnectionInitializationException if the connection to the given OSIAM service could not b...
[ "Create", "a", "client", "." ]
a5e6ae1e706f4889d662a069fe2f3bf8e3848d12
https://github.com/osiam/connector4java/blob/a5e6ae1e706f4889d662a069fe2f3bf8e3848d12/src/main/java/org/osiam/client/OsiamConnector.java#L665-L667
45,935
osiam/connector4java
src/main/java/org/osiam/client/OsiamConnector.java
OsiamConnector.updateClient
public Client updateClient(String clientId, Client client, AccessToken accessToken) { return getAuthService().updateClient(clientId, client, accessToken); }
java
public Client updateClient(String clientId, Client client, AccessToken accessToken) { return getAuthService().updateClient(clientId, client, accessToken); }
[ "public", "Client", "updateClient", "(", "String", "clientId", ",", "Client", "client", ",", "AccessToken", "accessToken", ")", "{", "return", "getAuthService", "(", ")", ".", "updateClient", "(", "clientId", ",", "client", ",", "accessToken", ")", ";", "}" ]
Get OSIAM OAuth client by the given ID. @param clientId the id of the client which should be updated @param client the client @param accessToken the access token used to access the service @return The updated client @throws UnauthorizedException if the accessToken is not valid @throws ConnectionIni...
[ "Get", "OSIAM", "OAuth", "client", "by", "the", "given", "ID", "." ]
a5e6ae1e706f4889d662a069fe2f3bf8e3848d12
https://github.com/osiam/connector4java/blob/a5e6ae1e706f4889d662a069fe2f3bf8e3848d12/src/main/java/org/osiam/client/OsiamConnector.java#L695-L697
45,936
dkpro/dkpro-statistics
dkpro-statistics-agreement/src/main/java/org/dkpro/statistics/agreement/visualization/ContingencyMatrixPrinter.java
ContingencyMatrixPrinter.print
public void print(final PrintStream out, final ICodingAnnotationStudy study) { if (study.getRaterCount() > 2) throw new IllegalArgumentException("Contingency tables are only applicable for two rater studies."); //TODO: measure length of cats. maybe cut them. Map<Object, Integer> categories = new Linked...
java
public void print(final PrintStream out, final ICodingAnnotationStudy study) { if (study.getRaterCount() > 2) throw new IllegalArgumentException("Contingency tables are only applicable for two rater studies."); //TODO: measure length of cats. maybe cut them. Map<Object, Integer> categories = new Linked...
[ "public", "void", "print", "(", "final", "PrintStream", "out", ",", "final", "ICodingAnnotationStudy", "study", ")", "{", "if", "(", "study", ".", "getRaterCount", "(", ")", ">", "2", ")", "throw", "new", "IllegalArgumentException", "(", "\"Contingency tables ar...
Print the contingency matrix for the given coding study. @throws IllegalArgumentException if the given study has more than two raters.
[ "Print", "the", "contingency", "matrix", "for", "the", "given", "coding", "study", "." ]
0b0e93dc49223984964411cbc6df420ba796a8cb
https://github.com/dkpro/dkpro-statistics/blob/0b0e93dc49223984964411cbc6df420ba796a8cb/dkpro-statistics-agreement/src/main/java/org/dkpro/statistics/agreement/visualization/ContingencyMatrixPrinter.java#L47-L91
45,937
italiangrid/voms-api-java
src/main/java/org/italiangrid/voms/util/VOMSFQANNamingScheme.java
VOMSFQANNamingScheme.checkSyntax
public static void checkSyntax(String fqan) { if (fqan.length() > 255) throw new VOMSError("fqan.length() > 255"); if (!fqanPattern.matcher(fqan).matches()) throw new VOMSError("Syntax error in fqan: " + fqan); }
java
public static void checkSyntax(String fqan) { if (fqan.length() > 255) throw new VOMSError("fqan.length() > 255"); if (!fqanPattern.matcher(fqan).matches()) throw new VOMSError("Syntax error in fqan: " + fqan); }
[ "public", "static", "void", "checkSyntax", "(", "String", "fqan", ")", "{", "if", "(", "fqan", ".", "length", "(", ")", ">", "255", ")", "throw", "new", "VOMSError", "(", "\"fqan.length() > 255\"", ")", ";", "if", "(", "!", "fqanPattern", ".", "matcher",...
This methods checks that the string passed as argument complies with the voms FQAN syntax. @param fqan the string that must be checked for compatibility with FQAN syntax. @throws VOMSError If there's an error in the FQAN syntax.
[ "This", "methods", "checks", "that", "the", "string", "passed", "as", "argument", "complies", "with", "the", "voms", "FQAN", "syntax", "." ]
b33d6cf98ca9449bed87b1cc307d411514589deb
https://github.com/italiangrid/voms-api-java/blob/b33d6cf98ca9449bed87b1cc307d411514589deb/src/main/java/org/italiangrid/voms/util/VOMSFQANNamingScheme.java#L66-L73
45,938
italiangrid/voms-api-java
src/main/java/org/italiangrid/voms/util/VOMSFQANNamingScheme.java
VOMSFQANNamingScheme.checkRole
public static void checkRole(String roleName) { if (roleName.length() > 255) throw new VOMSError("roleName.length()>255"); if (!rolePattern.matcher(roleName).matches()) throw new VOMSError("Syntax error in role name: " + roleName); }
java
public static void checkRole(String roleName) { if (roleName.length() > 255) throw new VOMSError("roleName.length()>255"); if (!rolePattern.matcher(roleName).matches()) throw new VOMSError("Syntax error in role name: " + roleName); }
[ "public", "static", "void", "checkRole", "(", "String", "roleName", ")", "{", "if", "(", "roleName", ".", "length", "(", ")", ">", "255", ")", "throw", "new", "VOMSError", "(", "\"roleName.length()>255\"", ")", ";", "if", "(", "!", "rolePattern", ".", "m...
This methods checks that the string passed as argument complies with the syntax used by voms to identify roles. @param roleName the name of the role @throws VOMSError If the string passed as argument doens not comply with the voms sytax.
[ "This", "methods", "checks", "that", "the", "string", "passed", "as", "argument", "complies", "with", "the", "syntax", "used", "by", "voms", "to", "identify", "roles", "." ]
b33d6cf98ca9449bed87b1cc307d411514589deb
https://github.com/italiangrid/voms-api-java/blob/b33d6cf98ca9449bed87b1cc307d411514589deb/src/main/java/org/italiangrid/voms/util/VOMSFQANNamingScheme.java#L105-L112
45,939
italiangrid/voms-api-java
src/main/java/org/italiangrid/voms/util/VOMSFQANNamingScheme.java
VOMSFQANNamingScheme.getRoleName
public static String getRoleName(String containerName) { if (!isRole(containerName) && !isQualifiedRole(containerName)) throw new VOMSError("No role specified in \"" + containerName + "\" voms syntax."); Matcher m = fqanPattern.matcher(containerName); if (m.matches()) { String roleGr...
java
public static String getRoleName(String containerName) { if (!isRole(containerName) && !isQualifiedRole(containerName)) throw new VOMSError("No role specified in \"" + containerName + "\" voms syntax."); Matcher m = fqanPattern.matcher(containerName); if (m.matches()) { String roleGr...
[ "public", "static", "String", "getRoleName", "(", "String", "containerName", ")", "{", "if", "(", "!", "isRole", "(", "containerName", ")", "&&", "!", "isQualifiedRole", "(", "containerName", ")", ")", "throw", "new", "VOMSError", "(", "\"No role specified in \\...
This method extracts the role name information from the FQAN passed as argument. @param containerName the FQAN @return <ul> <li>A string containing the role name, if found</li> <li>null, if no role information is contained in the FQAN passed as argument </ul>
[ "This", "method", "extracts", "the", "role", "name", "information", "from", "the", "FQAN", "passed", "as", "argument", "." ]
b33d6cf98ca9449bed87b1cc307d411514589deb
https://github.com/italiangrid/voms-api-java/blob/b33d6cf98ca9449bed87b1cc307d411514589deb/src/main/java/org/italiangrid/voms/util/VOMSFQANNamingScheme.java#L179-L196
45,940
italiangrid/voms-api-java
src/main/java/org/italiangrid/voms/util/VOMSFQANNamingScheme.java
VOMSFQANNamingScheme.getGroupName
public static String getGroupName(String containerName) { checkSyntax(containerName); // If it's a container and it's not a role or a qualified role, then // it's a group! if (!isRole(containerName) && !isQualifiedRole(containerName)) return containerName; Matcher m = fqanPattern.matcher(c...
java
public static String getGroupName(String containerName) { checkSyntax(containerName); // If it's a container and it's not a role or a qualified role, then // it's a group! if (!isRole(containerName) && !isQualifiedRole(containerName)) return containerName; Matcher m = fqanPattern.matcher(c...
[ "public", "static", "String", "getGroupName", "(", "String", "containerName", ")", "{", "checkSyntax", "(", "containerName", ")", ";", "// If it's a container and it's not a role or a qualified role, then", "// it's a group!", "if", "(", "!", "isRole", "(", "containerName",...
This method extracts group name information from the FQAN passed as argument. @param containerName the FQAN @return <ul> <li>A string containing the group name, if found</li> <li>null, if no group information is contained in the FQAN passed as argument </ul>
[ "This", "method", "extracts", "group", "name", "information", "from", "the", "FQAN", "passed", "as", "argument", "." ]
b33d6cf98ca9449bed87b1cc307d411514589deb
https://github.com/italiangrid/voms-api-java/blob/b33d6cf98ca9449bed87b1cc307d411514589deb/src/main/java/org/italiangrid/voms/util/VOMSFQANNamingScheme.java#L210-L232
45,941
xqbase/tuna
core/src/main/java/com/xqbase/tuna/ConnectionFilter.java
ConnectionFilter.send
@Override public void send(byte[] b, int off, int len) { handler.send(b, off, len); }
java
@Override public void send(byte[] b, int off, int len) { handler.send(b, off, len); }
[ "@", "Override", "public", "void", "send", "(", "byte", "[", "]", "b", ",", "int", "off", ",", "int", "len", ")", "{", "handler", ".", "send", "(", "b", ",", "off", ",", "len", ")", ";", "}" ]
Wraps sent data, from the application side to the network side
[ "Wraps", "sent", "data", "from", "the", "application", "side", "to", "the", "network", "side" ]
60d05a9e03877a3daafe9de83dc4427c6cbb9995
https://github.com/xqbase/tuna/blob/60d05a9e03877a3daafe9de83dc4427c6cbb9995/core/src/main/java/com/xqbase/tuna/ConnectionFilter.java#L28-L31
45,942
jenkinsci/gmaven
gmaven-plugin/src/main/java/org/codehaus/gmaven/plugin/MojoSupport.java
MojoSupport.createArtifact
protected Artifact createArtifact(final ArtifactItem item) throws MojoExecutionException { assert item != null; if (item.getVersion() == null) { fillMissingArtifactVersion(item); if (item.getVersion() == null) { throw new MojoExecutionException("Unable to find a...
java
protected Artifact createArtifact(final ArtifactItem item) throws MojoExecutionException { assert item != null; if (item.getVersion() == null) { fillMissingArtifactVersion(item); if (item.getVersion() == null) { throw new MojoExecutionException("Unable to find a...
[ "protected", "Artifact", "createArtifact", "(", "final", "ArtifactItem", "item", ")", "throws", "MojoExecutionException", "{", "assert", "item", "!=", "null", ";", "if", "(", "item", ".", "getVersion", "(", ")", "==", "null", ")", "{", "fillMissingArtifactVersio...
Create a new artifact. If no version is specified, it will be retrieved from the dependency list or from the DependencyManagement section of the pom. @param item The item to create an artifact for @return An unresolved artifact for the given item. @throws MojoExecutionException Failed to create artifact
[ "Create", "a", "new", "artifact", ".", "If", "no", "version", "is", "specified", "it", "will", "be", "retrieved", "from", "the", "dependency", "list", "or", "from", "the", "DependencyManagement", "section", "of", "the", "pom", "." ]
80d5f6657e15b3e05ffbb82128ed8bb280836e10
https://github.com/jenkinsci/gmaven/blob/80d5f6657e15b3e05ffbb82128ed8bb280836e10/gmaven-plugin/src/main/java/org/codehaus/gmaven/plugin/MojoSupport.java#L196-L225
45,943
jenkinsci/gmaven
gmaven-plugin/src/main/java/org/codehaus/gmaven/plugin/MojoSupport.java
MojoSupport.fillMissingArtifactVersion
private void fillMissingArtifactVersion(final ArtifactItem item) { log.trace("Attempting to find missing version in {}:{}", item.getGroupId() , item.getArtifactId()); List list = project.getDependencies(); for (int i = 0; i < list.size(); ++i) { Dependency dependency = (Dependency)...
java
private void fillMissingArtifactVersion(final ArtifactItem item) { log.trace("Attempting to find missing version in {}:{}", item.getGroupId() , item.getArtifactId()); List list = project.getDependencies(); for (int i = 0; i < list.size(); ++i) { Dependency dependency = (Dependency)...
[ "private", "void", "fillMissingArtifactVersion", "(", "final", "ArtifactItem", "item", ")", "{", "log", ".", "trace", "(", "\"Attempting to find missing version in {}:{}\"", ",", "item", ".", "getGroupId", "(", ")", ",", "item", ".", "getArtifactId", "(", ")", ")"...
Tries to find missing version from dependency list and dependency management. If found, the artifact is updated with the correct version. @param item The item to fill in missing version details into
[ "Tries", "to", "find", "missing", "version", "from", "dependency", "list", "and", "dependency", "management", ".", "If", "found", "the", "artifact", "is", "updated", "with", "the", "correct", "version", "." ]
80d5f6657e15b3e05ffbb82128ed8bb280836e10
https://github.com/jenkinsci/gmaven/blob/80d5f6657e15b3e05ffbb82128ed8bb280836e10/gmaven-plugin/src/main/java/org/codehaus/gmaven/plugin/MojoSupport.java#L290-L324
45,944
xqbase/tuna
core/src/main/java/com/xqbase/tuna/ConnectionWrapper.java
ConnectionWrapper.onRecv
@Override public void onRecv(byte[] b, int off, int len) { connection.onRecv(b, off, len); }
java
@Override public void onRecv(byte[] b, int off, int len) { connection.onRecv(b, off, len); }
[ "@", "Override", "public", "void", "onRecv", "(", "byte", "[", "]", "b", ",", "int", "off", ",", "int", "len", ")", "{", "connection", ".", "onRecv", "(", "b", ",", "off", ",", "len", ")", ";", "}" ]
Wraps received data, from the network side to the application side
[ "Wraps", "received", "data", "from", "the", "network", "side", "to", "the", "application", "side" ]
60d05a9e03877a3daafe9de83dc4427c6cbb9995
https://github.com/xqbase/tuna/blob/60d05a9e03877a3daafe9de83dc4427c6cbb9995/core/src/main/java/com/xqbase/tuna/ConnectionWrapper.java#L16-L19
45,945
riversun/finbin
src/main/java/org/riversun/finbin/BigBinarySearcher.java
BigBinarySearcher.searchBigBytes
public List<Integer> searchBigBytes(byte[] srcBytes, byte[] searchBytes) { int numOfThreadsOptimized = (srcBytes.length / analyzeByteArrayUnitSize); if (numOfThreadsOptimized == 0) { numOfThreadsOptimized = 1; } return searchBigBytes(srcBytes, searchBytes, numOfThreadsOptimized); }
java
public List<Integer> searchBigBytes(byte[] srcBytes, byte[] searchBytes) { int numOfThreadsOptimized = (srcBytes.length / analyzeByteArrayUnitSize); if (numOfThreadsOptimized == 0) { numOfThreadsOptimized = 1; } return searchBigBytes(srcBytes, searchBytes, numOfThreadsOptimized); }
[ "public", "List", "<", "Integer", ">", "searchBigBytes", "(", "byte", "[", "]", "srcBytes", ",", "byte", "[", "]", "searchBytes", ")", "{", "int", "numOfThreadsOptimized", "=", "(", "srcBytes", ".", "length", "/", "analyzeByteArrayUnitSize", ")", ";", "if", ...
Search bytes faster in a concurrent processing. @param srcBytes @param searchBytes @return
[ "Search", "bytes", "faster", "in", "a", "concurrent", "processing", "." ]
d1db86a0d2966dcf47087340bbd0727a9d508b3e
https://github.com/riversun/finbin/blob/d1db86a0d2966dcf47087340bbd0727a9d508b3e/src/main/java/org/riversun/finbin/BigBinarySearcher.java#L87-L96
45,946
italiangrid/voms-api-java
src/main/java/org/italiangrid/voms/credential/impl/DefaultLoadCredentialsStrategy.java
DefaultLoadCredentialsStrategy.getFromEnvOrSystemProperty
public String getFromEnvOrSystemProperty(String propName) { String val = System.getenv(propName); if (val == null) val = System.getProperty(propName); return val; }
java
public String getFromEnvOrSystemProperty(String propName) { String val = System.getenv(propName); if (val == null) val = System.getProperty(propName); return val; }
[ "public", "String", "getFromEnvOrSystemProperty", "(", "String", "propName", ")", "{", "String", "val", "=", "System", ".", "getenv", "(", "propName", ")", ";", "if", "(", "val", "==", "null", ")", "val", "=", "System", ".", "getProperty", "(", "propName",...
Looks for the value of a given property in the environment or in the system properties @param propName the property that will be looked for @return the property value, or null if no property was found
[ "Looks", "for", "the", "value", "of", "a", "given", "property", "in", "the", "environment", "or", "in", "the", "system", "properties" ]
b33d6cf98ca9449bed87b1cc307d411514589deb
https://github.com/italiangrid/voms-api-java/blob/b33d6cf98ca9449bed87b1cc307d411514589deb/src/main/java/org/italiangrid/voms/credential/impl/DefaultLoadCredentialsStrategy.java#L110-L116
45,947
dkpro/dkpro-statistics
dkpro-statistics-agreement/src/main/java/org/dkpro/statistics/agreement/visualization/ReliabilityMatrixPrinter.java
ReliabilityMatrixPrinter.print
public void print(final PrintStream out, final ICodingAnnotationStudy study) { //TODO: measure length of cats. maybe cut them. Map<Object, Integer> categories = new LinkedHashMap<Object, Integer>(); for (Object cat : study.getCategories()) categories.put(cat, categories.size()); final String DIVIDER...
java
public void print(final PrintStream out, final ICodingAnnotationStudy study) { //TODO: measure length of cats. maybe cut them. Map<Object, Integer> categories = new LinkedHashMap<Object, Integer>(); for (Object cat : study.getCategories()) categories.put(cat, categories.size()); final String DIVIDER...
[ "public", "void", "print", "(", "final", "PrintStream", "out", ",", "final", "ICodingAnnotationStudy", "study", ")", "{", "//TODO: measure length of cats. maybe cut them.\r", "Map", "<", "Object", ",", "Integer", ">", "categories", "=", "new", "LinkedHashMap", "<", ...
Print the reliability matrix for the given coding study.
[ "Print", "the", "reliability", "matrix", "for", "the", "given", "coding", "study", "." ]
0b0e93dc49223984964411cbc6df420ba796a8cb
https://github.com/dkpro/dkpro-statistics/blob/0b0e93dc49223984964411cbc6df420ba796a8cb/dkpro-statistics-agreement/src/main/java/org/dkpro/statistics/agreement/visualization/ReliabilityMatrixPrinter.java#L53-L116
45,948
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/OcelotProcessor.java
OcelotProcessor.getPackagePath
String getPackagePath(TypeElement te) { return te.getQualifiedName().toString().replaceAll("." + te.getSimpleName(), ""); }
java
String getPackagePath(TypeElement te) { return te.getQualifiedName().toString().replaceAll("." + te.getSimpleName(), ""); }
[ "String", "getPackagePath", "(", "TypeElement", "te", ")", "{", "return", "te", ".", "getQualifiedName", "(", ")", ".", "toString", "(", ")", ".", "replaceAll", "(", "\".\"", "+", "te", ".", "getSimpleName", "(", ")", ",", "\"\"", ")", ";", "}" ]
Get pachage name of class @param te @return
[ "Get", "pachage", "name", "of", "class" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/OcelotProcessor.java#L251-L253
45,949
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/OcelotProcessor.java
OcelotProcessor.getFilename
String getFilename(TypeElement te, String fwk) { return getFilename(te.getSimpleName().toString(), fwk); }
java
String getFilename(TypeElement te, String fwk) { return getFilename(te.getSimpleName().toString(), fwk); }
[ "String", "getFilename", "(", "TypeElement", "te", ",", "String", "fwk", ")", "{", "return", "getFilename", "(", "te", ".", "getSimpleName", "(", ")", ".", "toString", "(", ")", ",", "fwk", ")", ";", "}" ]
Get Js filename from class @param te @return
[ "Get", "Js", "filename", "from", "class" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/OcelotProcessor.java#L261-L263
45,950
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/OcelotProcessor.java
OcelotProcessor.writeCoreInClassesOutput
void writeCoreInClassesOutput() { String resPath = ProcessorConstants.SEPARATORCHAR + "js"; fws.copyResourceToClassesOutput(resPath, "core.ng.min.js"); fws.copyResourceToClassesOutput(resPath, "core.ng.js"); fws.copyResourceToClassesOutput(resPath, "core.min.js"); fws.copyResourceToClassesOutput(resPath,...
java
void writeCoreInClassesOutput() { String resPath = ProcessorConstants.SEPARATORCHAR + "js"; fws.copyResourceToClassesOutput(resPath, "core.ng.min.js"); fws.copyResourceToClassesOutput(resPath, "core.ng.js"); fws.copyResourceToClassesOutput(resPath, "core.min.js"); fws.copyResourceToClassesOutput(resPath,...
[ "void", "writeCoreInClassesOutput", "(", ")", "{", "String", "resPath", "=", "ProcessorConstants", ".", "SEPARATORCHAR", "+", "\"js\"", ";", "fws", ".", "copyResourceToClassesOutput", "(", "resPath", ",", "\"core.ng.min.js\"", ")", ";", "fws", ".", "copyResourceToCl...
Write core in classes directory
[ "Write", "core", "in", "classes", "directory" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/OcelotProcessor.java#L284-L290
45,951
italiangrid/voms-api-java
src/main/java/org/italiangrid/voms/credential/impl/AbstractLoadCredentialsStrategy.java
AbstractLoadCredentialsStrategy.fileExistsAndIsReadable
protected boolean fileExistsAndIsReadable(String filename) { File f = new File(filename); return f.exists() && f.isFile() && f.canRead(); }
java
protected boolean fileExistsAndIsReadable(String filename) { File f = new File(filename); return f.exists() && f.isFile() && f.canRead(); }
[ "protected", "boolean", "fileExistsAndIsReadable", "(", "String", "filename", ")", "{", "File", "f", "=", "new", "File", "(", "filename", ")", ";", "return", "f", ".", "exists", "(", ")", "&&", "f", ".", "isFile", "(", ")", "&&", "f", ".", "canRead", ...
Convenience method to check if a file exists and is readable @param filename the file to be checked @return <code>true</code> if the file exists and is readable, <code>false</code> otherwise
[ "Convenience", "method", "to", "check", "if", "a", "file", "exists", "and", "is", "readable" ]
b33d6cf98ca9449bed87b1cc307d411514589deb
https://github.com/italiangrid/voms-api-java/blob/b33d6cf98ca9449bed87b1cc307d411514589deb/src/main/java/org/italiangrid/voms/credential/impl/AbstractLoadCredentialsStrategy.java#L71-L75
45,952
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/web/ws/WSEndpoint.java
WSEndpoint.getWSController
WSController getWSController() { if (null == controller) { controller = CDI.current().select(WSController.class).get(); // controller = getCdiBeanResolver().getBean(WSController.class); } return controller; }
java
WSController getWSController() { if (null == controller) { controller = CDI.current().select(WSController.class).get(); // controller = getCdiBeanResolver().getBean(WSController.class); } return controller; }
[ "WSController", "getWSController", "(", ")", "{", "if", "(", "null", "==", "controller", ")", "{", "controller", "=", "CDI", ".", "current", "(", ")", ".", "select", "(", "WSController", ".", "class", ")", ".", "get", "(", ")", ";", "//\t\t\tcontroller =...
Fix OpenWebBean issues @return
[ "Fix", "OpenWebBean", "issues" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/web/ws/WSEndpoint.java#L57-L63
45,953
dkpro/dkpro-statistics
dkpro-statistics-agreement/src/main/java/org/dkpro/statistics/agreement/coding/CohenKappaAgreement.java
CohenKappaAgreement.calculateExpectedAgreement
@Override public double calculateExpectedAgreement() { Map<Object, int[]> annotationsPerCategory = CodingAnnotationStudy.countAnnotationsPerCategory(study); BigDecimal result = BigDecimal.ZERO; for (Object category : study.getCategories()) { int[] annotations = annotationsPerCategory.get(category)...
java
@Override public double calculateExpectedAgreement() { Map<Object, int[]> annotationsPerCategory = CodingAnnotationStudy.countAnnotationsPerCategory(study); BigDecimal result = BigDecimal.ZERO; for (Object category : study.getCategories()) { int[] annotations = annotationsPerCategory.get(category)...
[ "@", "Override", "public", "double", "calculateExpectedAgreement", "(", ")", "{", "Map", "<", "Object", ",", "int", "[", "]", ">", "annotationsPerCategory", "=", "CodingAnnotationStudy", ".", "countAnnotationsPerCategory", "(", "study", ")", ";", "BigDecimal", "re...
Calculates the expected inter-rater agreement that assumes a different probability distribution for all raters. @throws NullPointerException if the annotation study is null. @throws ArithmeticException if there are no items in the annotation study.
[ "Calculates", "the", "expected", "inter", "-", "rater", "agreement", "that", "assumes", "a", "different", "probability", "distribution", "for", "all", "raters", "." ]
0b0e93dc49223984964411cbc6df420ba796a8cb
https://github.com/dkpro/dkpro-statistics/blob/0b0e93dc49223984964411cbc6df420ba796a8cb/dkpro-statistics-agreement/src/main/java/org/dkpro/statistics/agreement/coding/CohenKappaAgreement.java#L55-L72
45,954
dkpro/dkpro-statistics
dkpro-statistics-agreement/src/main/java/org/dkpro/statistics/agreement/coding/CohenKappaAgreement.java
CohenKappaAgreement.calculateCategoryAgreement
@Override public double calculateCategoryAgreement(final Object category) { // N = # subjects = #items -> index i // n = # ratings/subject = #raters // k = # categories -> index j // n_ij = # raters that annotated item i as category j // // k_j = (P_j - p_j) / (1 - p_j) // P_j = (sum( n_ij^2 ) - ...
java
@Override public double calculateCategoryAgreement(final Object category) { // N = # subjects = #items -> index i // n = # ratings/subject = #raters // k = # categories -> index j // n_ij = # raters that annotated item i as category j // // k_j = (P_j - p_j) / (1 - p_j) // P_j = (sum( n_ij^2 ) - ...
[ "@", "Override", "public", "double", "calculateCategoryAgreement", "(", "final", "Object", "category", ")", "{", "// N = # subjects = #items -> index i\r", "// n = # ratings/subject = #raters\r", "// k = # categories -> index j\r", "// n_ij = # raters that annotated item i as category j\...
Artstein&Poesio have a different definition!
[ "Artstein&Poesio", "have", "a", "different", "definition!" ]
0b0e93dc49223984964411cbc6df420ba796a8cb
https://github.com/dkpro/dkpro-statistics/blob/0b0e93dc49223984964411cbc6df420ba796a8cb/dkpro-statistics-agreement/src/main/java/org/dkpro/statistics/agreement/coding/CohenKappaAgreement.java#L117-L145
45,955
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/marshalling/ArgumentServices.java
ArgumentServices.getIJsonMarshallerInstance
public IJsonMarshaller getIJsonMarshallerInstance(Class<? extends IJsonMarshaller> cls) throws JsonMarshallerException { if(logger.isDebugEnabled()) { logger.debug("Try to get {} by CDI.select Unsatisfied: {}", cls.getName(), CDI.current().select(cls).isUnsatisfied()); } if(CDI.current().select(cls).isUnsa...
java
public IJsonMarshaller getIJsonMarshallerInstance(Class<? extends IJsonMarshaller> cls) throws JsonMarshallerException { if(logger.isDebugEnabled()) { logger.debug("Try to get {} by CDI.select Unsatisfied: {}", cls.getName(), CDI.current().select(cls).isUnsatisfied()); } if(CDI.current().select(cls).isUnsa...
[ "public", "IJsonMarshaller", "getIJsonMarshallerInstance", "(", "Class", "<", "?", "extends", "IJsonMarshaller", ">", "cls", ")", "throws", "JsonMarshallerException", "{", "if", "(", "logger", ".", "isDebugEnabled", "(", ")", ")", "{", "logger", ".", "debug", "(...
Get Instance of IJsonMarshaller from CDI @param cls @return @throws JsonMarshallerException
[ "Get", "Instance", "of", "IJsonMarshaller", "from", "CDI" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/marshalling/ArgumentServices.java#L75-L83
45,956
dkpro/dkpro-statistics
dkpro-statistics-significance/src/main/java/org/dkpro/statistics/significance/Significance.java
Significance.getSignificance
public static double getSignificance(double[] sample1, double[] sample2) throws IllegalArgumentException, MathException { double alpha = TestUtils.pairedTTest(sample1, sample2); boolean significance = TestUtils.pairedTTest(sample1, sample2, .30); System.err.println("sig: " + significance); ...
java
public static double getSignificance(double[] sample1, double[] sample2) throws IllegalArgumentException, MathException { double alpha = TestUtils.pairedTTest(sample1, sample2); boolean significance = TestUtils.pairedTTest(sample1, sample2, .30); System.err.println("sig: " + significance); ...
[ "public", "static", "double", "getSignificance", "(", "double", "[", "]", "sample1", ",", "double", "[", "]", "sample2", ")", "throws", "IllegalArgumentException", ",", "MathException", "{", "double", "alpha", "=", "TestUtils", ".", "pairedTTest", "(", "sample1"...
Uses a paired t-test to test whether the correlation value computed from these datasets is significant. @param sample1 The first dataset vector. @param sample2 The second dataset vector. @return The significance value p. @throws MathException @throws IllegalArgumentException
[ "Uses", "a", "paired", "t", "-", "test", "to", "test", "whether", "the", "correlation", "value", "computed", "from", "these", "datasets", "is", "significant", "." ]
0b0e93dc49223984964411cbc6df420ba796a8cb
https://github.com/dkpro/dkpro-statistics/blob/0b0e93dc49223984964411cbc6df420ba796a8cb/dkpro-statistics-significance/src/main/java/org/dkpro/statistics/significance/Significance.java#L93-L98
45,957
dkpro/dkpro-statistics
dkpro-statistics-significance/src/main/java/org/dkpro/statistics/significance/Significance.java
Significance.getSignificance
public static double getSignificance(double correlation1, double correlation2, int n1, int n2) throws MathException { // transform to Fisher Z-values double zv1 = FisherZTransformation.transform(correlation1); double zv2 = FisherZTransformation.transform(correlation2); // diffe...
java
public static double getSignificance(double correlation1, double correlation2, int n1, int n2) throws MathException { // transform to Fisher Z-values double zv1 = FisherZTransformation.transform(correlation1); double zv2 = FisherZTransformation.transform(correlation2); // diffe...
[ "public", "static", "double", "getSignificance", "(", "double", "correlation1", ",", "double", "correlation2", ",", "int", "n1", ",", "int", "n2", ")", "throws", "MathException", "{", "// transform to Fisher Z-values", "double", "zv1", "=", "FisherZTransformation", ...
Computes the significance of the difference between two correlations. @see org.tud.sir.util.statistics.Significance.testCorrelations
[ "Computes", "the", "significance", "of", "the", "difference", "between", "two", "correlations", "." ]
0b0e93dc49223984964411cbc6df420ba796a8cb
https://github.com/dkpro/dkpro-statistics/blob/0b0e93dc49223984964411cbc6df420ba796a8cb/dkpro-statistics-significance/src/main/java/org/dkpro/statistics/significance/Significance.java#L131-L143
45,958
jenkinsci/gmaven
gmaven-mojo/src/main/java/org/codehaus/gmaven/mojo/GroovyMojo.java
GroovyMojo.getAnt
private AntBuilder getAnt() { if (this.ant == null) { AntBuilder ant = new AntBuilder(); BuildLogger logger = (BuildLogger) ant.getAntProject().getBuildListeners().get(0); logger.setEmacsMode(true); this.ant = ant; } return this.ant; }
java
private AntBuilder getAnt() { if (this.ant == null) { AntBuilder ant = new AntBuilder(); BuildLogger logger = (BuildLogger) ant.getAntProject().getBuildListeners().get(0); logger.setEmacsMode(true); this.ant = ant; } return this.ant; }
[ "private", "AntBuilder", "getAnt", "(", ")", "{", "if", "(", "this", ".", "ant", "==", "null", ")", "{", "AntBuilder", "ant", "=", "new", "AntBuilder", "(", ")", ";", "BuildLogger", "logger", "=", "(", "BuildLogger", ")", "ant", ".", "getAntProject", "...
Lazily initialize the AntBuilder, so we can pick up the log impl correctly.
[ "Lazily", "initialize", "the", "AntBuilder", "so", "we", "can", "pick", "up", "the", "log", "impl", "correctly", "." ]
80d5f6657e15b3e05ffbb82128ed8bb280836e10
https://github.com/jenkinsci/gmaven/blob/80d5f6657e15b3e05ffbb82128ed8bb280836e10/gmaven-mojo/src/main/java/org/codehaus/gmaven/mojo/GroovyMojo.java#L45-L53
45,959
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/core/services/MethodServices.java
MethodServices.getMethodFromDataService
public Method getMethodFromDataService(final Class dsClass, final MessageFromClient message, List<Object> arguments) throws NoSuchMethodException { logger.debug("Try to find method {} on class {}", message.getOperation(), dsClass); List<String> parameters = message.getParameters(); int nbparam = parameters.siz...
java
public Method getMethodFromDataService(final Class dsClass, final MessageFromClient message, List<Object> arguments) throws NoSuchMethodException { logger.debug("Try to find method {} on class {}", message.getOperation(), dsClass); List<String> parameters = message.getParameters(); int nbparam = parameters.siz...
[ "public", "Method", "getMethodFromDataService", "(", "final", "Class", "dsClass", ",", "final", "MessageFromClient", "message", ",", "List", "<", "Object", ">", "arguments", ")", "throws", "NoSuchMethodException", "{", "logger", ".", "debug", "(", "\"Try to find met...
Get pertinent method and fill the argument list from message arguments @param dsClass @param message @param arguments @return @throws java.lang.NoSuchMethodException
[ "Get", "pertinent", "method", "and", "fill", "the", "argument", "list", "from", "message", "arguments" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/core/services/MethodServices.java#L44-L68
45,960
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/core/services/MethodServices.java
MethodServices.getNonProxiedMethod
public Method getNonProxiedMethod(Class cls, String methodName, Class<?>... parameterTypes) throws NoSuchMethodException { return cls.getMethod(methodName, parameterTypes); }
java
public Method getNonProxiedMethod(Class cls, String methodName, Class<?>... parameterTypes) throws NoSuchMethodException { return cls.getMethod(methodName, parameterTypes); }
[ "public", "Method", "getNonProxiedMethod", "(", "Class", "cls", ",", "String", "methodName", ",", "Class", "<", "?", ">", "...", "parameterTypes", ")", "throws", "NoSuchMethodException", "{", "return", "cls", ".", "getMethod", "(", "methodName", ",", "parameterT...
Get the method on origin class without proxies @param cls @param methodName @param parameterTypes @throws NoSuchMethodException @return
[ "Get", "the", "method", "on", "origin", "class", "without", "proxies" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/core/services/MethodServices.java#L79-L81
45,961
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/core/services/MethodServices.java
MethodServices.getNumberOfNullEnderParameter
int getNumberOfNullEnderParameter(List<String> parameters) { int nbnull = 0; for (int i = parameters.size() - 1; i >= 0; i--) { String parameter = parameters.get(i); if (parameter.equals("null")) { nbnull++; } else { break; } } return nbnull; }
java
int getNumberOfNullEnderParameter(List<String> parameters) { int nbnull = 0; for (int i = parameters.size() - 1; i >= 0; i--) { String parameter = parameters.get(i); if (parameter.equals("null")) { nbnull++; } else { break; } } return nbnull; }
[ "int", "getNumberOfNullEnderParameter", "(", "List", "<", "String", ">", "parameters", ")", "{", "int", "nbnull", "=", "0", ";", "for", "(", "int", "i", "=", "parameters", ".", "size", "(", ")", "-", "1", ";", "i", ">=", "0", ";", "i", "--", ")", ...
Return the number of null parameter at the end of list @param parameters @return
[ "Return", "the", "number", "of", "null", "parameter", "at", "the", "end", "of", "list" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/core/services/MethodServices.java#L89-L100
45,962
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/core/services/MethodServices.java
MethodServices.checkMethod
void checkMethod(Method method, List<Object> arguments, List<String> parameters, int nbparam) throws IllegalArgumentException, JsonUnmarshallingException, JsonMarshallerException { Type[] paramTypes = method.getGenericParameterTypes(); Annotation[][] parametersAnnotations = method.getParameterAnnotations(); in...
java
void checkMethod(Method method, List<Object> arguments, List<String> parameters, int nbparam) throws IllegalArgumentException, JsonUnmarshallingException, JsonMarshallerException { Type[] paramTypes = method.getGenericParameterTypes(); Annotation[][] parametersAnnotations = method.getParameterAnnotations(); in...
[ "void", "checkMethod", "(", "Method", "method", ",", "List", "<", "Object", ">", "arguments", ",", "List", "<", "String", ">", "parameters", ",", "int", "nbparam", ")", "throws", "IllegalArgumentException", ",", "JsonUnmarshallingException", ",", "JsonMarshallerEx...
Check if for nbparam in parameters the method is correct. If yes, store parameters String converted to Java in arguments list @param method @param arguments @param parameters @param nbparam @throws IllegalArgumentException @throws JsonUnmarshallingException
[ "Check", "if", "for", "nbparam", "in", "parameters", "the", "method", "is", "correct", ".", "If", "yes", "store", "parameters", "String", "converted", "to", "Java", "in", "arguments", "list" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/core/services/MethodServices.java#L112-L124
45,963
hageldave/ImagingKit
ImagingKit_Core/src/main/java/hageldave/imagingkit/core/Pixel.java
Pixel.setARGB
public void setARGB(int a, int r, int g, int b){ setValue(Pixel.argb(a, r, g, b)); }
java
public void setARGB(int a, int r, int g, int b){ setValue(Pixel.argb(a, r, g, b)); }
[ "public", "void", "setARGB", "(", "int", "a", ",", "int", "r", ",", "int", "g", ",", "int", "b", ")", "{", "setValue", "(", "Pixel", ".", "argb", "(", "a", ",", "r", ",", "g", ",", "b", ")", ")", ";", "}" ]
Sets an ARGB value at the position currently referenced by this Pixel. Each channel value is assumed to be 8bit and otherwise truncated. @param a alpha @param r red @param g green @param b blue @throws ArrayIndexOutOfBoundsException if this Pixel's index is not in range of the Img's data array. @see #setRGB(int, int, i...
[ "Sets", "an", "ARGB", "value", "at", "the", "position", "currently", "referenced", "by", "this", "Pixel", ".", "Each", "channel", "value", "is", "assumed", "to", "be", "8bit", "and", "otherwise", "truncated", "." ]
3837c7d550a12cf4dc5718b644ced94b97f52668
https://github.com/hageldave/ImagingKit/blob/3837c7d550a12cf4dc5718b644ced94b97f52668/ImagingKit_Core/src/main/java/hageldave/imagingkit/core/Pixel.java#L346-L348
45,964
hageldave/ImagingKit
ImagingKit_Core/src/main/java/hageldave/imagingkit/core/Pixel.java
Pixel.setRGB
public void setRGB(int r, int g, int b){ setValue(Pixel.rgb(r, g, b)); }
java
public void setRGB(int r, int g, int b){ setValue(Pixel.rgb(r, g, b)); }
[ "public", "void", "setRGB", "(", "int", "r", ",", "int", "g", ",", "int", "b", ")", "{", "setValue", "(", "Pixel", ".", "rgb", "(", "r", ",", "g", ",", "b", ")", ")", ";", "}" ]
Sets an opaque RGB value at the position currently referenced by this Pixel. Each channel value is assumed to be 8bit and otherwise truncated. @param r red @param g green @param b blue @throws ArrayIndexOutOfBoundsException if this Pixel's index is not in range of the Img's data array. @see #setARGB(int, int, int, int)...
[ "Sets", "an", "opaque", "RGB", "value", "at", "the", "position", "currently", "referenced", "by", "this", "Pixel", ".", "Each", "channel", "value", "is", "assumed", "to", "be", "8bit", "and", "otherwise", "truncated", "." ]
3837c7d550a12cf4dc5718b644ced94b97f52668
https://github.com/hageldave/ImagingKit/blob/3837c7d550a12cf4dc5718b644ced94b97f52668/ImagingKit_Core/src/main/java/hageldave/imagingkit/core/Pixel.java#L366-L368
45,965
hageldave/ImagingKit
ImagingKit_Core/src/main/java/hageldave/imagingkit/core/Pixel.java
Pixel.setRGB_preserveAlpha
public void setRGB_preserveAlpha(int r, int g, int b){ setValue((getValue() & 0xff000000 ) | Pixel.argb(0, r, g, b)); }
java
public void setRGB_preserveAlpha(int r, int g, int b){ setValue((getValue() & 0xff000000 ) | Pixel.argb(0, r, g, b)); }
[ "public", "void", "setRGB_preserveAlpha", "(", "int", "r", ",", "int", "g", ",", "int", "b", ")", "{", "setValue", "(", "(", "getValue", "(", ")", "&", "0xff000000", ")", "|", "Pixel", ".", "argb", "(", "0", ",", "r", ",", "g", ",", "b", ")", "...
Sets an RGB value at the position currently referenced by this Pixel. The present alpha value will not be altered by this operation. Each channel value is assumed to be 8bit and otherwise truncated. @param r red @param g green @param b blue @throws ArrayIndexOutOfBoundsException if this Pixel's index is not in range of...
[ "Sets", "an", "RGB", "value", "at", "the", "position", "currently", "referenced", "by", "this", "Pixel", ".", "The", "present", "alpha", "value", "will", "not", "be", "altered", "by", "this", "operation", ".", "Each", "channel", "value", "is", "assumed", "...
3837c7d550a12cf4dc5718b644ced94b97f52668
https://github.com/hageldave/ImagingKit/blob/3837c7d550a12cf4dc5718b644ced94b97f52668/ImagingKit_Core/src/main/java/hageldave/imagingkit/core/Pixel.java#L382-L384
45,966
hageldave/ImagingKit
ImagingKit_Core/src/main/java/hageldave/imagingkit/core/util/BufferedImageFactory.java
BufferedImageFactory.get
public static BufferedImage get(Image img, int imgType){ Function<Integer, ImageObserver> obs = flags->{ return (image, infoflags, x, y, width, height)->(infoflags & flags)!=flags; }; BufferedImage bimg = new BufferedImage( img.getWidth(obs.apply(ImageObserver.WIDTH)), img.getHeight(obs.apply(ImageObs...
java
public static BufferedImage get(Image img, int imgType){ Function<Integer, ImageObserver> obs = flags->{ return (image, infoflags, x, y, width, height)->(infoflags & flags)!=flags; }; BufferedImage bimg = new BufferedImage( img.getWidth(obs.apply(ImageObserver.WIDTH)), img.getHeight(obs.apply(ImageObs...
[ "public", "static", "BufferedImage", "get", "(", "Image", "img", ",", "int", "imgType", ")", "{", "Function", "<", "Integer", ",", "ImageObserver", ">", "obs", "=", "flags", "->", "{", "return", "(", "image", ",", "infoflags", ",", "x", ",", "y", ",", ...
Creates a new BufferedImage of the specified imgType and same size as the provided image and draws the provided Image onto the new BufferedImage. @param img to be copied to BufferedImage @param imgType of the BufferedImage. See {@link BufferedImage#BufferedImage(int, int, int)} for details on the available imgTypes. @r...
[ "Creates", "a", "new", "BufferedImage", "of", "the", "specified", "imgType", "and", "same", "size", "as", "the", "provided", "image", "and", "draws", "the", "provided", "Image", "onto", "the", "new", "BufferedImage", "." ]
3837c7d550a12cf4dc5718b644ced94b97f52668
https://github.com/hageldave/ImagingKit/blob/3837c7d550a12cf4dc5718b644ced94b97f52668/ImagingKit_Core/src/main/java/hageldave/imagingkit/core/util/BufferedImageFactory.java#L60-L74
45,967
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java
TopicManagerImpl.registerTopicSession
@Override public int registerTopicSession(String topic, Session session) throws IllegalAccessException { if (isInconsistenceContext(topic, session)) { return 0; } Collection<Session> sessions; if (map.containsKey(topic)) { sessions = map.get(topic); } else { sessions = Collections.synchroni...
java
@Override public int registerTopicSession(String topic, Session session) throws IllegalAccessException { if (isInconsistenceContext(topic, session)) { return 0; } Collection<Session> sessions; if (map.containsKey(topic)) { sessions = map.get(topic); } else { sessions = Collections.synchroni...
[ "@", "Override", "public", "int", "registerTopicSession", "(", "String", "topic", ",", "Session", "session", ")", "throws", "IllegalAccessException", "{", "if", "(", "isInconsistenceContext", "(", "topic", ",", "session", ")", ")", "{", "return", "0", ";", "}"...
Register session for topic @param topic @param session @return int : number subscribers @throws IllegalAccessException
[ "Register", "session", "for", "topic" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java#L61-L79
45,968
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java
TopicManagerImpl.unregisterTopicSession
@Override public int unregisterTopicSession(String topic, Session session) { if (isInconsistenceContext(topic, session)) { return 0; } logger.debug("'{}' unsubscribe to '{}'", session.getId(), topic); if (Constants.Topic.ALL.equals(topic)) { for (Map.Entry<String, Collection<Session>> entry : map....
java
@Override public int unregisterTopicSession(String topic, Session session) { if (isInconsistenceContext(topic, session)) { return 0; } logger.debug("'{}' unsubscribe to '{}'", session.getId(), topic); if (Constants.Topic.ALL.equals(topic)) { for (Map.Entry<String, Collection<Session>> entry : map....
[ "@", "Override", "public", "int", "unregisterTopicSession", "(", "String", "topic", ",", "Session", "session", ")", "{", "if", "(", "isInconsistenceContext", "(", "topic", ",", "session", ")", ")", "{", "return", "0", ";", "}", "logger", ".", "debug", "(",...
Unregister session for topic. topic 'ALL' remove session for all topics @param topic @param session @return int : number subscribers remaining
[ "Unregister", "session", "for", "topic", ".", "topic", "ALL", "remove", "session", "for", "all", "topics" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java#L88-L110
45,969
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java
TopicManagerImpl.removeSessionToSessions
int removeSessionToSessions(Session session, Collection<Session> sessions) { if (sessions != null) { if (sessions.remove(session)) { return 1; } } return 0; }
java
int removeSessionToSessions(Session session, Collection<Session> sessions) { if (sessions != null) { if (sessions.remove(session)) { return 1; } } return 0; }
[ "int", "removeSessionToSessions", "(", "Session", "session", ",", "Collection", "<", "Session", ">", "sessions", ")", "{", "if", "(", "sessions", "!=", "null", ")", "{", "if", "(", "sessions", ".", "remove", "(", "session", ")", ")", "{", "return", "1", ...
Remove session in sessions @param session @param sessions @return 1 if session removed else 0
[ "Remove", "session", "in", "sessions" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java#L130-L137
45,970
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java
TopicManagerImpl.unregisterTopicSessions
boolean unregisterTopicSessions(String topic, Collection<Session> sessions) { boolean unregister = false; if (sessions != null && !sessions.isEmpty()) { Collection<Session> all = map.get(topic); if(all != null) { unregister = all.removeAll(sessions); if (all.isEmpty()) { map.remove(topic);...
java
boolean unregisterTopicSessions(String topic, Collection<Session> sessions) { boolean unregister = false; if (sessions != null && !sessions.isEmpty()) { Collection<Session> all = map.get(topic); if(all != null) { unregister = all.removeAll(sessions); if (all.isEmpty()) { map.remove(topic);...
[ "boolean", "unregisterTopicSessions", "(", "String", "topic", ",", "Collection", "<", "Session", ">", "sessions", ")", "{", "boolean", "unregister", "=", "false", ";", "if", "(", "sessions", "!=", "null", "&&", "!", "sessions", ".", "isEmpty", "(", ")", ")...
Unregister sessions for topic @param topic @param sessions @return
[ "Unregister", "sessions", "for", "topic" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java#L146-L158
45,971
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java
TopicManagerImpl.removeSessionsToTopic
@Override public Collection<String> removeSessionsToTopic(Collection<Session> sessions) { if (sessions != null && !sessions.isEmpty()) { Collection<String> topicUpdated = new ArrayList<>(); for (String topic : map.keySet()) { if(unregisterTopicSessions(topic, sessions)) { topicUpdated.add(topic)...
java
@Override public Collection<String> removeSessionsToTopic(Collection<Session> sessions) { if (sessions != null && !sessions.isEmpty()) { Collection<String> topicUpdated = new ArrayList<>(); for (String topic : map.keySet()) { if(unregisterTopicSessions(topic, sessions)) { topicUpdated.add(topic)...
[ "@", "Override", "public", "Collection", "<", "String", ">", "removeSessionsToTopic", "(", "Collection", "<", "Session", ">", "sessions", ")", "{", "if", "(", "sessions", "!=", "null", "&&", "!", "sessions", ".", "isEmpty", "(", ")", ")", "{", "Collection"...
Remove sessions cause they are closed @param sessions
[ "Remove", "sessions", "cause", "they", "are", "closed" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java#L165-L178
45,972
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java
TopicManagerImpl.removeSessionToTopics
@Override public Collection<String> removeSessionToTopics(Session session) { if (session != null) { return removeSessionsToTopic(Arrays.asList(session)); // for (String topic : map.keySet()) { // sendSubscriptionEvent(Constants.Topic.SUBSCRIBERS + Constants.Topic.COLON + topic, unregisterTopicSession(to...
java
@Override public Collection<String> removeSessionToTopics(Session session) { if (session != null) { return removeSessionsToTopic(Arrays.asList(session)); // for (String topic : map.keySet()) { // sendSubscriptionEvent(Constants.Topic.SUBSCRIBERS + Constants.Topic.COLON + topic, unregisterTopicSession(to...
[ "@", "Override", "public", "Collection", "<", "String", ">", "removeSessionToTopics", "(", "Session", "session", ")", "{", "if", "(", "session", "!=", "null", ")", "{", "return", "removeSessionsToTopic", "(", "Arrays", ".", "asList", "(", "session", ")", ")"...
Remove session cause it's closed by the endpoint @param session
[ "Remove", "session", "cause", "it", "s", "closed", "by", "the", "endpoint" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java#L185-L194
45,973
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java
TopicManagerImpl.sendSubscriptionEvent
void sendSubscriptionEvent(String topic, int nb) { Collection<Session> sessions = getSessionsForTopic(topic); if (!sessions.isEmpty()) { MessageToClient messageToClient = new MessageToClient(); messageToClient.setId(topic); messageToClient.setType(MessageType.MESSAGE); messageToClient.setResponse(...
java
void sendSubscriptionEvent(String topic, int nb) { Collection<Session> sessions = getSessionsForTopic(topic); if (!sessions.isEmpty()) { MessageToClient messageToClient = new MessageToClient(); messageToClient.setId(topic); messageToClient.setType(MessageType.MESSAGE); messageToClient.setResponse(...
[ "void", "sendSubscriptionEvent", "(", "String", "topic", ",", "int", "nb", ")", "{", "Collection", "<", "Session", ">", "sessions", "=", "getSessionsForTopic", "(", "topic", ")", ";", "if", "(", "!", "sessions", ".", "isEmpty", "(", ")", ")", "{", "Messa...
Send subscription event to all client @param topic @param session
[ "Send", "subscription", "event", "to", "all", "client" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java#L202-L219
45,974
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java
TopicManagerImpl.getSessionsForTopic
@Override public Collection<Session> getSessionsForTopic(String topic) { Collection<Session> result; if (map.containsKey(topic)) { return Collections.unmodifiableCollection(map.get(topic)); } else { result = Collections.EMPTY_LIST; } return result; }
java
@Override public Collection<Session> getSessionsForTopic(String topic) { Collection<Session> result; if (map.containsKey(topic)) { return Collections.unmodifiableCollection(map.get(topic)); } else { result = Collections.EMPTY_LIST; } return result; }
[ "@", "Override", "public", "Collection", "<", "Session", ">", "getSessionsForTopic", "(", "String", "topic", ")", "{", "Collection", "<", "Session", ">", "result", ";", "if", "(", "map", ".", "containsKey", "(", "topic", ")", ")", "{", "return", "Collectio...
Get Sessions for topics @param topic @return
[ "Get", "Sessions", "for", "topics" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java#L227-L236
45,975
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java
TopicManagerImpl.getNumberSubscribers
@Override public int getNumberSubscribers(String topic) { if (map.containsKey(topic)) { return map.get(topic).size(); } return 0; }
java
@Override public int getNumberSubscribers(String topic) { if (map.containsKey(topic)) { return map.get(topic).size(); } return 0; }
[ "@", "Override", "public", "int", "getNumberSubscribers", "(", "String", "topic", ")", "{", "if", "(", "map", ".", "containsKey", "(", "topic", ")", ")", "{", "return", "map", ".", "get", "(", "topic", ")", ".", "size", "(", ")", ";", "}", "return", ...
Get Number Sessions for topics @param topic @return
[ "Get", "Number", "Sessions", "for", "topics" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/topic/TopicManagerImpl.java#L244-L250
45,976
italiangrid/voms-api-java
src/main/java/org/italiangrid/voms/request/SSLSocketFactoryProvider.java
SSLSocketFactoryProvider.getSSLSockectFactory
public SSLSocketFactory getSSLSockectFactory() { SSLContext context = null; try { context = SSLContext.getInstance("TLS"); } catch (NoSuchAlgorithmException e) { throw new VOMSError(e.getMessage(), e); } KeyManager[] keyManagers = new KeyManager[] { credential.getKeyManager() }; ...
java
public SSLSocketFactory getSSLSockectFactory() { SSLContext context = null; try { context = SSLContext.getInstance("TLS"); } catch (NoSuchAlgorithmException e) { throw new VOMSError(e.getMessage(), e); } KeyManager[] keyManagers = new KeyManager[] { credential.getKeyManager() }; ...
[ "public", "SSLSocketFactory", "getSSLSockectFactory", "(", ")", "{", "SSLContext", "context", "=", "null", ";", "try", "{", "context", "=", "SSLContext", ".", "getInstance", "(", "\"TLS\"", ")", ";", "}", "catch", "(", "NoSuchAlgorithmException", "e", ")", "{"...
Get the SSL socket factory. @return the {@link SSLSocketFactory} object
[ "Get", "the", "SSL", "socket", "factory", "." ]
b33d6cf98ca9449bed87b1cc307d411514589deb
https://github.com/italiangrid/voms-api-java/blob/b33d6cf98ca9449bed87b1cc307d411514589deb/src/main/java/org/italiangrid/voms/request/SSLSocketFactoryProvider.java#L66-L105
45,977
hageldave/ImagingKit
ImagingKit_Fourier/src/main/java/hageldave/imagingkit/fourier/ArrayUtils.java
ArrayUtils.scaleArray
public static void scaleArray(final double[] array, final double factor){ for(int i = 0; i < array.length; i++){ array[i] *= factor; } }
java
public static void scaleArray(final double[] array, final double factor){ for(int i = 0; i < array.length; i++){ array[i] *= factor; } }
[ "public", "static", "void", "scaleArray", "(", "final", "double", "[", "]", "array", ",", "final", "double", "factor", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "array", ".", "length", ";", "i", "++", ")", "{", "array", "[", "i",...
Multiplies elements of array by specified factor @param array of elements to scale @param factor to scale by
[ "Multiplies", "elements", "of", "array", "by", "specified", "factor" ]
3837c7d550a12cf4dc5718b644ced94b97f52668
https://github.com/hageldave/ImagingKit/blob/3837c7d550a12cf4dc5718b644ced94b97f52668/ImagingKit_Fourier/src/main/java/hageldave/imagingkit/fourier/ArrayUtils.java#L119-L123
45,978
dkpro/dkpro-statistics
dkpro-statistics-agreement/src/main/java/org/dkpro/statistics/agreement/coding/WeightedKappaAgreement.java
WeightedKappaAgreement.calculateObservedDisagreement
@Override public double calculateObservedDisagreement() { ensureDistanceFunction(); double result = 0.0; double maxDistance = 1.0; for (ICodingAnnotationItem item : study.getItems()) { Map<Object, Integer> annotationsPerCategory = CodingAnnotationStudy.countTotalAnnotationsPerCategory(item); for (...
java
@Override public double calculateObservedDisagreement() { ensureDistanceFunction(); double result = 0.0; double maxDistance = 1.0; for (ICodingAnnotationItem item : study.getItems()) { Map<Object, Integer> annotationsPerCategory = CodingAnnotationStudy.countTotalAnnotationsPerCategory(item); for (...
[ "@", "Override", "public", "double", "calculateObservedDisagreement", "(", ")", "{", "ensureDistanceFunction", "(", ")", ";", "double", "result", "=", "0.0", ";", "double", "maxDistance", "=", "1.0", ";", "for", "(", "ICodingAnnotationItem", "item", ":", "study"...
Calculates the observed inter-rater agreement for the annotation study that was passed to the class constructor and the currently assigned distance function. @throws NullPointerException if the study is null. @throws ArithmeticException if the study does not contain any item or the number of raters is smaller than 2.
[ "Calculates", "the", "observed", "inter", "-", "rater", "agreement", "for", "the", "annotation", "study", "that", "was", "passed", "to", "the", "class", "constructor", "and", "the", "currently", "assigned", "distance", "function", "." ]
0b0e93dc49223984964411cbc6df420ba796a8cb
https://github.com/dkpro/dkpro-statistics/blob/0b0e93dc49223984964411cbc6df420ba796a8cb/dkpro-statistics-agreement/src/main/java/org/dkpro/statistics/agreement/coding/WeightedKappaAgreement.java#L63-L92
45,979
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/AbstractDataServiceVisitor.java
AbstractDataServiceVisitor.getJsInstancename
String getJsInstancename(String classname) { char chars[] = classname.toCharArray(); chars[0] = Character.toLowerCase(chars[0]); return new String(chars); //return Introspector.decapitalize(classname); }
java
String getJsInstancename(String classname) { char chars[] = classname.toCharArray(); chars[0] = Character.toLowerCase(chars[0]); return new String(chars); //return Introspector.decapitalize(classname); }
[ "String", "getJsInstancename", "(", "String", "classname", ")", "{", "char", "chars", "[", "]", "=", "classname", ".", "toCharArray", "(", ")", ";", "chars", "[", "0", "]", "=", "Character", ".", "toLowerCase", "(", "chars", "[", "0", "]", ")", ";", ...
Compute the name of instance class @param classname @return
[ "Compute", "the", "name", "of", "instance", "class" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/AbstractDataServiceVisitor.java#L102-L107
45,980
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/AbstractDataServiceVisitor.java
AbstractDataServiceVisitor.getJsClassname
String getJsClassname(TypeElement typeElement) { DataService dsAnno = typeElement.getAnnotation(DataService.class); String name = dsAnno.name(); if (name.isEmpty()) { name = typeElement.getSimpleName().toString(); } return name; }
java
String getJsClassname(TypeElement typeElement) { DataService dsAnno = typeElement.getAnnotation(DataService.class); String name = dsAnno.name(); if (name.isEmpty()) { name = typeElement.getSimpleName().toString(); } return name; }
[ "String", "getJsClassname", "(", "TypeElement", "typeElement", ")", "{", "DataService", "dsAnno", "=", "typeElement", ".", "getAnnotation", "(", "DataService", ".", "class", ")", ";", "String", "name", "=", "dsAnno", ".", "name", "(", ")", ";", "if", "(", ...
Compute the name of javascript class @param typeElement @return
[ "Compute", "the", "name", "of", "javascript", "class" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/AbstractDataServiceVisitor.java#L115-L122
45,981
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/AbstractDataServiceVisitor.java
AbstractDataServiceVisitor.browseAndWriteMethods
void browseAndWriteMethods(List<ExecutableElement> methodElements, String classname, Writer writer) throws IOException { Collection<String> methodProceeds = new ArrayList<>(); boolean first = true; for (ExecutableElement methodElement : methodElements) { if (isConsiderateMethod(methodProceeds, methodElemen...
java
void browseAndWriteMethods(List<ExecutableElement> methodElements, String classname, Writer writer) throws IOException { Collection<String> methodProceeds = new ArrayList<>(); boolean first = true; for (ExecutableElement methodElement : methodElements) { if (isConsiderateMethod(methodProceeds, methodElemen...
[ "void", "browseAndWriteMethods", "(", "List", "<", "ExecutableElement", ">", "methodElements", ",", "String", "classname", ",", "Writer", "writer", ")", "throws", "IOException", "{", "Collection", "<", "String", ">", "methodProceeds", "=", "new", "ArrayList", "<>"...
browse valid methods and write equivalent js methods in writer @param methodElements @param classname @param writer @return @throws IOException
[ "browse", "valid", "methods", "and", "write", "equivalent", "js", "methods", "in", "writer" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/AbstractDataServiceVisitor.java#L133-L145
45,982
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/AbstractDataServiceVisitor.java
AbstractDataServiceVisitor.getOrderedMethods
protected List<ExecutableElement> getOrderedMethods(TypeElement typeElement, Comparator<ExecutableElement> comparator) { List<ExecutableElement> methods = ElementFilter.methodsIn(typeElement.getEnclosedElements()); Collections.sort(methods, comparator); return methods; }
java
protected List<ExecutableElement> getOrderedMethods(TypeElement typeElement, Comparator<ExecutableElement> comparator) { List<ExecutableElement> methods = ElementFilter.methodsIn(typeElement.getEnclosedElements()); Collections.sort(methods, comparator); return methods; }
[ "protected", "List", "<", "ExecutableElement", ">", "getOrderedMethods", "(", "TypeElement", "typeElement", ",", "Comparator", "<", "ExecutableElement", ">", "comparator", ")", "{", "List", "<", "ExecutableElement", ">", "methods", "=", "ElementFilter", ".", "method...
Return methods from typeElement ordered by comparator @param typeElement @param comparator @return
[ "Return", "methods", "from", "typeElement", "ordered", "by", "comparator" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/AbstractDataServiceVisitor.java#L153-L157
45,983
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/AbstractDataServiceVisitor.java
AbstractDataServiceVisitor.getArgumentsType
List<String> getArgumentsType(ExecutableElement methodElement) { ExecutableType methodType = (ExecutableType) methodElement.asType(); List<String> res = new ArrayList<>(); for (TypeMirror argumentType : methodType.getParameterTypes()) { res.add(argumentType.toString()); } return res; }
java
List<String> getArgumentsType(ExecutableElement methodElement) { ExecutableType methodType = (ExecutableType) methodElement.asType(); List<String> res = new ArrayList<>(); for (TypeMirror argumentType : methodType.getParameterTypes()) { res.add(argumentType.toString()); } return res; }
[ "List", "<", "String", ">", "getArgumentsType", "(", "ExecutableElement", "methodElement", ")", "{", "ExecutableType", "methodType", "=", "(", "ExecutableType", ")", "methodElement", ".", "asType", "(", ")", ";", "List", "<", "String", ">", "res", "=", "new", ...
Get argument types list from method @param methodElement @return
[ "Get", "argument", "types", "list", "from", "method" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/AbstractDataServiceVisitor.java#L202-L209
45,984
ocelotds/ocelot
ocelot-processor/src/main/java/org/ocelotds/processors/visitors/AbstractDataServiceVisitor.java
AbstractDataServiceVisitor.getArguments
List<String> getArguments(ExecutableElement methodElement) { List<String> res = new ArrayList<>(); for (VariableElement variableElement : methodElement.getParameters()) { res.add(variableElement.toString()); } return res; }
java
List<String> getArguments(ExecutableElement methodElement) { List<String> res = new ArrayList<>(); for (VariableElement variableElement : methodElement.getParameters()) { res.add(variableElement.toString()); } return res; }
[ "List", "<", "String", ">", "getArguments", "(", "ExecutableElement", "methodElement", ")", "{", "List", "<", "String", ">", "res", "=", "new", "ArrayList", "<>", "(", ")", ";", "for", "(", "VariableElement", "variableElement", ":", "methodElement", ".", "ge...
Get argument names list from method @param methodElement @return
[ "Get", "argument", "names", "list", "from", "method" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-processor/src/main/java/org/ocelotds/processors/visitors/AbstractDataServiceVisitor.java#L217-L223
45,985
dkpro/dkpro-statistics
dkpro-statistics-agreement/src/main/java/org/dkpro/statistics/agreement/coding/CodingAnnotationStudy.java
CodingAnnotationStudy.stripCategories
public CodingAnnotationStudy stripCategories(final Object keepCategory, final Object nullCategory) { CodingAnnotationStudy result = new CodingAnnotationStudy(getRaterCount()); for (ICodingAnnotationItem item : getItems()) { CodingAnnotationItem newItem = new CodingAnnotationItem(raters.size()); for (I...
java
public CodingAnnotationStudy stripCategories(final Object keepCategory, final Object nullCategory) { CodingAnnotationStudy result = new CodingAnnotationStudy(getRaterCount()); for (ICodingAnnotationItem item : getItems()) { CodingAnnotationItem newItem = new CodingAnnotationItem(raters.size()); for (I...
[ "public", "CodingAnnotationStudy", "stripCategories", "(", "final", "Object", "keepCategory", ",", "final", "Object", "nullCategory", ")", "{", "CodingAnnotationStudy", "result", "=", "new", "CodingAnnotationStudy", "(", "getRaterCount", "(", ")", ")", ";", "for", "...
Returns a clone of the current annotation study in which all categories are replaced by the given nullCategory except the categories matching the specified keepCategory.
[ "Returns", "a", "clone", "of", "the", "current", "annotation", "study", "in", "which", "all", "categories", "are", "replaced", "by", "the", "given", "nullCategory", "except", "the", "categories", "matching", "the", "specified", "keepCategory", "." ]
0b0e93dc49223984964411cbc6df420ba796a8cb
https://github.com/dkpro/dkpro-statistics/blob/0b0e93dc49223984964411cbc6df420ba796a8cb/dkpro-statistics-agreement/src/main/java/org/dkpro/statistics/agreement/coding/CodingAnnotationStudy.java#L188-L207
45,986
hageldave/ImagingKit
ImagingKit_Fourier/src/main/java/hageldave/imagingkit/fourier/ComplexImg.java
ComplexImg.computePhase
public double computePhase(int idx){ double r = real[idx]; double i = imag[idx]; return atan2(r, i); }
java
public double computePhase(int idx){ double r = real[idx]; double i = imag[idx]; return atan2(r, i); }
[ "public", "double", "computePhase", "(", "int", "idx", ")", "{", "double", "r", "=", "real", "[", "idx", "]", ";", "double", "i", "=", "imag", "[", "idx", "]", ";", "return", "atan2", "(", "r", ",", "i", ")", ";", "}" ]
Calculates the phase of the pixel at the specified index. The phase is the argument of the complex number, i.e. the angle of the complex vector in the complex plane. @param idx index @return the phase in [0,2pi] of the complex number at index
[ "Calculates", "the", "phase", "of", "the", "pixel", "at", "the", "specified", "index", ".", "The", "phase", "is", "the", "argument", "of", "the", "complex", "number", "i", ".", "e", ".", "the", "angle", "of", "the", "complex", "vector", "in", "the", "c...
3837c7d550a12cf4dc5718b644ced94b97f52668
https://github.com/hageldave/ImagingKit/blob/3837c7d550a12cf4dc5718b644ced94b97f52668/ImagingKit_Fourier/src/main/java/hageldave/imagingkit/fourier/ComplexImg.java#L510-L514
45,987
jenkinsci/gmaven
gmaven-runtime/gmaven-runtime-loader/src/main/java/org/codehaus/gmaven/runtime/loader/DefaultProviderSelector.java
DefaultProviderSelector.findLoaders
private Map findLoaders() { Map loaders = getContainer().getComponentDescriptorMap(ProviderLoader.class.getName()); if (loaders == null) { throw new Error("No provider loaders found"); } Set keys = loaders.keySet(); Map found = null; ProviderLoader defaultLoa...
java
private Map findLoaders() { Map loaders = getContainer().getComponentDescriptorMap(ProviderLoader.class.getName()); if (loaders == null) { throw new Error("No provider loaders found"); } Set keys = loaders.keySet(); Map found = null; ProviderLoader defaultLoa...
[ "private", "Map", "findLoaders", "(", ")", "{", "Map", "loaders", "=", "getContainer", "(", ")", ".", "getComponentDescriptorMap", "(", "ProviderLoader", ".", "class", ".", "getName", "(", ")", ")", ";", "if", "(", "loaders", "==", "null", ")", "{", "thr...
Find any provider loaders which are available in the container.
[ "Find", "any", "provider", "loaders", "which", "are", "available", "in", "the", "container", "." ]
80d5f6657e15b3e05ffbb82128ed8bb280836e10
https://github.com/jenkinsci/gmaven/blob/80d5f6657e15b3e05ffbb82128ed8bb280836e10/gmaven-runtime/gmaven-runtime-loader/src/main/java/org/codehaus/gmaven/runtime/loader/DefaultProviderSelector.java#L233-L275
45,988
riversun/finbin
src/main/java/org/riversun/finbin/BinaryUtil.java
BinaryUtil.getBytes
public static byte[] getBytes(String text) { byte[] bytes = new byte[] {}; try { bytes = text.getBytes("utf-8"); } catch (UnsupportedEncodingException e) { } return bytes; }
java
public static byte[] getBytes(String text) { byte[] bytes = new byte[] {}; try { bytes = text.getBytes("utf-8"); } catch (UnsupportedEncodingException e) { } return bytes; }
[ "public", "static", "byte", "[", "]", "getBytes", "(", "String", "text", ")", "{", "byte", "[", "]", "bytes", "=", "new", "byte", "[", "]", "{", "}", ";", "try", "{", "bytes", "=", "text", ".", "getBytes", "(", "\"utf-8\"", ")", ";", "}", "catch"...
Get UTF-8 without BOM encoded bytes from String @param text @return
[ "Get", "UTF", "-", "8", "without", "BOM", "encoded", "bytes", "from", "String" ]
d1db86a0d2966dcf47087340bbd0727a9d508b3e
https://github.com/riversun/finbin/blob/d1db86a0d2966dcf47087340bbd0727a9d508b3e/src/main/java/org/riversun/finbin/BinaryUtil.java#L49-L56
45,989
riversun/finbin
src/main/java/org/riversun/finbin/BinaryUtil.java
BinaryUtil.loadBytesFromFile
public static byte[] loadBytesFromFile(File file) { byte[] bytes = null; try { bytes = Files.readAllBytes(Paths.get(file.getAbsolutePath())); } catch (IOException e) { e.printStackTrace(); } return bytes; }
java
public static byte[] loadBytesFromFile(File file) { byte[] bytes = null; try { bytes = Files.readAllBytes(Paths.get(file.getAbsolutePath())); } catch (IOException e) { e.printStackTrace(); } return bytes; }
[ "public", "static", "byte", "[", "]", "loadBytesFromFile", "(", "File", "file", ")", "{", "byte", "[", "]", "bytes", "=", "null", ";", "try", "{", "bytes", "=", "Files", ".", "readAllBytes", "(", "Paths", ".", "get", "(", "file", ".", "getAbsolutePath"...
load from file @param file @return
[ "load", "from", "file" ]
d1db86a0d2966dcf47087340bbd0727a9d508b3e
https://github.com/riversun/finbin/blob/d1db86a0d2966dcf47087340bbd0727a9d508b3e/src/main/java/org/riversun/finbin/BinaryUtil.java#L75-L84
45,990
riversun/finbin
src/main/java/org/riversun/finbin/BinaryUtil.java
BinaryUtil.saveBytesToFile
public static void saveBytesToFile(byte[] data, File file) { if (data == null) { return; } FileOutputStream fos = null; BufferedOutputStream bos = null; try { fos = new FileOutputStream(file); bos = new BufferedOutputStream(fos); bos.write(data); bos.flush(); } catch (FileNotFoundE...
java
public static void saveBytesToFile(byte[] data, File file) { if (data == null) { return; } FileOutputStream fos = null; BufferedOutputStream bos = null; try { fos = new FileOutputStream(file); bos = new BufferedOutputStream(fos); bos.write(data); bos.flush(); } catch (FileNotFoundE...
[ "public", "static", "void", "saveBytesToFile", "(", "byte", "[", "]", "data", ",", "File", "file", ")", "{", "if", "(", "data", "==", "null", ")", "{", "return", ";", "}", "FileOutputStream", "fos", "=", "null", ";", "BufferedOutputStream", "bos", "=", ...
save to file @param data @param file
[ "save", "to", "file" ]
d1db86a0d2966dcf47087340bbd0727a9d508b3e
https://github.com/riversun/finbin/blob/d1db86a0d2966dcf47087340bbd0727a9d508b3e/src/main/java/org/riversun/finbin/BinaryUtil.java#L92-L123
45,991
hageldave/ImagingKit
ImagingKit_Core/src/main/java/hageldave/imagingkit/core/io/ImageLoader.java
ImageLoader.loadImage
public static BufferedImage loadImage(String fileName){ File f = new File(fileName); if(f.exists()){ return loadImage(f); } throw new ImageLoaderException(new FileNotFoundException(fileName)); }
java
public static BufferedImage loadImage(String fileName){ File f = new File(fileName); if(f.exists()){ return loadImage(f); } throw new ImageLoaderException(new FileNotFoundException(fileName)); }
[ "public", "static", "BufferedImage", "loadImage", "(", "String", "fileName", ")", "{", "File", "f", "=", "new", "File", "(", "fileName", ")", ";", "if", "(", "f", ".", "exists", "(", ")", ")", "{", "return", "loadImage", "(", "f", ")", ";", "}", "t...
Tries to load Image from specified filename. @param fileName path of the image file @return loaded Image. @throws ImageLoaderException if the file does not exist or cannot be loaded. @since 1.0
[ "Tries", "to", "load", "Image", "from", "specified", "filename", "." ]
3837c7d550a12cf4dc5718b644ced94b97f52668
https://github.com/hageldave/ImagingKit/blob/3837c7d550a12cf4dc5718b644ced94b97f52668/ImagingKit_Core/src/main/java/hageldave/imagingkit/core/io/ImageLoader.java#L63-L69
45,992
hageldave/ImagingKit
ImagingKit_Core/src/main/java/hageldave/imagingkit/core/io/ImageLoader.java
ImageLoader.loadImage
public static BufferedImage loadImage(File file){ try { BufferedImage bimg = ImageIO.read(file); if(bimg == null){ throw new ImageLoaderException("Could not load Image! ImageIO.read() returned null."); } return bimg; } catch (IOException e) { throw new ImageLoaderException(e); } }
java
public static BufferedImage loadImage(File file){ try { BufferedImage bimg = ImageIO.read(file); if(bimg == null){ throw new ImageLoaderException("Could not load Image! ImageIO.read() returned null."); } return bimg; } catch (IOException e) { throw new ImageLoaderException(e); } }
[ "public", "static", "BufferedImage", "loadImage", "(", "File", "file", ")", "{", "try", "{", "BufferedImage", "bimg", "=", "ImageIO", ".", "read", "(", "file", ")", ";", "if", "(", "bimg", "==", "null", ")", "{", "throw", "new", "ImageLoaderException", "...
Tries to load image from specified file. @param file the image file @return loaded Image. @throws ImageLoaderException if no image could be loaded from the file. @since 1.0
[ "Tries", "to", "load", "image", "from", "specified", "file", "." ]
3837c7d550a12cf4dc5718b644ced94b97f52668
https://github.com/hageldave/ImagingKit/blob/3837c7d550a12cf4dc5718b644ced94b97f52668/ImagingKit_Core/src/main/java/hageldave/imagingkit/core/io/ImageLoader.java#L78-L88
45,993
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/core/mtc/MessageToClientManager.java
MessageToClientManager._createMessageToClient
MessageToClient _createMessageToClient(MessageFromClient message, T session) { MessageToClient messageToClient = new MessageToClient(); messageToClient.setId(message.getId()); try { Class cls = Class.forName(message.getDataService()); Object dataService = this.getDataService(session, cls); logger.d...
java
MessageToClient _createMessageToClient(MessageFromClient message, T session) { MessageToClient messageToClient = new MessageToClient(); messageToClient.setId(message.getId()); try { Class cls = Class.forName(message.getDataService()); Object dataService = this.getDataService(session, cls); logger.d...
[ "MessageToClient", "_createMessageToClient", "(", "MessageFromClient", "message", ",", "T", "session", ")", "{", "MessageToClient", "messageToClient", "=", "new", "MessageToClient", "(", ")", ";", "messageToClient", ".", "setId", "(", "message", ".", "getId", "(", ...
Create a MessageToClient from MessageFromClient for session Only for available test use case @param message @param session @return
[ "Create", "a", "MessageToClient", "from", "MessageFromClient", "for", "session", "Only", "for", "available", "test", "use", "case" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/core/mtc/MessageToClientManager.java#L133-L165
45,994
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/core/mtc/MessageToClientManager.java
MessageToClientManager.injectSession
void injectSession(Class<?>[] parameterTypes, List<Object> arguments, T session) { if (parameterTypes != null) { int i = 0; for (Class<?> parameterType : parameterTypes) { if (parameterType.isInstance(session)) { arguments.set(i, session); break; } i++; } } }
java
void injectSession(Class<?>[] parameterTypes, List<Object> arguments, T session) { if (parameterTypes != null) { int i = 0; for (Class<?> parameterType : parameterTypes) { if (parameterType.isInstance(session)) { arguments.set(i, session); break; } i++; } } }
[ "void", "injectSession", "(", "Class", "<", "?", ">", "[", "]", "parameterTypes", ",", "List", "<", "Object", ">", "arguments", ",", "T", "session", ")", "{", "if", "(", "parameterTypes", "!=", "null", ")", "{", "int", "i", "=", "0", ";", "for", "(...
Inject Session or HttpSession if necessary @param parameterTypes @param arguments @param session
[ "Inject", "Session", "or", "HttpSession", "if", "necessary" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/core/mtc/MessageToClientManager.java#L174-L185
45,995
italiangrid/voms-api-java
src/main/java/org/italiangrid/voms/store/impl/DefaultVOMSTrustStore.java
DefaultVOMSTrustStore.loadCertificateFromFile
private void loadCertificateFromFile(File file) { certificateFileSanityChecks(file); try { X509Certificate aaCert = CertificateUtils.loadCertificate( new FileInputStream(file), Encoding.PEM); // Get certificate subject hash, using the CANL implementation for CA // files Strin...
java
private void loadCertificateFromFile(File file) { certificateFileSanityChecks(file); try { X509Certificate aaCert = CertificateUtils.loadCertificate( new FileInputStream(file), Encoding.PEM); // Get certificate subject hash, using the CANL implementation for CA // files Strin...
[ "private", "void", "loadCertificateFromFile", "(", "File", "file", ")", "{", "certificateFileSanityChecks", "(", "file", ")", ";", "try", "{", "X509Certificate", "aaCert", "=", "CertificateUtils", ".", "loadCertificate", "(", "new", "FileInputStream", "(", "file", ...
Loads a VOMS AA certificate from a given file and stores this certificate in the local map of trusted VOMS AA certificate. @param file
[ "Loads", "a", "VOMS", "AA", "certificate", "from", "a", "given", "file", "and", "stores", "this", "certificate", "in", "the", "local", "map", "of", "trusted", "VOMS", "AA", "certificate", "." ]
b33d6cf98ca9449bed87b1cc307d411514589deb
https://github.com/italiangrid/voms-api-java/blob/b33d6cf98ca9449bed87b1cc307d411514589deb/src/main/java/org/italiangrid/voms/store/impl/DefaultVOMSTrustStore.java#L247-L274
45,996
italiangrid/voms-api-java
src/main/java/org/italiangrid/voms/store/impl/DefaultVOMSTrustStore.java
DefaultVOMSTrustStore.certificateFileSanityChecks
private void certificateFileSanityChecks(File certFile) { if (!certFile.exists()) throw new VOMSError("Local VOMS trusted certificate does not exist:" + certFile.getAbsolutePath()); if (!certFile.canRead()) throw new VOMSError("Local VOMS trusted certificate is not readable:" + cer...
java
private void certificateFileSanityChecks(File certFile) { if (!certFile.exists()) throw new VOMSError("Local VOMS trusted certificate does not exist:" + certFile.getAbsolutePath()); if (!certFile.canRead()) throw new VOMSError("Local VOMS trusted certificate is not readable:" + cer...
[ "private", "void", "certificateFileSanityChecks", "(", "File", "certFile", ")", "{", "if", "(", "!", "certFile", ".", "exists", "(", ")", ")", "throw", "new", "VOMSError", "(", "\"Local VOMS trusted certificate does not exist:\"", "+", "certFile", ".", "getAbsoluteP...
Performs basic sanity checks performed on a file supposed to hold a VOMS AA certificate. @param certFile
[ "Performs", "basic", "sanity", "checks", "performed", "on", "a", "file", "supposed", "to", "hold", "a", "VOMS", "AA", "certificate", "." ]
b33d6cf98ca9449bed87b1cc307d411514589deb
https://github.com/italiangrid/voms-api-java/blob/b33d6cf98ca9449bed87b1cc307d411514589deb/src/main/java/org/italiangrid/voms/store/impl/DefaultVOMSTrustStore.java#L341-L351
45,997
italiangrid/voms-api-java
src/main/java/org/italiangrid/voms/store/impl/DefaultVOMSTrustStore.java
DefaultVOMSTrustStore.directorySanityChecks
private void directorySanityChecks(File directory) { if (!directory.exists()) throw new VOMSError("Local trust directory does not exists:" + directory.getAbsolutePath()); if (!directory.isDirectory()) throw new VOMSError("Local trust directory is not a directory:" + directory.getAb...
java
private void directorySanityChecks(File directory) { if (!directory.exists()) throw new VOMSError("Local trust directory does not exists:" + directory.getAbsolutePath()); if (!directory.isDirectory()) throw new VOMSError("Local trust directory is not a directory:" + directory.getAb...
[ "private", "void", "directorySanityChecks", "(", "File", "directory", ")", "{", "if", "(", "!", "directory", ".", "exists", "(", ")", ")", "throw", "new", "VOMSError", "(", "\"Local trust directory does not exists:\"", "+", "directory", ".", "getAbsolutePath", "("...
Performs basic sanity checks on a directory that is supposed to contain VOMS AA certificates and LSC files. @param directory
[ "Performs", "basic", "sanity", "checks", "on", "a", "directory", "that", "is", "supposed", "to", "contain", "VOMS", "AA", "certificates", "and", "LSC", "files", "." ]
b33d6cf98ca9449bed87b1cc307d411514589deb
https://github.com/italiangrid/voms-api-java/blob/b33d6cf98ca9449bed87b1cc307d411514589deb/src/main/java/org/italiangrid/voms/store/impl/DefaultVOMSTrustStore.java#L359-L377
45,998
darcy-framework/darcy-ui
src/main/java/com/redhat/darcy/ui/matchers/LoadConditionMatcher.java
LoadConditionMatcher.doesItemMatchAppropriateCondition
private boolean doesItemMatchAppropriateCondition(Object item) { Matcher<?> matcher; if (item instanceof View) { matcher = loaded(); } else if (item instanceof Element) { matcher = displayed(); } else { matcher = present(); } return m...
java
private boolean doesItemMatchAppropriateCondition(Object item) { Matcher<?> matcher; if (item instanceof View) { matcher = loaded(); } else if (item instanceof Element) { matcher = displayed(); } else { matcher = present(); } return m...
[ "private", "boolean", "doesItemMatchAppropriateCondition", "(", "Object", "item", ")", "{", "Matcher", "<", "?", ">", "matcher", ";", "if", "(", "item", "instanceof", "View", ")", "{", "matcher", "=", "loaded", "(", ")", ";", "}", "else", "if", "(", "ite...
Takes an object, and determines a condition for that object that should satisfy the containing view is loaded. Different conditions are made depending on the type of object. <table> <thead> <tr> <td>Type</td> <td>Method</td> </tr> </thead> <tbody> <tr> <td>{@link com.redhat.darcy.ui.api.View}</td> <td>{@link com.redha...
[ "Takes", "an", "object", "and", "determines", "a", "condition", "for", "that", "object", "that", "should", "satisfy", "the", "containing", "view", "is", "loaded", ".", "Different", "conditions", "are", "made", "depending", "on", "the", "type", "of", "object", ...
ae0d89a1ca45f8257ef2764a01e4cfe68f432e33
https://github.com/darcy-framework/darcy-ui/blob/ae0d89a1ca45f8257ef2764a01e4cfe68f432e33/src/main/java/com/redhat/darcy/ui/matchers/LoadConditionMatcher.java#L80-L92
45,999
ocelotds/ocelot
ocelot-web/src/main/java/org/ocelotds/web/rest/RsJsServices.java
RsJsServices.getClassnameFromProxy
String getClassnameFromProxy(Object dataservice) { String ds = dataservice.toString(); return getClassnameFromProxyname(ds); }
java
String getClassnameFromProxy(Object dataservice) { String ds = dataservice.toString(); return getClassnameFromProxyname(ds); }
[ "String", "getClassnameFromProxy", "(", "Object", "dataservice", ")", "{", "String", "ds", "=", "dataservice", ".", "toString", "(", ")", ";", "return", "getClassnameFromProxyname", "(", "ds", ")", ";", "}" ]
Return classname from proxy instance @param dataservice @return
[ "Return", "classname", "from", "proxy", "instance" ]
5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7
https://github.com/ocelotds/ocelot/blob/5f0ac37afd8fa4dc9f7234a2aac8abbb522128e7/ocelot-web/src/main/java/org/ocelotds/web/rest/RsJsServices.java#L80-L83