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
41,900
cojen/Cojen
src/main/java/org/cojen/classfile/attribute/CodeAttr.java
CodeAttr.setCodeBuffer
public void setCodeBuffer(CodeBuffer code) { mCodeBuffer = code; mOldLineNumberTable = mLineNumberTable; mOldLocalVariableTable = mLocalVariableTable; mOldStackMapTable = mStackMapTable; mAttributes.remove(mLineNumberTable); mAttributes.remove(mLocalVariableTable); ...
java
public void setCodeBuffer(CodeBuffer code) { mCodeBuffer = code; mOldLineNumberTable = mLineNumberTable; mOldLocalVariableTable = mLocalVariableTable; mOldStackMapTable = mStackMapTable; mAttributes.remove(mLineNumberTable); mAttributes.remove(mLocalVariableTable); ...
[ "public", "void", "setCodeBuffer", "(", "CodeBuffer", "code", ")", "{", "mCodeBuffer", "=", "code", ";", "mOldLineNumberTable", "=", "mLineNumberTable", ";", "mOldLocalVariableTable", "=", "mLocalVariableTable", ";", "mOldStackMapTable", "=", "mStackMapTable", ";", "m...
As a side effect of calling this method, new line number and local variable tables are created.
[ "As", "a", "side", "effect", "of", "calling", "this", "method", "new", "line", "number", "and", "local", "variable", "tables", "are", "created", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/attribute/CodeAttr.java#L119-L130
41,901
cojen/Cojen
src/main/java/org/cojen/classfile/attribute/CodeAttr.java
CodeAttr.localVariableUse
public void localVariableUse(LocalVariable localVar) { if (mLocalVariableTable == null) { addAttribute(new LocalVariableTableAttr(getConstantPool())); } mLocalVariableTable.addEntry(localVar); }
java
public void localVariableUse(LocalVariable localVar) { if (mLocalVariableTable == null) { addAttribute(new LocalVariableTableAttr(getConstantPool())); } mLocalVariableTable.addEntry(localVar); }
[ "public", "void", "localVariableUse", "(", "LocalVariable", "localVar", ")", "{", "if", "(", "mLocalVariableTable", "==", "null", ")", "{", "addAttribute", "(", "new", "LocalVariableTableAttr", "(", "getConstantPool", "(", ")", ")", ")", ";", "}", "mLocalVariabl...
Indicate a local variable's use information be recorded in the ClassFile as a debugging aid. If the LocalVariable doesn't provide both a start and end location, then its information is not recorded. This method should be called at most once per LocalVariable instance.
[ "Indicate", "a", "local", "variable", "s", "use", "information", "be", "recorded", "in", "the", "ClassFile", "as", "a", "debugging", "aid", ".", "If", "the", "LocalVariable", "doesn", "t", "provide", "both", "a", "start", "and", "end", "location", "then", ...
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/attribute/CodeAttr.java#L200-L205
41,902
cojen/Cojen
src/example/org/cojen/example/HelloWorld.java
HelloWorld.createClassFile
private static RuntimeClassFile createClassFile() { // Create a ClassFile with the super class of Object. RuntimeClassFile cf = new RuntimeClassFile(); // Default constructor works only if super class has an accessible // no-arg constructor. cf.addDefaultConstructor(); ...
java
private static RuntimeClassFile createClassFile() { // Create a ClassFile with the super class of Object. RuntimeClassFile cf = new RuntimeClassFile(); // Default constructor works only if super class has an accessible // no-arg constructor. cf.addDefaultConstructor(); ...
[ "private", "static", "RuntimeClassFile", "createClassFile", "(", ")", "{", "// Create a ClassFile with the super class of Object.", "RuntimeClassFile", "cf", "=", "new", "RuntimeClassFile", "(", ")", ";", "// Default constructor works only if super class has an accessible", "// no-...
Creates a ClassFile which defines a simple interactive HelloWorld class. @param className name given to class
[ "Creates", "a", "ClassFile", "which", "defines", "a", "simple", "interactive", "HelloWorld", "class", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/example/org/cojen/example/HelloWorld.java#L71-L159
41,903
cojen/Cojen
src/main/java/org/cojen/classfile/ConstantPool.java
ConstantPool.addConstantClass
public ConstantClassInfo addConstantClass(String className, int dim) { return (ConstantClassInfo)addConstant(new ConstantClassInfo(this, className, dim)); }
java
public ConstantClassInfo addConstantClass(String className, int dim) { return (ConstantClassInfo)addConstant(new ConstantClassInfo(this, className, dim)); }
[ "public", "ConstantClassInfo", "addConstantClass", "(", "String", "className", ",", "int", "dim", ")", "{", "return", "(", "ConstantClassInfo", ")", "addConstant", "(", "new", "ConstantClassInfo", "(", "this", ",", "className", ",", "dim", ")", ")", ";", "}" ]
Get or create a constant from the constant pool representing an array class. @param dim Number of array dimensions.
[ "Get", "or", "create", "a", "constant", "from", "the", "constant", "pool", "representing", "an", "array", "class", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/ConstantPool.java#L128-L130
41,904
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/localization/DefaultResourceBundleFactory.java
DefaultResourceBundleFactory.init
public void init(Configuration configuration) throws Exception { String baseName = configuration.getBootstrapPropertyResolver().getProperty("ResourceBundleFactory.Bundle"); if (baseName != null) { this.baseName = baseName; } }
java
public void init(Configuration configuration) throws Exception { String baseName = configuration.getBootstrapPropertyResolver().getProperty("ResourceBundleFactory.Bundle"); if (baseName != null) { this.baseName = baseName; } }
[ "public", "void", "init", "(", "Configuration", "configuration", ")", "throws", "Exception", "{", "String", "baseName", "=", "configuration", ".", "getBootstrapPropertyResolver", "(", ")", ".", "getProperty", "(", "\"ResourceBundleFactory.Bundle\"", ")", ";", "if", ...
Initialize the bundle factory. @param configuration the current configuration @throws Exception when the factory cannot be initialized
[ "Initialize", "the", "bundle", "factory", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/localization/DefaultResourceBundleFactory.java#L36-L44
41,905
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/localization/DefaultResourceBundleFactory.java
DefaultResourceBundleFactory.getDefaultBundle
public ResourceBundle getDefaultBundle(Locale locale) throws MissingResourceException { ResourceBundle bundle; if (locale == null) { bundle = ResourceBundle.getBundle(baseName); } else { bundle = ResourceBundle.getBundle(baseName, locale); } return bundle; }
java
public ResourceBundle getDefaultBundle(Locale locale) throws MissingResourceException { ResourceBundle bundle; if (locale == null) { bundle = ResourceBundle.getBundle(baseName); } else { bundle = ResourceBundle.getBundle(baseName, locale); } return bundle; }
[ "public", "ResourceBundle", "getDefaultBundle", "(", "Locale", "locale", ")", "throws", "MissingResourceException", "{", "ResourceBundle", "bundle", ";", "if", "(", "locale", "==", "null", ")", "{", "bundle", "=", "ResourceBundle", ".", "getBundle", "(", "baseName...
Returns the ResourceBundle from which to messages for the specified locale by default. @param locale the locale that is in use for the current request @return the default resource bundle @throws java.util.MissingResourceException when a bundle that is expected to be present cannot be located
[ "Returns", "the", "ResourceBundle", "from", "which", "to", "messages", "for", "the", "specified", "locale", "by", "default", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/localization/DefaultResourceBundleFactory.java#L55-L69
41,906
cojen/Cojen
src/main/java/org/cojen/util/BeanPropertyMapFactory.java
BeanPropertyMapFactory.forClass
public static <B> BeanPropertyMapFactory<B> forClass(Class<B> clazz) { synchronized (cFactories) { BeanPropertyMapFactory factory; SoftReference<BeanPropertyMapFactory> ref = cFactories.get(clazz); if (ref != null) { factory = ref.get(); if (fa...
java
public static <B> BeanPropertyMapFactory<B> forClass(Class<B> clazz) { synchronized (cFactories) { BeanPropertyMapFactory factory; SoftReference<BeanPropertyMapFactory> ref = cFactories.get(clazz); if (ref != null) { factory = ref.get(); if (fa...
[ "public", "static", "<", "B", ">", "BeanPropertyMapFactory", "<", "B", ">", "forClass", "(", "Class", "<", "B", ">", "clazz", ")", "{", "synchronized", "(", "cFactories", ")", "{", "BeanPropertyMapFactory", "factory", ";", "SoftReference", "<", "BeanPropertyMa...
Returns a new or cached BeanPropertyMapFactory for the given class.
[ "Returns", "a", "new", "or", "cached", "BeanPropertyMapFactory", "for", "the", "given", "class", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/BeanPropertyMapFactory.java#L54-L96
41,907
cojen/Cojen
src/main/java/org/cojen/util/BeanPropertyMapFactory.java
BeanPropertyMapFactory.asMap
public static SortedMap<String, Object> asMap(Object bean) { if (bean == null) { throw new IllegalArgumentException(); } BeanPropertyMapFactory factory = forClass(bean.getClass()); return factory.createMap(bean); }
java
public static SortedMap<String, Object> asMap(Object bean) { if (bean == null) { throw new IllegalArgumentException(); } BeanPropertyMapFactory factory = forClass(bean.getClass()); return factory.createMap(bean); }
[ "public", "static", "SortedMap", "<", "String", ",", "Object", ">", "asMap", "(", "Object", "bean", ")", "{", "if", "(", "bean", "==", "null", ")", "{", "throw", "new", "IllegalArgumentException", "(", ")", ";", "}", "BeanPropertyMapFactory", "factory", "=...
Returns a fixed-size map backed by the given bean. Map remove operations are unsupported, as is access to excluded properties. @throws IllegalArgumentException if bean is null
[ "Returns", "a", "fixed", "-", "size", "map", "backed", "by", "the", "given", "bean", ".", "Map", "remove", "operations", "are", "unsupported", "as", "is", "access", "to", "excluded", "properties", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/BeanPropertyMapFactory.java#L104-L110
41,908
cojen/Cojen
src/main/java/org/cojen/classfile/MethodInfo.java
MethodInfo.getExceptions
public TypeDesc[] getExceptions() { if (mExceptions == null) { return new TypeDesc[0]; } ConstantClassInfo[] classes = mExceptions.getExceptions(); TypeDesc[] types = new TypeDesc[classes.length]; for (int i=0; i<types.length; i++) { types[i] = classes[i]...
java
public TypeDesc[] getExceptions() { if (mExceptions == null) { return new TypeDesc[0]; } ConstantClassInfo[] classes = mExceptions.getExceptions(); TypeDesc[] types = new TypeDesc[classes.length]; for (int i=0; i<types.length; i++) { types[i] = classes[i]...
[ "public", "TypeDesc", "[", "]", "getExceptions", "(", ")", "{", "if", "(", "mExceptions", "==", "null", ")", "{", "return", "new", "TypeDesc", "[", "0", "]", ";", "}", "ConstantClassInfo", "[", "]", "classes", "=", "mExceptions", ".", "getExceptions", "(...
Returns the exceptions that this method is declared to throw.
[ "Returns", "the", "exceptions", "that", "this", "method", "is", "declared", "to", "throw", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/MethodInfo.java#L177-L189
41,909
Faylixe/googlecodejam-client
src/main/java/fr/faylixe/googlecodejam/client/executor/Request.java
Request.createBoundary
public static final String createBoundary() { final StringBuilder builder = new StringBuilder(BOUNDARY_PREFIX); builder.append((int) System.currentTimeMillis()); return builder.toString(); }
java
public static final String createBoundary() { final StringBuilder builder = new StringBuilder(BOUNDARY_PREFIX); builder.append((int) System.currentTimeMillis()); return builder.toString(); }
[ "public", "static", "final", "String", "createBoundary", "(", ")", "{", "final", "StringBuilder", "builder", "=", "new", "StringBuilder", "(", "BOUNDARY_PREFIX", ")", ";", "builder", ".", "append", "(", "(", "int", ")", "System", ".", "currentTimeMillis", "(",...
Creates and returns a boundary for multipart request. @return Created boundary.
[ "Creates", "and", "returns", "a", "boundary", "for", "multipart", "request", "." ]
84a5fed4e049dca48994dc3f70213976aaff4bd3
https://github.com/Faylixe/googlecodejam-client/blob/84a5fed4e049dca48994dc3f70213976aaff4bd3/src/main/java/fr/faylixe/googlecodejam/client/executor/Request.java#L119-L123
41,910
cojen/Cojen
src/main/java/org/cojen/util/AnnotationVisitor.java
AnnotationVisitor.visit
public R visit(String name, int pos, String value, P param) { return null; }
java
public R visit(String name, int pos, String value, P param) { return null; }
[ "public", "R", "visit", "(", "String", "name", ",", "int", "pos", ",", "String", "value", ",", "P", "param", ")", "{", "return", "null", ";", "}" ]
Override to visit Strings. @param name member name, or null if array member @param pos position of member in list or array @param value String visited @param param custom parameter @return custom result, null by default
[ "Override", "to", "visit", "Strings", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/AnnotationVisitor.java#L290-L292
41,911
cojen/Cojen
src/main/java/org/cojen/util/AnnotationVisitor.java
AnnotationVisitor.visit
public R visit(String name, int pos, Annotation[] value, P param) { for (int i=0; i<value.length; i++) { visit(null, i, value[i], param); } return null; }
java
public R visit(String name, int pos, Annotation[] value, P param) { for (int i=0; i<value.length; i++) { visit(null, i, value[i], param); } return null; }
[ "public", "R", "visit", "(", "String", "name", ",", "int", "pos", ",", "Annotation", "[", "]", "value", ",", "P", "param", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "value", ".", "length", ";", "i", "++", ")", "{", "visit", "...
Visits each array element. @param name member name, or null if array member @param pos position of member in list or array @param value Annotation array visited @param param custom parameter @return custom result, null by default
[ "Visits", "each", "array", "element", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/AnnotationVisitor.java#L329-L334
41,912
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/security/AllowedTag.java
AllowedTag.doStartTag
@Override public int doStartTag() throws JspException { // Retrieve the action bean and event handler to secure. ActionBean actionBean; if (bean == null) { // Search in page, request, session (if valid) and application scopes, in that order. actionBean = (ActionBean)pageContext.findAttribute(Stripes...
java
@Override public int doStartTag() throws JspException { // Retrieve the action bean and event handler to secure. ActionBean actionBean; if (bean == null) { // Search in page, request, session (if valid) and application scopes, in that order. actionBean = (ActionBean)pageContext.findAttribute(Stripes...
[ "@", "Override", "public", "int", "doStartTag", "(", ")", "throws", "JspException", "{", "// Retrieve the action bean and event handler to secure.", "ActionBean", "actionBean", ";", "if", "(", "bean", "==", "null", ")", "{", "// Search in page, request, session (if valid) a...
Determine if the body should be evaluated or not. @return EVAL_BODY_INCLUDE if the body should be included, or SKIP_BODY @throws JspException when the tag cannot (decide if to) write the body content
[ "Determine", "if", "the", "body", "should", "be", "evaluated", "or", "not", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/security/AllowedTag.java#L89-L162
41,913
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/session/RemoveFieldRunnable.java
RemoveFieldRunnable.run
public void run() { if (maxTime < 0) { return; } long timeMillis = (long)maxTime * 60 * 1000; endTime = new Date((new Date()).getTime() + timeMillis); while (!cancel && endTime.after(new Date())) { try { Thread.sleep(1000); ...
java
public void run() { if (maxTime < 0) { return; } long timeMillis = (long)maxTime * 60 * 1000; endTime = new Date((new Date()).getTime() + timeMillis); while (!cancel && endTime.after(new Date())) { try { Thread.sleep(1000); ...
[ "public", "void", "run", "(", ")", "{", "if", "(", "maxTime", "<", "0", ")", "{", "return", ";", "}", "long", "timeMillis", "=", "(", "long", ")", "maxTime", "*", "60", "*", "1000", ";", "endTime", "=", "new", "Date", "(", "(", "new", "Date", "...
Remove field from session after maxTime is elapsed.
[ "Remove", "field", "from", "session", "after", "maxTime", "is", "elapsed", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/session/RemoveFieldRunnable.java#L42-L59
41,914
cojen/Cojen
src/main/java/org/cojen/classfile/InstructionList.java
InstructionList.getInstructions
public Collection<Instruction> getInstructions() { return new AbstractCollection<Instruction>() { public Iterator<Instruction> iterator() { return new Iterator<Instruction>() { private Instruction mNext = mFirst; public boolean hasNext() { ...
java
public Collection<Instruction> getInstructions() { return new AbstractCollection<Instruction>() { public Iterator<Instruction> iterator() { return new Iterator<Instruction>() { private Instruction mNext = mFirst; public boolean hasNext() { ...
[ "public", "Collection", "<", "Instruction", ">", "getInstructions", "(", ")", "{", "return", "new", "AbstractCollection", "<", "Instruction", ">", "(", ")", "{", "public", "Iterator", "<", "Instruction", ">", "iterator", "(", ")", "{", "return", "new", "Iter...
Returns an immutable collection of all the instructions in this InstructionList.
[ "Returns", "an", "immutable", "collection", "of", "all", "the", "instructions", "in", "this", "InstructionList", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/InstructionList.java#L101-L135
41,915
cojen/Cojen
src/main/java/org/cojen/classfile/InstructionList.java
InstructionList.createLocalParameter
public LocalVariable createLocalParameter(String name, TypeDesc type) { LocalVariable var = new LocalVariableImpl (mLocalVariables.size(), name, type, mNextFixedVariableNumber); mLocalVariables.add(var); mNextFixedVariableNumber += type.isDoubleWord() ? 2 : 1; return var; ...
java
public LocalVariable createLocalParameter(String name, TypeDesc type) { LocalVariable var = new LocalVariableImpl (mLocalVariables.size(), name, type, mNextFixedVariableNumber); mLocalVariables.add(var); mNextFixedVariableNumber += type.isDoubleWord() ? 2 : 1; return var; ...
[ "public", "LocalVariable", "createLocalParameter", "(", "String", "name", ",", "TypeDesc", "type", ")", "{", "LocalVariable", "var", "=", "new", "LocalVariableImpl", "(", "mLocalVariables", ".", "size", "(", ")", ",", "name", ",", "type", ",", "mNextFixedVariabl...
All parameters must be defined before adding instructions.
[ "All", "parameters", "must", "be", "defined", "before", "adding", "instructions", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/InstructionList.java#L172-L178
41,916
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/localization/AbstractBundleInterceptor.java
AbstractBundleInterceptor.intercept
public Resolution intercept(ExecutionContext context) throws Exception { HttpServletRequest request = context.getActionBeanContext().getRequest(); if (resourceBundleFactory != null) { ResourceBundle bundle = resourceBundleFactory.getDefaultBundle(request.getLocale()); setMessageResourceBundle(request, ...
java
public Resolution intercept(ExecutionContext context) throws Exception { HttpServletRequest request = context.getActionBeanContext().getRequest(); if (resourceBundleFactory != null) { ResourceBundle bundle = resourceBundleFactory.getDefaultBundle(request.getLocale()); setMessageResourceBundle(request, ...
[ "public", "Resolution", "intercept", "(", "ExecutionContext", "context", ")", "throws", "Exception", "{", "HttpServletRequest", "request", "=", "context", ".", "getActionBeanContext", "(", ")", ".", "getRequest", "(", ")", ";", "if", "(", "resourceBundleFactory", ...
Invoked when intercepting the flow of execution. @param context the ExecutionContext of the request currently being processed @return the result of calling context.proceed(), or if the interceptor wishes to change the flow of execution, a Resolution @throws Exception if any non-recoverable errors occur
[ "Invoked", "when", "intercepting", "the", "flow", "of", "execution", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/localization/AbstractBundleInterceptor.java#L146-L160
41,917
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/security/SecurityInterceptor.java
SecurityInterceptor.intercept
public Resolution intercept(ExecutionContext executionContext) throws Exception { Resolution resolution; if (securityManager != null) { // Add the security manager to the request. // This is used (for example) by the security tag. executionContext.getActionBeanContext().getRequest().setAttribute(Sec...
java
public Resolution intercept(ExecutionContext executionContext) throws Exception { Resolution resolution; if (securityManager != null) { // Add the security manager to the request. // This is used (for example) by the security tag. executionContext.getActionBeanContext().getRequest().setAttribute(Sec...
[ "public", "Resolution", "intercept", "(", "ExecutionContext", "executionContext", ")", "throws", "Exception", "{", "Resolution", "resolution", ";", "if", "(", "securityManager", "!=", "null", ")", "{", "// Add the security manager to the request.", "// This is used (for exa...
Intercept execution. @param executionContext the context of the execution being intercepted @return the resulting {@link Resolution}; returns {@link ExecutionContext#proceed()} if all is well @throws Exception on error
[ "Intercept", "execution", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/security/SecurityInterceptor.java#L112-L149
41,918
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/security/SecurityInterceptor.java
SecurityInterceptor.interceptEventHandling
protected Resolution interceptEventHandling(ExecutionContext executionContext) throws Exception { // Before handling the event, check if access is allowed. // If not explicitly allowed, access is denied. Resolution resolution; if (Boolean.TRUE.equals(getAccessAllowed(executionContext))) { resolution ...
java
protected Resolution interceptEventHandling(ExecutionContext executionContext) throws Exception { // Before handling the event, check if access is allowed. // If not explicitly allowed, access is denied. Resolution resolution; if (Boolean.TRUE.equals(getAccessAllowed(executionContext))) { resolution ...
[ "protected", "Resolution", "interceptEventHandling", "(", "ExecutionContext", "executionContext", ")", "throws", "Exception", "{", "// Before handling the event, check if access is allowed.", "// If not explicitly allowed, access is denied.", "Resolution", "resolution", ";", "if", "(...
Intercept execution for event handling. Checks if the security manager allows access before allowing the event. @param executionContext the context of the execution being intercepted @return the resulting {@link net.sourceforge.stripes.action.Resolution}; returns {@link ExecutionContext#proceed()} if all is well @thro...
[ "Intercept", "execution", "for", "event", "handling", ".", "Checks", "if", "the", "security", "manager", "allows", "access", "before", "allowing", "the", "event", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/security/SecurityInterceptor.java#L191-L210
41,919
cojen/Cojen
src/main/java/org/cojen/classfile/TypeDesc.java
TypeDesc.forDescriptor
public static TypeDesc forDescriptor(final String desc) throws IllegalArgumentException { TypeDesc type = cDescriptorsToInstances.get(desc); if (type != null) { return type; } // TODO: Support generics in descriptor. String rootDesc = desc; int cursor = 0; ...
java
public static TypeDesc forDescriptor(final String desc) throws IllegalArgumentException { TypeDesc type = cDescriptorsToInstances.get(desc); if (type != null) { return type; } // TODO: Support generics in descriptor. String rootDesc = desc; int cursor = 0; ...
[ "public", "static", "TypeDesc", "forDescriptor", "(", "final", "String", "desc", ")", "throws", "IllegalArgumentException", "{", "TypeDesc", "type", "=", "cDescriptorsToInstances", ".", "get", "(", "desc", ")", ";", "if", "(", "type", "!=", "null", ")", "{", ...
Acquire a TypeDesc from a type descriptor.
[ "Acquire", "a", "TypeDesc", "from", "a", "type", "descriptor", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/TypeDesc.java#L277-L355
41,920
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/session/SessionMapper.java
SessionMapper.valueUnbound
public void valueUnbound(HttpSessionBindingEvent event) { for (SessionFieldMapper fieldMapper : this.values()) { if (fieldMapper.runnable != null) fieldMapper.runnable.cancel(); } }
java
public void valueUnbound(HttpSessionBindingEvent event) { for (SessionFieldMapper fieldMapper : this.values()) { if (fieldMapper.runnable != null) fieldMapper.runnable.cancel(); } }
[ "public", "void", "valueUnbound", "(", "HttpSessionBindingEvent", "event", ")", "{", "for", "(", "SessionFieldMapper", "fieldMapper", ":", "this", ".", "values", "(", ")", ")", "{", "if", "(", "fieldMapper", ".", "runnable", "!=", "null", ")", "fieldMapper", ...
Cancel all threads from field mappers.
[ "Cancel", "all", "threads", "from", "field", "mappers", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/session/SessionMapper.java#L23-L27
41,921
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/session/SessionMapper.java
SessionMapper.sessionWillPassivate
public void sessionWillPassivate(HttpSessionEvent event) { for (Entry<String, SessionFieldMapper> entry : this.entrySet()) { if (!entry.getValue().serializable) { event.getSession().removeAttribute(entry.getKey()); } } }
java
public void sessionWillPassivate(HttpSessionEvent event) { for (Entry<String, SessionFieldMapper> entry : this.entrySet()) { if (!entry.getValue().serializable) { event.getSession().removeAttribute(entry.getKey()); } } }
[ "public", "void", "sessionWillPassivate", "(", "HttpSessionEvent", "event", ")", "{", "for", "(", "Entry", "<", "String", ",", "SessionFieldMapper", ">", "entry", ":", "this", ".", "entrySet", "(", ")", ")", "{", "if", "(", "!", "entry", ".", "getValue", ...
Remove all non-serializable fields from session.
[ "Remove", "all", "non", "-", "serializable", "fields", "from", "session", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/session/SessionMapper.java#L35-L41
41,922
cojen/Cojen
src/main/java/org/cojen/util/ReferencedValueHashMap.java
ReferencedValueHashMap.cleanup
private void cleanup() { Entry<K, V>[] tab = this.table; for (int i = tab.length ; i-- > 0 ;) { for (Entry<K, V> e = tab[i], prev = null; e != null; e = e.next) { if (e.get() == null) { // Clean up after a cleared Reference. this.modCo...
java
private void cleanup() { Entry<K, V>[] tab = this.table; for (int i = tab.length ; i-- > 0 ;) { for (Entry<K, V> e = tab[i], prev = null; e != null; e = e.next) { if (e.get() == null) { // Clean up after a cleared Reference. this.modCo...
[ "private", "void", "cleanup", "(", ")", "{", "Entry", "<", "K", ",", "V", ">", "[", "]", "tab", "=", "this", ".", "table", ";", "for", "(", "int", "i", "=", "tab", ".", "length", ";", "i", "--", ">", "0", ";", ")", "{", "for", "(", "Entry",...
Scans the contents of this map, removing all entries that have a cleared soft value.
[ "Scans", "the", "contents", "of", "this", "map", "removing", "all", "entries", "that", "have", "a", "cleared", "soft", "value", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/ReferencedValueHashMap.java#L257-L276
41,923
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/localization/GenericBundleInterceptor.java
GenericBundleInterceptor.setMessageResourceBundle
@Override protected void setMessageResourceBundle(HttpServletRequest request, ResourceBundle bundle) { request.setAttribute(REQ_ATTR_MESSAGE_RESOURCE_BUNDLE, bundle); }
java
@Override protected void setMessageResourceBundle(HttpServletRequest request, ResourceBundle bundle) { request.setAttribute(REQ_ATTR_MESSAGE_RESOURCE_BUNDLE, bundle); }
[ "@", "Override", "protected", "void", "setMessageResourceBundle", "(", "HttpServletRequest", "request", ",", "ResourceBundle", "bundle", ")", "{", "request", ".", "setAttribute", "(", "REQ_ATTR_MESSAGE_RESOURCE_BUNDLE", ",", "bundle", ")", ";", "}" ]
Puts the resource bundle as a request-scope attribute.
[ "Puts", "the", "resource", "bundle", "as", "a", "request", "-", "scope", "attribute", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/localization/GenericBundleInterceptor.java#L26-L29
41,924
Faylixe/googlecodejam-client
src/main/java/fr/faylixe/googlecodejam/client/webservice/Problem.java
Problem.getProblemInputs
public List<ProblemInput> getProblemInputs() { return (inputs == null ? Collections.emptyList() : Arrays.asList(inputs)); }
java
public List<ProblemInput> getProblemInputs() { return (inputs == null ? Collections.emptyList() : Arrays.asList(inputs)); }
[ "public", "List", "<", "ProblemInput", ">", "getProblemInputs", "(", ")", "{", "return", "(", "inputs", "==", "null", "?", "Collections", ".", "emptyList", "(", ")", ":", "Arrays", ".", "asList", "(", "inputs", ")", ")", ";", "}" ]
Getter for the problem inputs. @return List of inputs that are available for solving in this problem. @see #inputs
[ "Getter", "for", "the", "problem", "inputs", "." ]
84a5fed4e049dca48994dc3f70213976aaff4bd3
https://github.com/Faylixe/googlecodejam-client/blob/84a5fed4e049dca48994dc3f70213976aaff4bd3/src/main/java/fr/faylixe/googlecodejam/client/webservice/Problem.java#L211-L213
41,925
Faylixe/googlecodejam-client
src/main/java/fr/faylixe/googlecodejam/client/webservice/Problem.java
Problem.getProblemInput
public ProblemInput getProblemInput(final int index) { final List<ProblemInput> inputs = getProblemInputs(); if (index < 0 || inputs.size() <= index) { throw new ArrayIndexOutOfBoundsException(); } return inputs.get(index); }
java
public ProblemInput getProblemInput(final int index) { final List<ProblemInput> inputs = getProblemInputs(); if (index < 0 || inputs.size() <= index) { throw new ArrayIndexOutOfBoundsException(); } return inputs.get(index); }
[ "public", "ProblemInput", "getProblemInput", "(", "final", "int", "index", ")", "{", "final", "List", "<", "ProblemInput", ">", "inputs", "=", "getProblemInputs", "(", ")", ";", "if", "(", "index", "<", "0", "||", "inputs", ".", "size", "(", ")", "<=", ...
Shortcut method for reducing law of Demeters issues. @param index Index of the problem input to retrieve. @return Problem input instance required. @throws ArrayIndexOutOfBoundsException If the given index is not valid.
[ "Shortcut", "method", "for", "reducing", "law", "of", "Demeters", "issues", "." ]
84a5fed4e049dca48994dc3f70213976aaff4bd3
https://github.com/Faylixe/googlecodejam-client/blob/84a5fed4e049dca48994dc3f70213976aaff4bd3/src/main/java/fr/faylixe/googlecodejam/client/webservice/Problem.java#L222-L228
41,926
Faylixe/googlecodejam-client
src/main/java/fr/faylixe/googlecodejam/client/webservice/Problem.java
Problem.readObject
private void readObject(final ObjectInputStream stream) throws OptionalDataException, ClassNotFoundException, IOException { stream.registerValidation(this, 0); stream.defaultReadObject(); }
java
private void readObject(final ObjectInputStream stream) throws OptionalDataException, ClassNotFoundException, IOException { stream.registerValidation(this, 0); stream.defaultReadObject(); }
[ "private", "void", "readObject", "(", "final", "ObjectInputStream", "stream", ")", "throws", "OptionalDataException", ",", "ClassNotFoundException", ",", "IOException", "{", "stream", ".", "registerValidation", "(", "this", ",", "0", ")", ";", "stream", ".", "defa...
Custom readObject method that registers this object as a deserialization validator. @param stream {@link ObjectInputStream} to register this validator to. @throws OptionalDataException If any error occurs while reading the object. @throws ClassNotFoundException If the default readObject call can not find a required cl...
[ "Custom", "readObject", "method", "that", "registers", "this", "object", "as", "a", "deserialization", "validator", "." ]
84a5fed4e049dca48994dc3f70213976aaff4bd3
https://github.com/Faylixe/googlecodejam-client/blob/84a5fed4e049dca48994dc3f70213976aaff4bd3/src/main/java/fr/faylixe/googlecodejam/client/webservice/Problem.java#L263-L266
41,927
cojen/Cojen
src/main/java/org/cojen/classfile/Opcode.java
Opcode.canThrowException
public final static boolean canThrowException(byte opcode) { switch (opcode) { default: return false; case IALOAD: case LALOAD: case FALOAD: case DALOAD: case AALOAD: case BALOAD: case CALOAD: case SALOAD: case IASTORE: ...
java
public final static boolean canThrowException(byte opcode) { switch (opcode) { default: return false; case IALOAD: case LALOAD: case FALOAD: case DALOAD: case AALOAD: case BALOAD: case CALOAD: case SALOAD: case IASTORE: ...
[ "public", "final", "static", "boolean", "canThrowException", "(", "byte", "opcode", ")", "{", "switch", "(", "opcode", ")", "{", "default", ":", "return", "false", ";", "case", "IALOAD", ":", "case", "LALOAD", ":", "case", "FALOAD", ":", "case", "DALOAD", ...
Returns true if the given opcode can throw an exception at runtime.
[ "Returns", "true", "if", "the", "given", "opcode", "can", "throw", "an", "exception", "at", "runtime", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/Opcode.java#L296-L336
41,928
cojen/Cojen
src/main/java/org/cojen/util/BeanIntrospector.java
BeanIntrospector.getAllProperties
public static Map<String, BeanProperty> getAllProperties(Class clazz) { synchronized (cPropertiesCache) { Map<String, BeanProperty> properties; SoftReference<Map<String, BeanProperty>> ref = cPropertiesCache.get(clazz); if (ref != null) { properties = ref.get(...
java
public static Map<String, BeanProperty> getAllProperties(Class clazz) { synchronized (cPropertiesCache) { Map<String, BeanProperty> properties; SoftReference<Map<String, BeanProperty>> ref = cPropertiesCache.get(clazz); if (ref != null) { properties = ref.get(...
[ "public", "static", "Map", "<", "String", ",", "BeanProperty", ">", "getAllProperties", "(", "Class", "clazz", ")", "{", "synchronized", "(", "cPropertiesCache", ")", "{", "Map", "<", "String", ",", "BeanProperty", ">", "properties", ";", "SoftReference", "<",...
Returns a Map of all the available properties on a given class including write-only and indexed properties. @return Map<String, BeanProperty> an unmodifiable mapping of property names (Strings) to BeanProperty objects.
[ "Returns", "a", "Map", "of", "all", "the", "available", "properties", "on", "a", "given", "class", "including", "write", "-", "only", "and", "indexed", "properties", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/BeanIntrospector.java#L51-L65
41,929
cojen/Cojen
src/main/java/org/cojen/util/BeanIntrospector.java
BeanIntrospector.extractPropertyName
private static String extractPropertyName(Method method, String prefix) { String name = method.getName(); if (!name.startsWith(prefix)) { return null; } if (name.length() == prefix.length()) { return ""; } name = name.substring(prefix.length()); ...
java
private static String extractPropertyName(Method method, String prefix) { String name = method.getName(); if (!name.startsWith(prefix)) { return null; } if (name.length() == prefix.length()) { return ""; } name = name.substring(prefix.length()); ...
[ "private", "static", "String", "extractPropertyName", "(", "Method", "method", ",", "String", "prefix", ")", "{", "String", "name", "=", "method", ".", "getName", "(", ")", ";", "if", "(", "!", "name", ".", "startsWith", "(", "prefix", ")", ")", "{", "...
Returns null if prefix pattern doesn't match
[ "Returns", "null", "if", "prefix", "pattern", "doesn", "t", "match" ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/BeanIntrospector.java#L244-L267
41,930
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java
SessionStoreInterceptor.saveFields
protected void saveFields(Collection<Field> fields, ActionBean actionBean, HttpSession session) throws IllegalAccessException { for (Field field : fields) { if (!field.isAccessible()) { field.setAccessible(true); } setAttribute(session, getFieldKey(field,...
java
protected void saveFields(Collection<Field> fields, ActionBean actionBean, HttpSession session) throws IllegalAccessException { for (Field field : fields) { if (!field.isAccessible()) { field.setAccessible(true); } setAttribute(session, getFieldKey(field,...
[ "protected", "void", "saveFields", "(", "Collection", "<", "Field", ">", "fields", ",", "ActionBean", "actionBean", ",", "HttpSession", "session", ")", "throws", "IllegalAccessException", "{", "for", "(", "Field", "field", ":", "fields", ")", "{", "if", "(", ...
Saves all fields in session. @param fields Fields to save in session. @param actionBean ActionBean. @param session HttpSession. @throws IllegalAccessException Cannot get access to some fields.
[ "Saves", "all", "fields", "in", "session", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java#L76-L83
41,931
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java
SessionStoreInterceptor.restoreFields
protected void restoreFields(Collection<Field> fields, ActionBean actionBean, ActionBeanContext context) throws IllegalAccessException { HttpSession session = context.getRequest().getSession(false); if (session != null) { Set<String> parameters = this.getParameters(context.getRequest()); ...
java
protected void restoreFields(Collection<Field> fields, ActionBean actionBean, ActionBeanContext context) throws IllegalAccessException { HttpSession session = context.getRequest().getSession(false); if (session != null) { Set<String> parameters = this.getParameters(context.getRequest()); ...
[ "protected", "void", "restoreFields", "(", "Collection", "<", "Field", ">", "fields", ",", "ActionBean", "actionBean", ",", "ActionBeanContext", "context", ")", "throws", "IllegalAccessException", "{", "HttpSession", "session", "=", "context", ".", "getRequest", "("...
Restore all fields from value stored in session except if they. @param fields Fields to restore from session. @param actionBean ActionBean. @param context ActionBeanContext. @throws IllegalAccessException Cannot get access to some fields.
[ "Restore", "all", "fields", "from", "value", "stored", "in", "session", "except", "if", "they", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java#L91-L109
41,932
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java
SessionStoreInterceptor.getParameters
protected Set<String> getParameters(HttpServletRequest request) { Set<String> parameters = new HashSet<String>(); Enumeration<?> paramNames = request.getParameterNames(); while (paramNames.hasMoreElements()) { String parameter = (String) paramNames.nextElement(); // ...
java
protected Set<String> getParameters(HttpServletRequest request) { Set<String> parameters = new HashSet<String>(); Enumeration<?> paramNames = request.getParameterNames(); while (paramNames.hasMoreElements()) { String parameter = (String) paramNames.nextElement(); // ...
[ "protected", "Set", "<", "String", ">", "getParameters", "(", "HttpServletRequest", "request", ")", "{", "Set", "<", "String", ">", "parameters", "=", "new", "HashSet", "<", "String", ">", "(", ")", ";", "Enumeration", "<", "?", ">", "paramNames", "=", "...
Returns all property that stripes will replace for request. @param request Request. @return All property that stripes will replace for request.
[ "Returns", "all", "property", "that", "stripes", "will", "replace", "for", "request", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java#L115-L132
41,933
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java
SessionStoreInterceptor.getFieldKey
protected String getFieldKey(Field field, Class<? extends ActionBean> actionBeanClass) { // Use key attribute if it is defined. String sessionKey = ((Session)field.getAnnotation(Session.class)).key(); if (sessionKey != null && !"".equals(sessionKey)) { return sessionKey; ...
java
protected String getFieldKey(Field field, Class<? extends ActionBean> actionBeanClass) { // Use key attribute if it is defined. String sessionKey = ((Session)field.getAnnotation(Session.class)).key(); if (sessionKey != null && !"".equals(sessionKey)) { return sessionKey; ...
[ "protected", "String", "getFieldKey", "(", "Field", "field", ",", "Class", "<", "?", "extends", "ActionBean", ">", "actionBeanClass", ")", "{", "// Use key attribute if it is defined.\r", "String", "sessionKey", "=", "(", "(", "Session", ")", "field", ".", "getAnn...
Returns session key under which field should be saved or read. @param field Field. @param actionBeanClass Action bean class. @return Session key under which field should be saved or read.
[ "Returns", "session", "key", "under", "which", "field", "should", "be", "saved", "or", "read", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java#L139-L149
41,934
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java
SessionStoreInterceptor.getSessionFields
protected Collection<Field> getSessionFields(Class<?> clazz) { Collection<Field> fields = fieldMap.get(clazz); if (fields == null) { fields = ReflectUtil.getFields(clazz); Iterator<Field> iterator = fields.iterator(); while (iterator.hasNext()) { ...
java
protected Collection<Field> getSessionFields(Class<?> clazz) { Collection<Field> fields = fieldMap.get(clazz); if (fields == null) { fields = ReflectUtil.getFields(clazz); Iterator<Field> iterator = fields.iterator(); while (iterator.hasNext()) { ...
[ "protected", "Collection", "<", "Field", ">", "getSessionFields", "(", "Class", "<", "?", ">", "clazz", ")", "{", "Collection", "<", "Field", ">", "fields", "=", "fieldMap", ".", "get", "(", "clazz", ")", ";", "if", "(", "fields", "==", "null", ")", ...
Returns all fields with Session annotation for a class. @param clazz Class. @return All fields with Session annotation for a class.
[ "Returns", "all", "fields", "with", "Session", "annotation", "for", "a", "class", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java#L155-L169
41,935
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java
SessionStoreInterceptor.getAttribute
@Deprecated public static Object getAttribute(HttpSession session, String key) { return session.getAttribute(key); }
java
@Deprecated public static Object getAttribute(HttpSession session, String key) { return session.getAttribute(key); }
[ "@", "Deprecated", "public", "static", "Object", "getAttribute", "(", "HttpSession", "session", ",", "String", "key", ")", "{", "return", "session", ".", "getAttribute", "(", "key", ")", ";", "}" ]
Returns an object in session. @param session session. @param key Key under which object is saved. @return Object. @deprecated Use {@link HttpSession#getAttribute(String)} instead.
[ "Returns", "an", "object", "in", "session", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java#L179-L182
41,936
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java
SessionStoreInterceptor.setAttribute
protected Object setAttribute(HttpSession session, String key, Object object, boolean serializable, int maxTime) { if (object == null) { // If object is null, remove attribute. Object ret; synchronized (session) { ret = session.getAttribute(key); ...
java
protected Object setAttribute(HttpSession session, String key, Object object, boolean serializable, int maxTime) { if (object == null) { // If object is null, remove attribute. Object ret; synchronized (session) { ret = session.getAttribute(key); ...
[ "protected", "Object", "setAttribute", "(", "HttpSession", "session", ",", "String", "key", ",", "Object", "object", ",", "boolean", "serializable", ",", "int", "maxTime", ")", "{", "if", "(", "object", "==", "null", ")", "{", "// If object is null, remove attri...
Saves an object in session for latter use. @param session Session in which to store object. @param key Key under which object is saved. @param object Object to save. @param serializable True if object is serializable. @param maxTime Maximum time to keep object in session. @return Object previously saved under key.
[ "Saves", "an", "object", "in", "session", "for", "latter", "use", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/session/SessionStoreInterceptor.java#L192-L236
41,937
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/jstl/JstlBundleInterceptor.java
JstlBundleInterceptor.setMessageResourceBundle
@Override protected void setMessageResourceBundle(HttpServletRequest request, ResourceBundle bundle) { Config.set(request, Config.FMT_LOCALIZATION_CONTEXT, new LocalizationContext(bundle, request.getLocale())); LOGGER.debug("Enabled JSTL localization using: ", bundle); LOGGER.debug("Loaded resour...
java
@Override protected void setMessageResourceBundle(HttpServletRequest request, ResourceBundle bundle) { Config.set(request, Config.FMT_LOCALIZATION_CONTEXT, new LocalizationContext(bundle, request.getLocale())); LOGGER.debug("Enabled JSTL localization using: ", bundle); LOGGER.debug("Loaded resour...
[ "@", "Override", "protected", "void", "setMessageResourceBundle", "(", "HttpServletRequest", "request", ",", "ResourceBundle", "bundle", ")", "{", "Config", ".", "set", "(", "request", ",", "Config", ".", "FMT_LOCALIZATION_CONTEXT", ",", "new", "LocalizationContext", ...
Sets the message resource bundle in the request using the JSTL's mechanism.
[ "Sets", "the", "message", "resource", "bundle", "in", "the", "request", "using", "the", "JSTL", "s", "mechanism", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/jstl/JstlBundleInterceptor.java#L104-L110
41,938
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/jstl/JstlBundleInterceptor.java
JstlBundleInterceptor.setOtherResourceBundles
@Override protected void setOtherResourceBundles(HttpServletRequest request) { Locale locale = request.getLocale(); if (errorBundleName != null) { ResourceBundle errorBundle = getLocalizationBundleFactory().getErrorMessageBundle(locale); Config.set(request, errorBundleName, ...
java
@Override protected void setOtherResourceBundles(HttpServletRequest request) { Locale locale = request.getLocale(); if (errorBundleName != null) { ResourceBundle errorBundle = getLocalizationBundleFactory().getErrorMessageBundle(locale); Config.set(request, errorBundleName, ...
[ "@", "Override", "protected", "void", "setOtherResourceBundles", "(", "HttpServletRequest", "request", ")", "{", "Locale", "locale", "=", "request", ".", "getLocale", "(", ")", ";", "if", "(", "errorBundleName", "!=", "null", ")", "{", "ResourceBundle", "errorBu...
Sets the Stripes error and field resource bundles in the request, if their names have been configured.
[ "Sets", "the", "Stripes", "error", "and", "field", "resource", "bundles", "in", "the", "request", "if", "their", "names", "have", "been", "configured", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/jstl/JstlBundleInterceptor.java#L115-L133
41,939
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/security/InstanceBasedSecurityManager.java
InstanceBasedSecurityManager.evaluateRoleExpression
private Object evaluateRoleExpression(ActionBean bean, String expression) { try { LOG.debug("Evaluating expression: '" + expression + '\''); // This is somewhat of a hack until the ExpressionEvaluator becomes more accessible. ParameterName name = new ParameterName("security"); List<Object> values = ne...
java
private Object evaluateRoleExpression(ActionBean bean, String expression) { try { LOG.debug("Evaluating expression: '" + expression + '\''); // This is somewhat of a hack until the ExpressionEvaluator becomes more accessible. ParameterName name = new ParameterName("security"); List<Object> values = ne...
[ "private", "Object", "evaluateRoleExpression", "(", "ActionBean", "bean", ",", "String", "expression", ")", "{", "try", "{", "LOG", ".", "debug", "(", "\"Evaluating expression: '\"", "+", "expression", "+", "'", "'", ")", ";", "// This is somewhat of a hack until th...
Evaluate the given EL expression using the current action bean to resolve variables. @param bean the bean to evaluate the expression on @param expression the EL expression to evaluate @return the result of the EL expression
[ "Evaluate", "the", "given", "EL", "expression", "using", "the", "current", "action", "bean", "to", "resolve", "variables", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/security/InstanceBasedSecurityManager.java#L120-L141
41,940
cojen/Cojen
src/main/java/org/cojen/classfile/MethodDesc.java
MethodDesc.forDescriptor
public static MethodDesc forDescriptor(String desc) throws IllegalArgumentException { try { int cursor = 0; char c; if ((c = desc.charAt(cursor++)) != '(') { throw invalidDescriptor(desc); } StringBuffer buf = new StringB...
java
public static MethodDesc forDescriptor(String desc) throws IllegalArgumentException { try { int cursor = 0; char c; if ((c = desc.charAt(cursor++)) != '(') { throw invalidDescriptor(desc); } StringBuffer buf = new StringB...
[ "public", "static", "MethodDesc", "forDescriptor", "(", "String", "desc", ")", "throws", "IllegalArgumentException", "{", "try", "{", "int", "cursor", "=", "0", ";", "char", "c", ";", "if", "(", "(", "c", "=", "desc", ".", "charAt", "(", "cursor", "++", ...
Acquire a MethodDesc from a type descriptor.
[ "Acquire", "a", "MethodDesc", "from", "a", "type", "descriptor", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/MethodDesc.java#L65-L122
41,941
cojen/Cojen
src/main/java/org/cojen/util/BelatedCreator.java
BelatedCreator.get
public synchronized T get(final int timeoutMillis) throws E { if (mReal != null) { return mReal; } if (mBogus != null && mMinRetryDelayMillis < 0) { return mBogus; } if (mCreateThread == null) { mCreateThread = new CreateThread(); ...
java
public synchronized T get(final int timeoutMillis) throws E { if (mReal != null) { return mReal; } if (mBogus != null && mMinRetryDelayMillis < 0) { return mBogus; } if (mCreateThread == null) { mCreateThread = new CreateThread(); ...
[ "public", "synchronized", "T", "get", "(", "final", "int", "timeoutMillis", ")", "throws", "E", "{", "if", "(", "mReal", "!=", "null", ")", "{", "return", "mReal", ";", "}", "if", "(", "mBogus", "!=", "null", "&&", "mMinRetryDelayMillis", "<", "0", ")"...
Returns real or bogus object. If real object is returned, then future invocations of this method return the same real object instance. This method waits for the real object to be created, if it is blocked. If real object creation fails immediately, then this method will not wait, returning a bogus object immediately in...
[ "Returns", "real", "or", "bogus", "object", ".", "If", "real", "object", "is", "returned", "then", "future", "invocations", "of", "this", "method", "return", "the", "same", "real", "object", "instance", ".", "This", "method", "waits", "for", "the", "real", ...
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/BelatedCreator.java#L123-L207
41,942
cojen/Cojen
src/main/java/org/cojen/util/BelatedCreator.java
BelatedCreator.getWrapper
private Constructor<T> getWrapper() { Class<T> clazz; synchronized (cWrapperCache) { clazz = (Class<T>) cWrapperCache.get(mType); if (clazz == null) { clazz = createWrapper(); cWrapperCache.put(mType, clazz); } } try { ...
java
private Constructor<T> getWrapper() { Class<T> clazz; synchronized (cWrapperCache) { clazz = (Class<T>) cWrapperCache.get(mType); if (clazz == null) { clazz = createWrapper(); cWrapperCache.put(mType, clazz); } } try { ...
[ "private", "Constructor", "<", "T", ">", "getWrapper", "(", ")", "{", "Class", "<", "T", ">", "clazz", ";", "synchronized", "(", "cWrapperCache", ")", "{", "clazz", "=", "(", "Class", "<", "T", ">", ")", "cWrapperCache", ".", "get", "(", "mType", ")"...
Returns a Constructor that accepts an AtomicReference to the wrapped object.
[ "Returns", "a", "Constructor", "that", "accepts", "an", "AtomicReference", "to", "the", "wrapped", "object", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/BelatedCreator.java#L281-L297
41,943
cojen/Cojen
src/main/java/org/cojen/classfile/CodeBuilder.java
CodeBuilder.loadLocal
public void loadLocal(LocalVariable local) { if (local == null) { throw new IllegalArgumentException("No local variable specified"); } int stackAdjust = local.getType().isDoubleWord() ? 2 : 1; mInstructions.new LoadLocalInstruction(stackAdjust, local); }
java
public void loadLocal(LocalVariable local) { if (local == null) { throw new IllegalArgumentException("No local variable specified"); } int stackAdjust = local.getType().isDoubleWord() ? 2 : 1; mInstructions.new LoadLocalInstruction(stackAdjust, local); }
[ "public", "void", "loadLocal", "(", "LocalVariable", "local", ")", "{", "if", "(", "local", "==", "null", ")", "{", "throw", "new", "IllegalArgumentException", "(", "\"No local variable specified\"", ")", ";", "}", "int", "stackAdjust", "=", "local", ".", "get...
load-local-to-stack style instructions
[ "load", "-", "local", "-", "to", "-", "stack", "style", "instructions" ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/CodeBuilder.java#L465-L471
41,944
cojen/Cojen
src/main/java/org/cojen/classfile/CodeBuilder.java
CodeBuilder.nullConvert
private void nullConvert(Label end) { LocalVariable temp = createLocalVariable("temp", TypeDesc.OBJECT); storeLocal(temp); loadLocal(temp); Label notNull = createLabel(); ifNullBranch(notNull, false); loadNull(); branch(end); notNull.setLocation(); ...
java
private void nullConvert(Label end) { LocalVariable temp = createLocalVariable("temp", TypeDesc.OBJECT); storeLocal(temp); loadLocal(temp); Label notNull = createLabel(); ifNullBranch(notNull, false); loadNull(); branch(end); notNull.setLocation(); ...
[ "private", "void", "nullConvert", "(", "Label", "end", ")", "{", "LocalVariable", "temp", "=", "createLocalVariable", "(", "\"temp\"", ",", "TypeDesc", ".", "OBJECT", ")", ";", "storeLocal", "(", "temp", ")", ";", "loadLocal", "(", "temp", ")", ";", "Label...
a NullPointerException. Assumes that from type and to type are objects.
[ "a", "NullPointerException", ".", "Assumes", "that", "from", "type", "and", "to", "type", "are", "objects", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/CodeBuilder.java#L1164-L1174
41,945
cojen/Cojen
src/main/java/org/cojen/classfile/CodeBuilder.java
CodeBuilder.invokeVirtual
public void invokeVirtual(String methodName, TypeDesc ret, TypeDesc[] params) { invokeVirtual(mClassFile.getClassName(), methodName, ret, params); }
java
public void invokeVirtual(String methodName, TypeDesc ret, TypeDesc[] params) { invokeVirtual(mClassFile.getClassName(), methodName, ret, params); }
[ "public", "void", "invokeVirtual", "(", "String", "methodName", ",", "TypeDesc", "ret", ",", "TypeDesc", "[", "]", "params", ")", "{", "invokeVirtual", "(", "mClassFile", ".", "getClassName", "(", ")", ",", "methodName", ",", "ret", ",", "params", ")", ";"...
invocation style instructions
[ "invocation", "style", "instructions" ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/CodeBuilder.java#L1186-L1190
41,946
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/waitpage/WaitPageInterceptor.java
WaitPageInterceptor.getContext
private Context getContext(ExecutionContext executionContext) { // Get context id. HttpServletRequest request = executionContext.getActionBeanContext().getRequest(); String parameter = request.getParameter(ID_PARAMETER); // Return context. if (parameter != null) { ...
java
private Context getContext(ExecutionContext executionContext) { // Get context id. HttpServletRequest request = executionContext.getActionBeanContext().getRequest(); String parameter = request.getParameter(ID_PARAMETER); // Return context. if (parameter != null) { ...
[ "private", "Context", "getContext", "(", "ExecutionContext", "executionContext", ")", "{", "// Get context id.", "HttpServletRequest", "request", "=", "executionContext", ".", "getActionBeanContext", "(", ")", ".", "getRequest", "(", ")", ";", "String", "parameter", "...
Returns wait context based on context id found in request. @param executionContext execution context @return wait context
[ "Returns", "wait", "context", "based", "on", "context", "id", "found", "in", "request", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/waitpage/WaitPageInterceptor.java#L183-L195
41,947
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/waitpage/WaitPageInterceptor.java
WaitPageInterceptor.createContextAndRedirect
private Resolution createContextAndRedirect(ExecutionContext executionContext, WaitPage annotation) throws IOException { // Create context used to call the event in background. Context context = this.createContext(executionContext); context.actionBean = executionContext.getActionBean(); ...
java
private Resolution createContextAndRedirect(ExecutionContext executionContext, WaitPage annotation) throws IOException { // Create context used to call the event in background. Context context = this.createContext(executionContext); context.actionBean = executionContext.getActionBean(); ...
[ "private", "Resolution", "createContextAndRedirect", "(", "ExecutionContext", "executionContext", ",", "WaitPage", "annotation", ")", "throws", "IOException", "{", "// Create context used to call the event in background.", "Context", "context", "=", "this", ".", "createContext"...
Create a wait context to execute event in background. @param executionContext execution context @param annotation wait page annotation @return redirect redirect user so that wait page appears @throws IOException could not create background request
[ "Create", "a", "wait", "context", "to", "execute", "event", "in", "background", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/waitpage/WaitPageInterceptor.java#L204-L254
41,948
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/waitpage/WaitPageInterceptor.java
WaitPageInterceptor.checkStatus
private Resolution checkStatus(ExecutionContext executionContext, Context context) throws Exception { // Resolution execution must not be executed while we are checking status. synchronized (context.actionBean) { if (context.status == Context.Status.INIT) { // If a delay was ...
java
private Resolution checkStatus(ExecutionContext executionContext, Context context) throws Exception { // Resolution execution must not be executed while we are checking status. synchronized (context.actionBean) { if (context.status == Context.Status.INIT) { // If a delay was ...
[ "private", "Resolution", "checkStatus", "(", "ExecutionContext", "executionContext", ",", "Context", "context", ")", "throws", "Exception", "{", "// Resolution execution must not be executed while we are checking status.", "synchronized", "(", "context", ".", "actionBean", ")",...
Return wait page resolution or event's resolution depending on completion status. @param executionContext execution context @param context wait context @return wait page resolution or event's resolution depending on completion status @throws Exception exception thrown by event if no error page is specified
[ "Return", "wait", "page", "resolution", "or", "event", "s", "resolution", "depending", "on", "completion", "status", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/waitpage/WaitPageInterceptor.java#L271-L343
41,949
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/waitpage/WaitPageInterceptor.java
WaitPageInterceptor.copyErrors
protected void copyErrors(ActionBeanContext source, ActionBeanContext destination) { destination.getValidationErrors().putAll(source.getValidationErrors()); }
java
protected void copyErrors(ActionBeanContext source, ActionBeanContext destination) { destination.getValidationErrors().putAll(source.getValidationErrors()); }
[ "protected", "void", "copyErrors", "(", "ActionBeanContext", "source", ",", "ActionBeanContext", "destination", ")", "{", "destination", ".", "getValidationErrors", "(", ")", ".", "putAll", "(", "source", ".", "getValidationErrors", "(", ")", ")", ";", "}" ]
Copy errors from a context to another context. @param source source containing errors to copy @param destination where errors will be copied
[ "Copy", "errors", "from", "a", "context", "to", "another", "context", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/waitpage/WaitPageInterceptor.java#L350-L352
41,950
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/waitpage/WaitPageInterceptor.java
WaitPageInterceptor.removeExpired
protected void removeExpired(Map<Integer, Context> contexts) { Iterator<Context> contextsIter = contexts.values().iterator(); while (contextsIter.hasNext()) { Context context = contextsIter.next(); if (context.completeMoment != null && System.currentTimeMillis...
java
protected void removeExpired(Map<Integer, Context> contexts) { Iterator<Context> contextsIter = contexts.values().iterator(); while (contextsIter.hasNext()) { Context context = contextsIter.next(); if (context.completeMoment != null && System.currentTimeMillis...
[ "protected", "void", "removeExpired", "(", "Map", "<", "Integer", ",", "Context", ">", "contexts", ")", "{", "Iterator", "<", "Context", ">", "contextsIter", "=", "contexts", ".", "values", "(", ")", ".", "iterator", "(", ")", ";", "while", "(", "context...
Remove all contexts that are expired. @param contexts all contexts currently in memory
[ "Remove", "all", "contexts", "that", "are", "expired", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/waitpage/WaitPageInterceptor.java#L367-L376
41,951
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/waitpage/WaitPageInterceptor.java
WaitPageInterceptor.init
public void init(Configuration configuration) throws Exception { if (configuration.getBootstrapPropertyResolver().getProperty(CONTEXT_TIMEOUT_NAME) != null) { log.debug("Configuring context timeout with value ", configuration.getBootstrapPropertyResolver().getProperty(CONTEXT_TIMEOUT_NAME)); ...
java
public void init(Configuration configuration) throws Exception { if (configuration.getBootstrapPropertyResolver().getProperty(CONTEXT_TIMEOUT_NAME) != null) { log.debug("Configuring context timeout with value ", configuration.getBootstrapPropertyResolver().getProperty(CONTEXT_TIMEOUT_NAME)); ...
[ "public", "void", "init", "(", "Configuration", "configuration", ")", "throws", "Exception", "{", "if", "(", "configuration", ".", "getBootstrapPropertyResolver", "(", ")", ".", "getProperty", "(", "CONTEXT_TIMEOUT_NAME", ")", "!=", "null", ")", "{", "log", ".",...
Read context timeout, if any.
[ "Read", "context", "timeout", "if", "any", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/waitpage/WaitPageInterceptor.java#L381-L391
41,952
cojen/Cojen
src/main/java/org/cojen/classfile/ClassFile.java
ClassFile.getInnerClasses
public ClassFile[] getInnerClasses() { if (mInnerClasses == null) { return new ClassFile[0]; } return mInnerClasses.toArray(new ClassFile[mInnerClasses.size()]); }
java
public ClassFile[] getInnerClasses() { if (mInnerClasses == null) { return new ClassFile[0]; } return mInnerClasses.toArray(new ClassFile[mInnerClasses.size()]); }
[ "public", "ClassFile", "[", "]", "getInnerClasses", "(", ")", "{", "if", "(", "mInnerClasses", "==", "null", ")", "{", "return", "new", "ClassFile", "[", "0", "]", ";", "}", "return", "mInnerClasses", ".", "toArray", "(", "new", "ClassFile", "[", "mInner...
Returns all the inner classes defined in this class. If no inner classes are defined, then an array of length zero is returned.
[ "Returns", "all", "the", "inner", "classes", "defined", "in", "this", "class", ".", "If", "no", "inner", "classes", "are", "defined", "then", "an", "array", "of", "length", "zero", "is", "returned", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/ClassFile.java#L532-L538
41,953
cojen/Cojen
src/main/java/org/cojen/classfile/ClassFile.java
ClassFile.addMethod
public MethodInfo addMethod(String declaration) { MethodDeclarationParser p = new MethodDeclarationParser(declaration); return addMethod(p.getModifiers(), p.getMethodName(), p.getReturnType(), p.getParameters()); }
java
public MethodInfo addMethod(String declaration) { MethodDeclarationParser p = new MethodDeclarationParser(declaration); return addMethod(p.getModifiers(), p.getMethodName(), p.getReturnType(), p.getParameters()); }
[ "public", "MethodInfo", "addMethod", "(", "String", "declaration", ")", "{", "MethodDeclarationParser", "p", "=", "new", "MethodDeclarationParser", "(", "declaration", ")", ";", "return", "addMethod", "(", "p", ".", "getModifiers", "(", ")", ",", "p", ".", "ge...
Add a method to this class by declaration. @throws IllegalArgumentException if declaration syntax is wrong @see MethodDeclarationParser
[ "Add", "a", "method", "to", "this", "class", "by", "declaration", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/ClassFile.java#L788-L792
41,954
cojen/Cojen
src/main/java/org/cojen/classfile/ClassFile.java
ClassFile.setTarget
public void setTarget(String target) throws IllegalArgumentException { int major, minor; if (target == null || "1.0".equals(target) || "1.1".equals(target)) { major = 45; minor = 3; if (target == null) { target = "1.0"; } } else if ("1.2".equa...
java
public void setTarget(String target) throws IllegalArgumentException { int major, minor; if (target == null || "1.0".equals(target) || "1.1".equals(target)) { major = 45; minor = 3; if (target == null) { target = "1.0"; } } else if ("1.2".equa...
[ "public", "void", "setTarget", "(", "String", "target", ")", "throws", "IllegalArgumentException", "{", "int", "major", ",", "minor", ";", "if", "(", "target", "==", "null", "||", "\"1.0\"", ".", "equals", "(", "target", ")", "||", "\"1.1\"", ".", "equals"...
Specify what target virtual machine version classfile should generate for. Calling this method changes the major and minor version of the classfile format. @param target VM version, 1.0, 1.1, etc. @throws IllegalArgumentException if target is not supported
[ "Specify", "what", "target", "virtual", "machine", "version", "classfile", "should", "generate", "for", ".", "Calling", "this", "method", "changes", "the", "major", "and", "minor", "version", "of", "the", "classfile", "format", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/ClassFile.java#L957-L984
41,955
cojen/Cojen
src/main/java/org/cojen/classfile/ClassFile.java
ClassFile.setVersion
public void setVersion(int major, int minor) { if (major > 65535 || minor > 65535) { throw new IllegalArgumentException("Version number element cannot exceed 65535"); } mVersion = (minor << 16) | (major & 0xffff); String target; switch (major) { default: ...
java
public void setVersion(int major, int minor) { if (major > 65535 || minor > 65535) { throw new IllegalArgumentException("Version number element cannot exceed 65535"); } mVersion = (minor << 16) | (major & 0xffff); String target; switch (major) { default: ...
[ "public", "void", "setVersion", "(", "int", "major", ",", "int", "minor", ")", "{", "if", "(", "major", ">", "65535", "||", "minor", ">", "65535", ")", "{", "throw", "new", "IllegalArgumentException", "(", "\"Version number element cannot exceed 65535\"", ")", ...
Sets the version to use when writing the generated classfile, overriding the target.
[ "Sets", "the", "version", "to", "use", "when", "writing", "the", "generated", "classfile", "overriding", "the", "target", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/ClassFile.java#L997-L1033
41,956
cojen/Cojen
src/main/java/org/cojen/classfile/DisassemblyTool.java
DisassemblyTool.main
public static void main(String[] args) throws Exception { if (args.length == 0) { System.out.println("DisassemblyTool [-f <format style>] <file or class name>"); System.out.println(); System.out.println("The format style may be \"assembly\" (the default) or \"builder\""); ...
java
public static void main(String[] args) throws Exception { if (args.length == 0) { System.out.println("DisassemblyTool [-f <format style>] <file or class name>"); System.out.println(); System.out.println("The format style may be \"assembly\" (the default) or \"builder\""); ...
[ "public", "static", "void", "main", "(", "String", "[", "]", "args", ")", "throws", "Exception", "{", "if", "(", "args", ".", "length", "==", "0", ")", "{", "System", ".", "out", ".", "println", "(", "\"DisassemblyTool [-f <format style>] <file or class name>\...
Disassembles a class file, sending the results to standard out. <pre> DisassemblyTool [-f &lt;format style&gt;] &lt;file or class name&gt; </pre> The format style may be "assembly" (the default) or "builder".
[ "Disassembles", "a", "class", "file", "sending", "the", "results", "to", "standard", "out", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/DisassemblyTool.java#L63-L135
41,957
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/security/J2EESecurityManager.java
J2EESecurityManager.determineAccessOnElement
protected Boolean determineAccessOnElement(ActionBean bean, Method handler, AnnotatedElement element) { // Default decision: none. Boolean allowed = null; if (element.isAnnotationPresent(DenyAll.class)) { // The element denies access. allowed = false; } else if (element.isAnnotationPresent(PermitA...
java
protected Boolean determineAccessOnElement(ActionBean bean, Method handler, AnnotatedElement element) { // Default decision: none. Boolean allowed = null; if (element.isAnnotationPresent(DenyAll.class)) { // The element denies access. allowed = false; } else if (element.isAnnotationPresent(PermitA...
[ "protected", "Boolean", "determineAccessOnElement", "(", "ActionBean", "bean", ",", "Method", "handler", ",", "AnnotatedElement", "element", ")", "{", "// Default decision: none.", "Boolean", "allowed", "=", "null", ";", "if", "(", "element", ".", "isAnnotationPresent...
Decide if the annotated element allows access to the current user. @param bean the action bean; used for security decisions @param handler the event handler; used for security decisions @param element the element to check authorization for @return {@link Boolean#TRUE TRUE} if access is allowed, {@link Boolean#FALSE...
[ "Decide", "if", "the", "annotated", "element", "allows", "access", "to", "the", "current", "user", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/security/J2EESecurityManager.java#L95-L138
41,958
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/jstl/JstlLocalizationBundleFactory.java
JstlLocalizationBundleFactory.init
public void init(Configuration configuration) throws Exception { bundleName = configuration.getServletContext().getInitParameter(Config.FMT_LOCALIZATION_CONTEXT); if (bundleName == null) { throw new StripesRuntimeException("JSTL has no resource bundle configured. Please set the context " + ...
java
public void init(Configuration configuration) throws Exception { bundleName = configuration.getServletContext().getInitParameter(Config.FMT_LOCALIZATION_CONTEXT); if (bundleName == null) { throw new StripesRuntimeException("JSTL has no resource bundle configured. Please set the context " + ...
[ "public", "void", "init", "(", "Configuration", "configuration", ")", "throws", "Exception", "{", "bundleName", "=", "configuration", ".", "getServletContext", "(", ")", ".", "getInitParameter", "(", "Config", ".", "FMT_LOCALIZATION_CONTEXT", ")", ";", "if", "(", ...
Invoked directly after instantiation to allow the configured component to perform one time initialization. Components are expected to fail loudly if they are not going to be in a valid state after initialization. @param configuration the Configuration object being used by Stripes @throws Exception should be thrown if...
[ "Invoked", "directly", "after", "instantiation", "to", "allow", "the", "configured", "component", "to", "perform", "one", "time", "initialization", ".", "Components", "are", "expected", "to", "fail", "loudly", "if", "they", "are", "not", "going", "to", "be", "...
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/jstl/JstlLocalizationBundleFactory.java#L36-L46
41,959
StripesFramework/stripes-stuff
src/main/java/org/stripesstuff/plugin/waitpage/Context.java
Context.run
public void run() { try { // Open connection to URL calling this interceptor. HttpURLConnection connection = (HttpURLConnection) url.openConnection(); // Pass in the session id cookie to maintain the same session. log.trace("passing in cookies: ", cook...
java
public void run() { try { // Open connection to URL calling this interceptor. HttpURLConnection connection = (HttpURLConnection) url.openConnection(); // Pass in the session id cookie to maintain the same session. log.trace("passing in cookies: ", cook...
[ "public", "void", "run", "(", ")", "{", "try", "{", "// Open connection to URL calling this interceptor.", "HttpURLConnection", "connection", "=", "(", "HttpURLConnection", ")", "url", ".", "openConnection", "(", ")", ";", "// Pass in the session id cookie to maintain the s...
Invoke event in a background request.
[ "Invoke", "event", "in", "a", "background", "request", "." ]
51ad92b4bd5862ba34d7c18c5829fb00ea3a3811
https://github.com/StripesFramework/stripes-stuff/blob/51ad92b4bd5862ba34d7c18c5829fb00ea3a3811/src/main/java/org/stripesstuff/plugin/waitpage/Context.java#L99-L122
41,960
cojen/Cojen
src/main/java/org/cojen/classfile/RuntimeClassFile.java
RuntimeClassFile.defineClass
public Class defineClass() { byte[] bytes; try { ByteArrayOutputStream bout = new ByteArrayOutputStream(); writeTo(bout); bytes = bout.toByteArray(); } catch (IOException e) { InternalError ie = new InternalError(e.toString()); ie.initC...
java
public Class defineClass() { byte[] bytes; try { ByteArrayOutputStream bout = new ByteArrayOutputStream(); writeTo(bout); bytes = bout.toByteArray(); } catch (IOException e) { InternalError ie = new InternalError(e.toString()); ie.initC...
[ "public", "Class", "defineClass", "(", ")", "{", "byte", "[", "]", "bytes", ";", "try", "{", "ByteArrayOutputStream", "bout", "=", "new", "ByteArrayOutputStream", "(", ")", ";", "writeTo", "(", "bout", ")", ";", "bytes", "=", "bout", ".", "toByteArray", ...
Finishes the class definition.
[ "Finishes", "the", "class", "definition", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/RuntimeClassFile.java#L140-L171
41,961
cojen/Cojen
src/main/java/org/cojen/util/BeanPropertyAccessor.java
BeanPropertyAccessor.hashCapacity
private static int hashCapacity(int min) { BigInteger capacity = BigInteger.valueOf(min * 2 + 1); while (!capacity.isProbablePrime(10)) { capacity = capacity.add(BigInteger.valueOf(2)); } return capacity.intValue(); }
java
private static int hashCapacity(int min) { BigInteger capacity = BigInteger.valueOf(min * 2 + 1); while (!capacity.isProbablePrime(10)) { capacity = capacity.add(BigInteger.valueOf(2)); } return capacity.intValue(); }
[ "private", "static", "int", "hashCapacity", "(", "int", "min", ")", "{", "BigInteger", "capacity", "=", "BigInteger", ".", "valueOf", "(", "min", "*", "2", "+", "1", ")", ";", "while", "(", "!", "capacity", ".", "isProbablePrime", "(", "10", ")", ")", ...
Returns a prime number, at least twice as large as needed. This should minimize hash collisions. Since all the hash keys are known up front, the capacity could be tweaked until there are no collisions, but this technique is easier and deterministic.
[ "Returns", "a", "prime", "number", "at", "least", "twice", "as", "large", "as", "needed", ".", "This", "should", "minimize", "hash", "collisions", ".", "Since", "all", "the", "hash", "keys", "are", "known", "up", "front", "the", "capacity", "could", "be", ...
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/BeanPropertyAccessor.java#L357-L363
41,962
cojen/Cojen
src/main/java/org/cojen/util/BeanPropertyAccessor.java
BeanPropertyAccessor.caseMethods
private static List[] caseMethods(int caseCount, BeanProperty[] props) { List[] cases = new List[caseCount]; for (int i=0; i<props.length; i++) { BeanProperty prop = props[i]; int hashCode = prop.getName().hashCode(); int caseVal...
java
private static List[] caseMethods(int caseCount, BeanProperty[] props) { List[] cases = new List[caseCount]; for (int i=0; i<props.length; i++) { BeanProperty prop = props[i]; int hashCode = prop.getName().hashCode(); int caseVal...
[ "private", "static", "List", "[", "]", "caseMethods", "(", "int", "caseCount", ",", "BeanProperty", "[", "]", "props", ")", "{", "List", "[", "]", "cases", "=", "new", "List", "[", "caseCount", "]", ";", "for", "(", "int", "i", "=", "0", ";", "i", ...
Returns an array of Lists of BeanProperties. The first index matches a switch case, the second index provides a list of all the BeanProperties whose name hash matched on the case.
[ "Returns", "an", "array", "of", "Lists", "of", "BeanProperties", ".", "The", "first", "index", "matches", "a", "switch", "case", "the", "second", "index", "provides", "a", "list", "of", "all", "the", "BeanProperties", "whose", "name", "hash", "matched", "on"...
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/BeanPropertyAccessor.java#L370-L386
41,963
cojen/Cojen
src/main/java/org/cojen/util/BeanPropertyAccessor.java
BeanPropertyAccessor.getBeanProperties
private static BeanProperty[][] getBeanProperties(Class beanType, PropertySet set) { List readProperties = new ArrayList(); List writeProperties = new ArrayList(); Map map = BeanIntrospector.getAllProperties(beanType); Iterator it = map.values().iterator(); while (it.hasNext())...
java
private static BeanProperty[][] getBeanProperties(Class beanType, PropertySet set) { List readProperties = new ArrayList(); List writeProperties = new ArrayList(); Map map = BeanIntrospector.getAllProperties(beanType); Iterator it = map.values().iterator(); while (it.hasNext())...
[ "private", "static", "BeanProperty", "[", "]", "[", "]", "getBeanProperties", "(", "Class", "beanType", ",", "PropertySet", "set", ")", "{", "List", "readProperties", "=", "new", "ArrayList", "(", ")", ";", "List", "writeProperties", "=", "new", "ArrayList", ...
Returns two arrays of BeanProperties. Array 0 contains read BeanProperties, array 1 contains the write BeanProperties.
[ "Returns", "two", "arrays", "of", "BeanProperties", ".", "Array", "0", "contains", "read", "BeanProperties", "array", "1", "contains", "the", "write", "BeanProperties", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/BeanPropertyAccessor.java#L472-L514
41,964
cojen/Cojen
src/main/java/org/cojen/util/ClassInjector.java
ClassInjector.openStream
public OutputStream openStream() throws IllegalStateException { if (mClass != null) { throw new IllegalStateException("New class has already been defined"); } ByteArrayOutputStream data = mData; if (data != null) { throw new IllegalStateException("Stream already o...
java
public OutputStream openStream() throws IllegalStateException { if (mClass != null) { throw new IllegalStateException("New class has already been defined"); } ByteArrayOutputStream data = mData; if (data != null) { throw new IllegalStateException("Stream already o...
[ "public", "OutputStream", "openStream", "(", ")", "throws", "IllegalStateException", "{", "if", "(", "mClass", "!=", "null", ")", "{", "throw", "new", "IllegalStateException", "(", "\"New class has already been defined\"", ")", ";", "}", "ByteArrayOutputStream", "data...
Open a stream to define the new class into. @throws IllegalStateException if new class has already been defined or if a stream has already been opened
[ "Open", "a", "stream", "to", "define", "the", "new", "class", "into", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/ClassInjector.java#L236-L246
41,965
cojen/Cojen
src/main/java/org/cojen/util/ClassInjector.java
ClassInjector.defineClass
public Class defineClass(ClassFile cf) { try { cf.writeTo(openStream()); } catch (IOException e) { throw new InternalError(e.toString()); } return getNewClass(); }
java
public Class defineClass(ClassFile cf) { try { cf.writeTo(openStream()); } catch (IOException e) { throw new InternalError(e.toString()); } return getNewClass(); }
[ "public", "Class", "defineClass", "(", "ClassFile", "cf", ")", "{", "try", "{", "cf", ".", "writeTo", "(", "openStream", "(", ")", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "throw", "new", "InternalError", "(", "e", ".", "toString", ...
Define the new class from a ClassFile object. @return the newly created class @throws IllegalStateException if new class has already been defined or if a stream has already been opened
[ "Define", "the", "new", "class", "from", "a", "ClassFile", "object", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/ClassInjector.java#L255-L262
41,966
cojen/Cojen
src/main/java/org/cojen/util/ClassInjector.java
ClassInjector.getNewClass
public Class getNewClass() throws IllegalStateException, ClassFormatError { if (mClass != null) { return mClass; } ByteArrayOutputStream data = mData; if (data == null) { throw new IllegalStateException("Class not defined yet"); } byte[] bytes = d...
java
public Class getNewClass() throws IllegalStateException, ClassFormatError { if (mClass != null) { return mClass; } ByteArrayOutputStream data = mData; if (data == null) { throw new IllegalStateException("Class not defined yet"); } byte[] bytes = d...
[ "public", "Class", "getNewClass", "(", ")", "throws", "IllegalStateException", ",", "ClassFormatError", "{", "if", "(", "mClass", "!=", "null", ")", "{", "return", "mClass", ";", "}", "ByteArrayOutputStream", "data", "=", "mData", ";", "if", "(", "data", "==...
Returns the newly defined class. @throws IllegalStateException if class was never defined
[ "Returns", "the", "newly", "defined", "class", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/ClassInjector.java#L269-L301
41,967
algermissen/hawkj
src/main/java/net/jalg/hawkj/util/BaseNCodec.java
BaseNCodec.available
int available(Context context) { // package protected for access from I/O streams return context.buffer != null ? context.pos - context.readPos : 0; }
java
int available(Context context) { // package protected for access from I/O streams return context.buffer != null ? context.pos - context.readPos : 0; }
[ "int", "available", "(", "Context", "context", ")", "{", "// package protected for access from I/O streams", "return", "context", ".", "buffer", "!=", "null", "?", "context", ".", "pos", "-", "context", ".", "readPos", ":", "0", ";", "}" ]
Returns the amount of buffered data available for reading. @param context the context to be used @return The amount of buffered data available for reading.
[ "Returns", "the", "amount", "of", "buffered", "data", "available", "for", "reading", "." ]
f798a20f058474bcfe761f7c5c02afee17326c71
https://github.com/algermissen/hawkj/blob/f798a20f058474bcfe761f7c5c02afee17326c71/src/main/java/net/jalg/hawkj/util/BaseNCodec.java#L203-L205
41,968
nikkiii/embedhttp
src/main/java/org/nikkii/embedhttp/util/HttpUtil.java
HttpUtil.parseData
public static Map<String, Object> parseData(String data) { Map<String, Object> ret = new HashMap<String, Object>(); String[] split = data.split("&"); for (String s : split) { int idx = s.indexOf('='); try { if (idx != -1) { ret.put(URLDecoder.decode(s.substring(0, idx), "UTF-8"), URLDecoder.decode(...
java
public static Map<String, Object> parseData(String data) { Map<String, Object> ret = new HashMap<String, Object>(); String[] split = data.split("&"); for (String s : split) { int idx = s.indexOf('='); try { if (idx != -1) { ret.put(URLDecoder.decode(s.substring(0, idx), "UTF-8"), URLDecoder.decode(...
[ "public", "static", "Map", "<", "String", ",", "Object", ">", "parseData", "(", "String", "data", ")", "{", "Map", "<", "String", ",", "Object", ">", "ret", "=", "new", "HashMap", "<", "String", ",", "Object", ">", "(", ")", ";", "String", "[", "]"...
Parse POST data or GET data from the request URI @param data The data string @return A map containing the values
[ "Parse", "POST", "data", "or", "GET", "data", "from", "the", "request", "URI" ]
7c965b6910dc6ee4ea46d7ae188c0751b98c2615
https://github.com/nikkiii/embedhttp/blob/7c965b6910dc6ee4ea46d7ae188c0751b98c2615/src/main/java/org/nikkii/embedhttp/util/HttpUtil.java#L16-L32
41,969
nikkiii/embedhttp
src/main/java/org/nikkii/embedhttp/util/HttpUtil.java
HttpUtil.capitalizeHeader
public static String capitalizeHeader(String header) { StringTokenizer st = new StringTokenizer(header, "-"); StringBuilder out = new StringBuilder(); while (st.hasMoreTokens()) { String l = st.nextToken(); out.append(Character.toUpperCase(l.charAt(0))); if (l.length() > 1) { out.append(l.substring(1...
java
public static String capitalizeHeader(String header) { StringTokenizer st = new StringTokenizer(header, "-"); StringBuilder out = new StringBuilder(); while (st.hasMoreTokens()) { String l = st.nextToken(); out.append(Character.toUpperCase(l.charAt(0))); if (l.length() > 1) { out.append(l.substring(1...
[ "public", "static", "String", "capitalizeHeader", "(", "String", "header", ")", "{", "StringTokenizer", "st", "=", "new", "StringTokenizer", "(", "header", ",", "\"-\"", ")", ";", "StringBuilder", "out", "=", "new", "StringBuilder", "(", ")", ";", "while", "...
Fixes capitalization on headers @param header The header input @return A header with all characters after '-' capitalized
[ "Fixes", "capitalization", "on", "headers" ]
7c965b6910dc6ee4ea46d7ae188c0751b98c2615
https://github.com/nikkiii/embedhttp/blob/7c965b6910dc6ee4ea46d7ae188c0751b98c2615/src/main/java/org/nikkii/embedhttp/util/HttpUtil.java#L40-L53
41,970
canhnt/sne-xacml
sne-xacml/src/main/java/nl/uva/sne/midd/builders/MIDDCombiner.java
MIDDCombiner.combineExternalNodes
private ExternalNode3 combineExternalNodes(ExternalNode3 n1, ExternalNode3 n2) { if (n1 == null || n2 == null) { throw new IllegalArgumentException("Input nodes must not be null"); } DecisionType combinedDecision = algo.combine(n1.getDecision(), n2.getDecision()); ExternalNo...
java
private ExternalNode3 combineExternalNodes(ExternalNode3 n1, ExternalNode3 n2) { if (n1 == null || n2 == null) { throw new IllegalArgumentException("Input nodes must not be null"); } DecisionType combinedDecision = algo.combine(n1.getDecision(), n2.getDecision()); ExternalNo...
[ "private", "ExternalNode3", "combineExternalNodes", "(", "ExternalNode3", "n1", ",", "ExternalNode3", "n2", ")", "{", "if", "(", "n1", "==", "null", "||", "n2", "==", "null", ")", "{", "throw", "new", "IllegalArgumentException", "(", "\"Input nodes must not be nul...
Combine two external nodes following the algorithm in this.algo @param n1 @param n2 @return
[ "Combine", "two", "external", "nodes", "following", "the", "algorithm", "in", "this", ".", "algo" ]
7ffca16bf558d2c3ee16181d926f066ab1de75b2
https://github.com/canhnt/sne-xacml/blob/7ffca16bf558d2c3ee16181d926f066ab1de75b2/sne-xacml/src/main/java/nl/uva/sne/midd/builders/MIDDCombiner.java#L200-L217
41,971
canhnt/sne-xacml
sne-xacml/src/main/java/nl/uva/sne/midd/builders/MIDDCombiner.java
MIDDCombiner.getFulfilledObligationExpressions
private List<ObligationExpression> getFulfilledObligationExpressions( List<ObligationExpression> oes, DecisionType decision) { List<ObligationExpression> fulfilledOEs = new ArrayList<ObligationExpression>(); if (oes != null && oes.size() > 0) { for (ObligationExpres...
java
private List<ObligationExpression> getFulfilledObligationExpressions( List<ObligationExpression> oes, DecisionType decision) { List<ObligationExpression> fulfilledOEs = new ArrayList<ObligationExpression>(); if (oes != null && oes.size() > 0) { for (ObligationExpres...
[ "private", "List", "<", "ObligationExpression", ">", "getFulfilledObligationExpressions", "(", "List", "<", "ObligationExpression", ">", "oes", ",", "DecisionType", "decision", ")", "{", "List", "<", "ObligationExpression", ">", "fulfilledOEs", "=", "new", "ArrayList"...
Return OE in the list that are fulfilled the indicated decision. @param oes @param decision @return
[ "Return", "OE", "in", "the", "list", "that", "are", "fulfilled", "the", "indicated", "decision", "." ]
7ffca16bf558d2c3ee16181d926f066ab1de75b2
https://github.com/canhnt/sne-xacml/blob/7ffca16bf558d2c3ee16181d926f066ab1de75b2/sne-xacml/src/main/java/nl/uva/sne/midd/builders/MIDDCombiner.java#L226-L240
41,972
canhnt/sne-xacml
sne-xacml/src/main/java/nl/uva/sne/midd/builders/MIDDCombiner.java
MIDDCombiner.combineInternalNodeStates
private InternalNodeState combineInternalNodeStates(InternalNodeState inState, ExternalNode3 externalNode) { ExternalNode3 n1 = inState.getExternalNode(); ExternalNode3 n = combineExternalNodes(n1, externalNode); return new InternalNodeState(n); }
java
private InternalNodeState combineInternalNodeStates(InternalNodeState inState, ExternalNode3 externalNode) { ExternalNode3 n1 = inState.getExternalNode(); ExternalNode3 n = combineExternalNodes(n1, externalNode); return new InternalNodeState(n); }
[ "private", "InternalNodeState", "combineInternalNodeStates", "(", "InternalNodeState", "inState", ",", "ExternalNode3", "externalNode", ")", "{", "ExternalNode3", "n1", "=", "inState", ".", "getExternalNode", "(", ")", ";", "ExternalNode3", "n", "=", "combineExternalNod...
Combine an indeterminate state of an internal node with an external node which use indicated combining algorithm. @param inState @param externalNode @return
[ "Combine", "an", "indeterminate", "state", "of", "an", "internal", "node", "with", "an", "external", "node", "which", "use", "indicated", "combining", "algorithm", "." ]
7ffca16bf558d2c3ee16181d926f066ab1de75b2
https://github.com/canhnt/sne-xacml/blob/7ffca16bf558d2c3ee16181d926f066ab1de75b2/sne-xacml/src/main/java/nl/uva/sne/midd/builders/MIDDCombiner.java#L352-L359
41,973
canhnt/sne-xacml
sne-xacml/src/main/java/nl/uva/sne/xacml/policy/parsers/RuleParser.java
RuleParser.setEffectNode
@SuppressWarnings("rawtypes") private void setEffectNode(AbstractNode midd, ExternalNode3 extNode) throws MIDDException { // Replace current external nodes in the MIDD with the extNode (XACML 3 external node) if (!(midd instanceof InternalNode)) { throw new IllegalArgumentException("MID...
java
@SuppressWarnings("rawtypes") private void setEffectNode(AbstractNode midd, ExternalNode3 extNode) throws MIDDException { // Replace current external nodes in the MIDD with the extNode (XACML 3 external node) if (!(midd instanceof InternalNode)) { throw new IllegalArgumentException("MID...
[ "@", "SuppressWarnings", "(", "\"rawtypes\"", ")", "private", "void", "setEffectNode", "(", "AbstractNode", "midd", ",", "ExternalNode3", "extNode", ")", "throws", "MIDDException", "{", "// Replace current external nodes in the MIDD with the extNode (XACML 3 external node)", "i...
Set indicated external-xacml3 node to be the leaves of the MIDD @param midd @param extNode
[ "Set", "indicated", "external", "-", "xacml3", "node", "to", "be", "the", "leaves", "of", "the", "MIDD" ]
7ffca16bf558d2c3ee16181d926f066ab1de75b2
https://github.com/canhnt/sne-xacml/blob/7ffca16bf558d2c3ee16181d926f066ab1de75b2/sne-xacml/src/main/java/nl/uva/sne/xacml/policy/parsers/RuleParser.java#L190-L236
41,974
nikkiii/embedhttp
src/main/java/org/nikkii/embedhttp/util/MultipartReader.java
MultipartReader.read
public int read() throws IOException { if (leftover != null && leftover.remaining() > 0) { int b = leftover.get(); if (leftover.remaining() == 0) { leftover = null; } return b; } return input.read(); }
java
public int read() throws IOException { if (leftover != null && leftover.remaining() > 0) { int b = leftover.get(); if (leftover.remaining() == 0) { leftover = null; } return b; } return input.read(); }
[ "public", "int", "read", "(", ")", "throws", "IOException", "{", "if", "(", "leftover", "!=", "null", "&&", "leftover", ".", "remaining", "(", ")", ">", "0", ")", "{", "int", "b", "=", "leftover", ".", "get", "(", ")", ";", "if", "(", "leftover", ...
Read a single byte, except it will try to use the leftover bytes from the previous read first. @return The single byte read @throws IOException If an error occurs
[ "Read", "a", "single", "byte", "except", "it", "will", "try", "to", "use", "the", "leftover", "bytes", "from", "the", "previous", "read", "first", "." ]
7c965b6910dc6ee4ea46d7ae188c0751b98c2615
https://github.com/nikkiii/embedhttp/blob/7c965b6910dc6ee4ea46d7ae188c0751b98c2615/src/main/java/org/nikkii/embedhttp/util/MultipartReader.java#L59-L68
41,975
nikkiii/embedhttp
src/main/java/org/nikkii/embedhttp/util/MultipartReader.java
MultipartReader.readLine
public String readLine() throws IOException { StringBuilder bldr = new StringBuilder(); while (true) { int b = read(); if (b == -1 || b == 10) { break; } else if (b != '\r') { bldr.append((char) ((byte) b)); } } return bldr.toString(); }
java
public String readLine() throws IOException { StringBuilder bldr = new StringBuilder(); while (true) { int b = read(); if (b == -1 || b == 10) { break; } else if (b != '\r') { bldr.append((char) ((byte) b)); } } return bldr.toString(); }
[ "public", "String", "readLine", "(", ")", "throws", "IOException", "{", "StringBuilder", "bldr", "=", "new", "StringBuilder", "(", ")", ";", "while", "(", "true", ")", "{", "int", "b", "=", "read", "(", ")", ";", "if", "(", "b", "==", "-", "1", "||...
Reads a line up until \r\n This will act similar to BufferedReader.readLine @return The line @throws IOException If an error occurs while reading
[ "Reads", "a", "line", "up", "until", "\\", "r", "\\", "n", "This", "will", "act", "similar", "to", "BufferedReader", ".", "readLine" ]
7c965b6910dc6ee4ea46d7ae188c0751b98c2615
https://github.com/nikkiii/embedhttp/blob/7c965b6910dc6ee4ea46d7ae188c0751b98c2615/src/main/java/org/nikkii/embedhttp/util/MultipartReader.java#L146-L157
41,976
nikkiii/embedhttp
src/main/java/org/nikkii/embedhttp/util/MultipartReader.java
MultipartReader.readLineUntilBoundary
public String readLineUntilBoundary() throws IOException { StringBuilder bldr = new StringBuilder(); while (true) { int b = read(); if (bldr.indexOf(boundary) == 0) { leftover = ByteBuffer.wrap(boundaryBytes); return null; } else if (b == -1 || b == 10) { break; } else if (b != '\r') { b...
java
public String readLineUntilBoundary() throws IOException { StringBuilder bldr = new StringBuilder(); while (true) { int b = read(); if (bldr.indexOf(boundary) == 0) { leftover = ByteBuffer.wrap(boundaryBytes); return null; } else if (b == -1 || b == 10) { break; } else if (b != '\r') { b...
[ "public", "String", "readLineUntilBoundary", "(", ")", "throws", "IOException", "{", "StringBuilder", "bldr", "=", "new", "StringBuilder", "(", ")", ";", "while", "(", "true", ")", "{", "int", "b", "=", "read", "(", ")", ";", "if", "(", "bldr", ".", "i...
Reads a line up until \r\n OR the boundary This will act similar to BufferedReader.readLine, except that it will stop at the defined boundary. @return The line @throws IOException If an error occurs while reading
[ "Reads", "a", "line", "up", "until", "\\", "r", "\\", "n", "OR", "the", "boundary", "This", "will", "act", "similar", "to", "BufferedReader", ".", "readLine", "except", "that", "it", "will", "stop", "at", "the", "defined", "boundary", "." ]
7c965b6910dc6ee4ea46d7ae188c0751b98c2615
https://github.com/nikkiii/embedhttp/blob/7c965b6910dc6ee4ea46d7ae188c0751b98c2615/src/main/java/org/nikkii/embedhttp/util/MultipartReader.java#L167-L181
41,977
stefanbirkner/fishbowl
src/main/java/com/github/stefanbirkner/fishbowl/Fishbowl.java
Fishbowl.defaultIfException
public static <V> V defaultIfException( StatementWithReturnValue<V> statement, Class<? extends Throwable> exceptionType, V defaultValue) { try { return statement.evaluate(); } catch (RuntimeException e) { if (exceptionType.isAssignableFrom(e.getClass())) ...
java
public static <V> V defaultIfException( StatementWithReturnValue<V> statement, Class<? extends Throwable> exceptionType, V defaultValue) { try { return statement.evaluate(); } catch (RuntimeException e) { if (exceptionType.isAssignableFrom(e.getClass())) ...
[ "public", "static", "<", "V", ">", "V", "defaultIfException", "(", "StatementWithReturnValue", "<", "V", ">", "statement", ",", "Class", "<", "?", "extends", "Throwable", ">", "exceptionType", ",", "V", "defaultValue", ")", "{", "try", "{", "return", "statem...
Executes the given statement and returns the statement's return value if no exception is thrown or the default value if an exception of the specified type is thrown. <pre> public void doSomething() { long value = defaultIfException(() -&gt; parseLong("NaN"), NumberFormatException.class, 0L); //value is 0 } </pre> <p>...
[ "Executes", "the", "given", "statement", "and", "returns", "the", "statement", "s", "return", "value", "if", "no", "exception", "is", "thrown", "or", "the", "default", "value", "if", "an", "exception", "of", "the", "specified", "type", "is", "thrown", "." ]
0ef001f1fc38822ffbe74679ee3001504eb5f23c
https://github.com/stefanbirkner/fishbowl/blob/0ef001f1fc38822ffbe74679ee3001504eb5f23c/src/main/java/com/github/stefanbirkner/fishbowl/Fishbowl.java#L62-L83
41,978
svanoort/rest-compress
demo-app/src/main/java/com/restcompress/demoapp/model/RestMapObject.java
RestMapObject.getValue
public String getValue(String key) { KeyValue kv = getKV(key); return kv == null ? null : kv.getValue(); }
java
public String getValue(String key) { KeyValue kv = getKV(key); return kv == null ? null : kv.getValue(); }
[ "public", "String", "getValue", "(", "String", "key", ")", "{", "KeyValue", "kv", "=", "getKV", "(", "key", ")", ";", "return", "kv", "==", "null", "?", "null", ":", "kv", ".", "getValue", "(", ")", ";", "}" ]
Get the value for the key
[ "Get", "the", "value", "for", "the", "key" ]
4e34fcbe0d1b510962a93509a78b6a8ade234606
https://github.com/svanoort/rest-compress/blob/4e34fcbe0d1b510962a93509a78b6a8ade234606/demo-app/src/main/java/com/restcompress/demoapp/model/RestMapObject.java#L36-L39
41,979
svanoort/rest-compress
demo-app/src/main/java/com/restcompress/demoapp/model/RestMapObject.java
RestMapObject.setValue
public void setValue(String key, String value) { KeyValue kv = getKV(key); if (kv != null) { kv.setValue(value); } else if (key != null) { map.add(new KeyValue(key,value)); } }
java
public void setValue(String key, String value) { KeyValue kv = getKV(key); if (kv != null) { kv.setValue(value); } else if (key != null) { map.add(new KeyValue(key,value)); } }
[ "public", "void", "setValue", "(", "String", "key", ",", "String", "value", ")", "{", "KeyValue", "kv", "=", "getKV", "(", "key", ")", ";", "if", "(", "kv", "!=", "null", ")", "{", "kv", ".", "setValue", "(", "value", ")", ";", "}", "else", "if",...
Null value is totally legal!
[ "Null", "value", "is", "totally", "legal!" ]
4e34fcbe0d1b510962a93509a78b6a8ade234606
https://github.com/svanoort/rest-compress/blob/4e34fcbe0d1b510962a93509a78b6a8ade234606/demo-app/src/main/java/com/restcompress/demoapp/model/RestMapObject.java#L42-L49
41,980
svanoort/rest-compress
demo-app/src/main/java/com/restcompress/demoapp/model/RestMapObject.java
RestMapObject.removeKey
public void removeKey(String key) { if (key != null && !key.isEmpty()) { for (int i=0; i<map.size(); i++) { KeyValue kv = map.get(i); if (key.equals(kv.getKey())) { map.remove(i); return; } } ...
java
public void removeKey(String key) { if (key != null && !key.isEmpty()) { for (int i=0; i<map.size(); i++) { KeyValue kv = map.get(i); if (key.equals(kv.getKey())) { map.remove(i); return; } } ...
[ "public", "void", "removeKey", "(", "String", "key", ")", "{", "if", "(", "key", "!=", "null", "&&", "!", "key", ".", "isEmpty", "(", ")", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "map", ".", "size", "(", ")", ";", "i", "+...
Remove mappings for given key
[ "Remove", "mappings", "for", "given", "key" ]
4e34fcbe0d1b510962a93509a78b6a8ade234606
https://github.com/svanoort/rest-compress/blob/4e34fcbe0d1b510962a93509a78b6a8ade234606/demo-app/src/main/java/com/restcompress/demoapp/model/RestMapObject.java#L52-L62
41,981
canhnt/sne-xacml
sne-xacml/src/main/java/nl/uva/sne/midd/edges/AbstractEdge.java
AbstractEdge.match
public boolean match(final T value) throws MIDDException { for (Interval<T> interval : this.intervals) { if (interval.hasValue(value)) { return true; } } return false; }
java
public boolean match(final T value) throws MIDDException { for (Interval<T> interval : this.intervals) { if (interval.hasValue(value)) { return true; } } return false; }
[ "public", "boolean", "match", "(", "final", "T", "value", ")", "throws", "MIDDException", "{", "for", "(", "Interval", "<", "T", ">", "interval", ":", "this", ".", "intervals", ")", "{", "if", "(", "interval", ".", "hasValue", "(", "value", ")", ")", ...
Check if the value is matched with the edge's intervals @param value @return
[ "Check", "if", "the", "value", "is", "matched", "with", "the", "edge", "s", "intervals" ]
7ffca16bf558d2c3ee16181d926f066ab1de75b2
https://github.com/canhnt/sne-xacml/blob/7ffca16bf558d2c3ee16181d926f066ab1de75b2/sne-xacml/src/main/java/nl/uva/sne/midd/edges/AbstractEdge.java#L106-L113
41,982
99soft/guartz
src/main/java/org/nnsoft/guice/guartz/QuartzModule.java
QuartzModule.doBind
protected final <T> void doBind( Multibinder<T> binder, Class<? extends T> type ) { checkNotNull( type ); binder.addBinding().to( type ); }
java
protected final <T> void doBind( Multibinder<T> binder, Class<? extends T> type ) { checkNotNull( type ); binder.addBinding().to( type ); }
[ "protected", "final", "<", "T", ">", "void", "doBind", "(", "Multibinder", "<", "T", ">", "binder", ",", "Class", "<", "?", "extends", "T", ">", "type", ")", "{", "checkNotNull", "(", "type", ")", ";", "binder", ".", "addBinding", "(", ")", ".", "t...
Utility method to respect the DRY principle. @param <T> @param binder @param type
[ "Utility", "method", "to", "respect", "the", "DRY", "principle", "." ]
3f59096d8dff52475d1677bd5fdff61d12e5fa14
https://github.com/99soft/guartz/blob/3f59096d8dff52475d1677bd5fdff61d12e5fa14/src/main/java/org/nnsoft/guice/guartz/QuartzModule.java#L206-L210
41,983
canhnt/sne-xacml
sne-xacml/src/main/java/nl/uva/sne/midd/nodes/InternalNode.java
InternalNode.addChild
@SuppressWarnings("unchecked") public void addChild(final AbstractEdge<?> edge, final AbstractNode child) { if (child == null || edge == null || edge.getIntervals() == null || edge.getIntervals().size() == 0) { throw new IllegalArgumentException("Cannot add null child or empty ed...
java
@SuppressWarnings("unchecked") public void addChild(final AbstractEdge<?> edge, final AbstractNode child) { if (child == null || edge == null || edge.getIntervals() == null || edge.getIntervals().size() == 0) { throw new IllegalArgumentException("Cannot add null child or empty ed...
[ "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "public", "void", "addChild", "(", "final", "AbstractEdge", "<", "?", ">", "edge", ",", "final", "AbstractNode", "child", ")", "{", "if", "(", "child", "==", "null", "||", "edge", "==", "null", "||", "e...
Create an out-going edge to the given node. The edge and child node are mutable objects. If they are used in another tree, it'd better to clone before adding them. Note: Edge<?> and InternalNode<T> must use the same type @param edge @param child
[ "Create", "an", "out", "-", "going", "edge", "to", "the", "given", "node", ".", "The", "edge", "and", "child", "node", "are", "mutable", "objects", ".", "If", "they", "are", "used", "in", "another", "tree", "it", "d", "better", "to", "clone", "before",...
7ffca16bf558d2c3ee16181d926f066ab1de75b2
https://github.com/canhnt/sne-xacml/blob/7ffca16bf558d2c3ee16181d926f066ab1de75b2/sne-xacml/src/main/java/nl/uva/sne/midd/nodes/InternalNode.java#L85-L94
41,984
canhnt/sne-xacml
sne-xacml/src/main/java/nl/uva/sne/midd/nodes/InternalNode.java
InternalNode.getChild
public AbstractNode getChild(Interval<T> interval) throws MIDDException { for (AbstractEdge<T> e : this.edges) { if (e.containsInterval(interval)) { return e.getSubDiagram(); } } return null; }
java
public AbstractNode getChild(Interval<T> interval) throws MIDDException { for (AbstractEdge<T> e : this.edges) { if (e.containsInterval(interval)) { return e.getSubDiagram(); } } return null; }
[ "public", "AbstractNode", "getChild", "(", "Interval", "<", "T", ">", "interval", ")", "throws", "MIDDException", "{", "for", "(", "AbstractEdge", "<", "T", ">", "e", ":", "this", ".", "edges", ")", "{", "if", "(", "e", ".", "containsInterval", "(", "i...
Return the child of the current node with equivalent interval on its incoming edge. @param interval The interval which is the subset of the interval in the incoming edge @return null if no matching edge found.
[ "Return", "the", "child", "of", "the", "current", "node", "with", "equivalent", "interval", "on", "its", "incoming", "edge", "." ]
7ffca16bf558d2c3ee16181d926f066ab1de75b2
https://github.com/canhnt/sne-xacml/blob/7ffca16bf558d2c3ee16181d926f066ab1de75b2/sne-xacml/src/main/java/nl/uva/sne/midd/nodes/InternalNode.java#L112-L119
41,985
canhnt/sne-xacml
sne-xacml/src/main/java/nl/uva/sne/midd/nodes/InternalNode.java
InternalNode.getIntervals
@SuppressWarnings("rawtypes") public List<Interval> getIntervals() { List<Interval> lstIntervals = new ArrayList<Interval>(); for (AbstractEdge<T> e : this.edges) { lstIntervals.addAll(e.getIntervals()); } return lstIntervals; }
java
@SuppressWarnings("rawtypes") public List<Interval> getIntervals() { List<Interval> lstIntervals = new ArrayList<Interval>(); for (AbstractEdge<T> e : this.edges) { lstIntervals.addAll(e.getIntervals()); } return lstIntervals; }
[ "@", "SuppressWarnings", "(", "\"rawtypes\"", ")", "public", "List", "<", "Interval", ">", "getIntervals", "(", ")", "{", "List", "<", "Interval", ">", "lstIntervals", "=", "new", "ArrayList", "<", "Interval", ">", "(", ")", ";", "for", "(", "AbstractEdge"...
Collect all intervals of all outgoing edges @return
[ "Collect", "all", "intervals", "of", "all", "outgoing", "edges" ]
7ffca16bf558d2c3ee16181d926f066ab1de75b2
https://github.com/canhnt/sne-xacml/blob/7ffca16bf558d2c3ee16181d926f066ab1de75b2/sne-xacml/src/main/java/nl/uva/sne/midd/nodes/InternalNode.java#L138-L146
41,986
canhnt/sne-xacml
sne-xacml/src/main/java/nl/uva/sne/midd/nodes/InternalNode.java
InternalNode.match
public AbstractEdge<T> match(T value) throws UnmatchedException, MIDDException { for (AbstractEdge<T> e : this.edges) { if (e.match(value)) { return e; } } throw new UnmatchedException("No matching edge found for value " + value); }
java
public AbstractEdge<T> match(T value) throws UnmatchedException, MIDDException { for (AbstractEdge<T> e : this.edges) { if (e.match(value)) { return e; } } throw new UnmatchedException("No matching edge found for value " + value); }
[ "public", "AbstractEdge", "<", "T", ">", "match", "(", "T", "value", ")", "throws", "UnmatchedException", ",", "MIDDException", "{", "for", "(", "AbstractEdge", "<", "T", ">", "e", ":", "this", ".", "edges", ")", "{", "if", "(", "e", ".", "match", "(...
Return an edge to match with input value @param value @return @throws nl.uva.sne.midd.UnmatchedException
[ "Return", "an", "edge", "to", "match", "with", "input", "value" ]
7ffca16bf558d2c3ee16181d926f066ab1de75b2
https://github.com/canhnt/sne-xacml/blob/7ffca16bf558d2c3ee16181d926f066ab1de75b2/sne-xacml/src/main/java/nl/uva/sne/midd/nodes/InternalNode.java#L162-L169
41,987
canhnt/sne-xacml
sne-xacml/src/main/java/nl/uva/sne/xacml/policy/parsers/AnyOfExpression.java
AnyOfExpression.createFromConjunctionClauses
public AbstractNode createFromConjunctionClauses(Map<String, AttributeInfo> intervals) throws MIDDParsingException, MIDDException { if (intervals == null || intervals.size() == 0) { return ExternalNode.newInstance(); // return true-value external node } // Create edges from interva...
java
public AbstractNode createFromConjunctionClauses(Map<String, AttributeInfo> intervals) throws MIDDParsingException, MIDDException { if (intervals == null || intervals.size() == 0) { return ExternalNode.newInstance(); // return true-value external node } // Create edges from interva...
[ "public", "AbstractNode", "createFromConjunctionClauses", "(", "Map", "<", "String", ",", "AttributeInfo", ">", "intervals", ")", "throws", "MIDDParsingException", ",", "MIDDException", "{", "if", "(", "intervals", "==", "null", "||", "intervals", ".", "size", "("...
Create a MIDD from conjunctions of intervals @param intervals @return @throws MIDDParsingException @throws MIDDException
[ "Create", "a", "MIDD", "from", "conjunctions", "of", "intervals" ]
7ffca16bf558d2c3ee16181d926f066ab1de75b2
https://github.com/canhnt/sne-xacml/blob/7ffca16bf558d2c3ee16181d926f066ab1de75b2/sne-xacml/src/main/java/nl/uva/sne/xacml/policy/parsers/AnyOfExpression.java#L86-L136
41,988
goodow/realtime-json
src/main/java/com/goodow/realtime/json/impl/Base64.java
Base64.getAlphabet
private final static byte[] getAlphabet(final int options) { if ((options & Base64.URL_SAFE) == Base64.URL_SAFE) { return Base64._URL_SAFE_ALPHABET; } else if ((options & Base64.ORDERED) == Base64.ORDERED) { return Base64._ORDERED_ALPHABET; } else { return Base64._STANDARD_ALPHABET; } ...
java
private final static byte[] getAlphabet(final int options) { if ((options & Base64.URL_SAFE) == Base64.URL_SAFE) { return Base64._URL_SAFE_ALPHABET; } else if ((options & Base64.ORDERED) == Base64.ORDERED) { return Base64._ORDERED_ALPHABET; } else { return Base64._STANDARD_ALPHABET; } ...
[ "private", "final", "static", "byte", "[", "]", "getAlphabet", "(", "final", "int", "options", ")", "{", "if", "(", "(", "options", "&", "Base64", ".", "URL_SAFE", ")", "==", "Base64", ".", "URL_SAFE", ")", "{", "return", "Base64", ".", "_URL_SAFE_ALPHAB...
Returns one of the _SOMETHING_ALPHABET byte arrays depending on the options specified. It's possible, though silly, to specify ORDERED and URLSAFE in which case one of them will be picked, though there is no guarantee as to which one will be picked.
[ "Returns", "one", "of", "the", "_SOMETHING_ALPHABET", "byte", "arrays", "depending", "on", "the", "options", "specified", ".", "It", "s", "possible", "though", "silly", "to", "specify", "ORDERED", "and", "URLSAFE", "in", "which", "case", "one", "of", "them", ...
be2f5a8cab27afa052583ae2e09f6f7975d8cb0c
https://github.com/goodow/realtime-json/blob/be2f5a8cab27afa052583ae2e09f6f7975d8cb0c/src/main/java/com/goodow/realtime/json/impl/Base64.java#L1655-L1664
41,989
goodow/realtime-json
src/main/java/com/goodow/realtime/json/impl/Base64.java
Base64.usage
private final static void usage(final String msg) { System.err.println(msg); System.err.println("Usage: java Base64 -e|-d inputfile outputfile"); }
java
private final static void usage(final String msg) { System.err.println(msg); System.err.println("Usage: java Base64 -e|-d inputfile outputfile"); }
[ "private", "final", "static", "void", "usage", "(", "final", "String", "msg", ")", "{", "System", ".", "err", ".", "println", "(", "msg", ")", ";", "System", ".", "err", ".", "println", "(", "\"Usage: java Base64 -e|-d inputfile outputfile\"", ")", ";", "}" ...
Prints command line usage. @param msg A message to include with usage info.
[ "Prints", "command", "line", "usage", "." ]
be2f5a8cab27afa052583ae2e09f6f7975d8cb0c
https://github.com/goodow/realtime-json/blob/be2f5a8cab27afa052583ae2e09f6f7975d8cb0c/src/main/java/com/goodow/realtime/json/impl/Base64.java#L1689-L1692
41,990
nikkiii/embedhttp
src/main/java/org/nikkii/embedhttp/impl/HttpCookie.java
HttpCookie.toHeader
public String toHeader() { StringBuilder header = new StringBuilder(); header.append(name).append('=').append(value); if (domain != null) { header.append("; ").append("Domain=").append(domain); } if (path != null) { header.append("; ").append("Path=").append(path); } if (expireTime > -1) { header...
java
public String toHeader() { StringBuilder header = new StringBuilder(); header.append(name).append('=').append(value); if (domain != null) { header.append("; ").append("Domain=").append(domain); } if (path != null) { header.append("; ").append("Path=").append(path); } if (expireTime > -1) { header...
[ "public", "String", "toHeader", "(", ")", "{", "StringBuilder", "header", "=", "new", "StringBuilder", "(", ")", ";", "header", ".", "append", "(", "name", ")", ".", "append", "(", "'", "'", ")", ".", "append", "(", "value", ")", ";", "if", "(", "d...
Transforms this cookie into a Set-Cookie header field @return The header
[ "Transforms", "this", "cookie", "into", "a", "Set", "-", "Cookie", "header", "field" ]
7c965b6910dc6ee4ea46d7ae188c0751b98c2615
https://github.com/nikkiii/embedhttp/blob/7c965b6910dc6ee4ea46d7ae188c0751b98c2615/src/main/java/org/nikkii/embedhttp/impl/HttpCookie.java#L146-L162
41,991
algermissen/hawkj
src/main/java/net/jalg/hawkj/Util.java
Util.generateRandomString
public static String generateRandomString(int nbytes) { byte[] salt = new byte[nbytes]; Random r = new SecureRandom(); r.nextBytes(salt); return bytesToHex(salt); }
java
public static String generateRandomString(int nbytes) { byte[] salt = new byte[nbytes]; Random r = new SecureRandom(); r.nextBytes(salt); return bytesToHex(salt); }
[ "public", "static", "String", "generateRandomString", "(", "int", "nbytes", ")", "{", "byte", "[", "]", "salt", "=", "new", "byte", "[", "nbytes", "]", ";", "Random", "r", "=", "new", "SecureRandom", "(", ")", ";", "r", ".", "nextBytes", "(", "salt", ...
Generate a random string with a certain entropy. This creates a random string with the entropy of nbytes and encodes that string in hex format. That means, the returned string will be twice as long as the requested entropy. <p> The string will be suitable for use in URLs or HTTP headers etc. without further escaping. ...
[ "Generate", "a", "random", "string", "with", "a", "certain", "entropy", "." ]
f798a20f058474bcfe761f7c5c02afee17326c71
https://github.com/algermissen/hawkj/blob/f798a20f058474bcfe761f7c5c02afee17326c71/src/main/java/net/jalg/hawkj/Util.java#L55-L60
41,992
algermissen/hawkj
src/main/java/net/jalg/hawkj/Util.java
Util.fixedTimeEqual
public static boolean fixedTimeEqual(String lhs, String rhs) { boolean equal = (lhs.length() == rhs.length() ? true : false); // If not equal, work on a single operand to have same length. if(!equal) { rhs = lhs; } int len = lhs.length(); for(int i=0;i<len;i++) { if(lhs.charAt(i) == rhs.charAt(i...
java
public static boolean fixedTimeEqual(String lhs, String rhs) { boolean equal = (lhs.length() == rhs.length() ? true : false); // If not equal, work on a single operand to have same length. if(!equal) { rhs = lhs; } int len = lhs.length(); for(int i=0;i<len;i++) { if(lhs.charAt(i) == rhs.charAt(i...
[ "public", "static", "boolean", "fixedTimeEqual", "(", "String", "lhs", ",", "String", "rhs", ")", "{", "boolean", "equal", "=", "(", "lhs", ".", "length", "(", ")", "==", "rhs", ".", "length", "(", ")", "?", "true", ":", "false", ")", ";", "// If not...
Fixed time comparison of two strings. Fixed time comparison is necessary in order to prevent attacks analyzing differences in verification time for corrupted tokens. @param lhs Left hand side operand @param rhs Right hadn side operand @return true if the strings are equal, false otherwise.
[ "Fixed", "time", "comparison", "of", "two", "strings", "." ]
f798a20f058474bcfe761f7c5c02afee17326c71
https://github.com/algermissen/hawkj/blob/f798a20f058474bcfe761f7c5c02afee17326c71/src/main/java/net/jalg/hawkj/Util.java#L71-L89
41,993
nikkiii/embedhttp
src/main/java/org/nikkii/embedhttp/util/content/ContentTypeMap.java
ContentTypeMap.initialize
private void initialize(InputStream input) { BufferedReader reader = null; try { reader = new BufferedReader(new InputStreamReader(input)); String line; Matcher m; while ((line = reader.readLine()) != null) { m = TYPE_PATTERN.matcher(line); if (m.find()) { String type = m.group(1); ...
java
private void initialize(InputStream input) { BufferedReader reader = null; try { reader = new BufferedReader(new InputStreamReader(input)); String line; Matcher m; while ((line = reader.readLine()) != null) { m = TYPE_PATTERN.matcher(line); if (m.find()) { String type = m.group(1); ...
[ "private", "void", "initialize", "(", "InputStream", "input", ")", "{", "BufferedReader", "reader", "=", "null", ";", "try", "{", "reader", "=", "new", "BufferedReader", "(", "new", "InputStreamReader", "(", "input", ")", ")", ";", "String", "line", ";", "...
Read and parse the type file. @param input The input stream to read the file from.
[ "Read", "and", "parse", "the", "type", "file", "." ]
7c965b6910dc6ee4ea46d7ae188c0751b98c2615
https://github.com/nikkiii/embedhttp/blob/7c965b6910dc6ee4ea46d7ae188c0751b98c2615/src/main/java/org/nikkii/embedhttp/util/content/ContentTypeMap.java#L51-L84
41,994
nikkiii/embedhttp
src/main/java/org/nikkii/embedhttp/util/content/ContentTypeMap.java
ContentTypeMap.getExtension
private static final String getExtension(String fileName) { return fileName.indexOf('.') == -1 ? null : fileName.substring(fileName.lastIndexOf('.') + 1); }
java
private static final String getExtension(String fileName) { return fileName.indexOf('.') == -1 ? null : fileName.substring(fileName.lastIndexOf('.') + 1); }
[ "private", "static", "final", "String", "getExtension", "(", "String", "fileName", ")", "{", "return", "fileName", ".", "indexOf", "(", "'", "'", ")", "==", "-", "1", "?", "null", ":", "fileName", ".", "substring", "(", "fileName", ".", "lastIndexOf", "(...
Get the extension of a file. @param fileName The file name. @return The file extension.
[ "Get", "the", "extension", "of", "a", "file", "." ]
7c965b6910dc6ee4ea46d7ae188c0751b98c2615
https://github.com/nikkiii/embedhttp/blob/7c965b6910dc6ee4ea46d7ae188c0751b98c2615/src/main/java/org/nikkii/embedhttp/util/content/ContentTypeMap.java#L97-L99
41,995
canhnt/sne-xacml
sne-xacml/src/main/java/nl/uva/sne/midd/partition/Partition.java
Partition.containsInterval
public boolean containsInterval(Interval<T> i) { for (Interval<T> item : intervals) { if (item.contains(i)) { return true; } } return false; }
java
public boolean containsInterval(Interval<T> i) { for (Interval<T> item : intervals) { if (item.contains(i)) { return true; } } return false; }
[ "public", "boolean", "containsInterval", "(", "Interval", "<", "T", ">", "i", ")", "{", "for", "(", "Interval", "<", "T", ">", "item", ":", "intervals", ")", "{", "if", "(", "item", ".", "contains", "(", "i", ")", ")", "{", "return", "true", ";", ...
Return true if the argument interval is a subset of an interval of the partition @param i @return
[ "Return", "true", "if", "the", "argument", "interval", "is", "a", "subset", "of", "an", "interval", "of", "the", "partition" ]
7ffca16bf558d2c3ee16181d926f066ab1de75b2
https://github.com/canhnt/sne-xacml/blob/7ffca16bf558d2c3ee16181d926f066ab1de75b2/sne-xacml/src/main/java/nl/uva/sne/midd/partition/Partition.java#L55-L64
41,996
nikkiii/embedhttp
src/main/java/org/nikkii/embedhttp/impl/HttpResponse.java
HttpResponse.addHeader
public void addHeader(String key, Object value) { List<Object> values = headers.get(key); if (values == null) { headers.put(key, values = new ArrayList<Object>()); } values.add(value); }
java
public void addHeader(String key, Object value) { List<Object> values = headers.get(key); if (values == null) { headers.put(key, values = new ArrayList<Object>()); } values.add(value); }
[ "public", "void", "addHeader", "(", "String", "key", ",", "Object", "value", ")", "{", "List", "<", "Object", ">", "values", "=", "headers", ".", "get", "(", "key", ")", ";", "if", "(", "values", "==", "null", ")", "{", "headers", ".", "put", "(", ...
Add a header to the response @param key The header name @param value The header value
[ "Add", "a", "header", "to", "the", "response" ]
7c965b6910dc6ee4ea46d7ae188c0751b98c2615
https://github.com/nikkiii/embedhttp/blob/7c965b6910dc6ee4ea46d7ae188c0751b98c2615/src/main/java/org/nikkii/embedhttp/impl/HttpResponse.java#L135-L141
41,997
nikkiii/embedhttp
src/main/java/org/nikkii/embedhttp/impl/HttpResponse.java
HttpResponse.setResponse
public void setResponse(String response) { this.response = response; try { this.responseLength = response.getBytes("UTF-8").length; } catch (UnsupportedEncodingException e) { this.responseLength = response.length(); } }
java
public void setResponse(String response) { this.response = response; try { this.responseLength = response.getBytes("UTF-8").length; } catch (UnsupportedEncodingException e) { this.responseLength = response.length(); } }
[ "public", "void", "setResponse", "(", "String", "response", ")", "{", "this", ".", "response", "=", "response", ";", "try", "{", "this", ".", "responseLength", "=", "response", ".", "getBytes", "(", "\"UTF-8\"", ")", ".", "length", ";", "}", "catch", "("...
Set the response string @param response The response to set
[ "Set", "the", "response", "string" ]
7c965b6910dc6ee4ea46d7ae188c0751b98c2615
https://github.com/nikkiii/embedhttp/blob/7c965b6910dc6ee4ea46d7ae188c0751b98c2615/src/main/java/org/nikkii/embedhttp/impl/HttpResponse.java#L177-L184
41,998
nikkiii/embedhttp
src/main/java/org/nikkii/embedhttp/impl/HttpResponse.java
HttpResponse.setResponse
public void setResponse(InputStream response) { this.response = response; try { this.responseLength = response.available(); } catch (IOException e) { // This shouldn't happen. } }
java
public void setResponse(InputStream response) { this.response = response; try { this.responseLength = response.available(); } catch (IOException e) { // This shouldn't happen. } }
[ "public", "void", "setResponse", "(", "InputStream", "response", ")", "{", "this", ".", "response", "=", "response", ";", "try", "{", "this", ".", "responseLength", "=", "response", ".", "available", "(", ")", ";", "}", "catch", "(", "IOException", "e", ...
Set the response Input Stream @param response The response to set
[ "Set", "the", "response", "Input", "Stream" ]
7c965b6910dc6ee4ea46d7ae188c0751b98c2615
https://github.com/nikkiii/embedhttp/blob/7c965b6910dc6ee4ea46d7ae188c0751b98c2615/src/main/java/org/nikkii/embedhttp/impl/HttpResponse.java#L191-L198
41,999
nikkiii/embedhttp
src/main/java/org/nikkii/embedhttp/HttpServer.java
HttpServer.start
public void start() { if (socket == null) { throw new RuntimeException("Cannot bind a server that has not been initialized!"); } running = true; Thread t = new Thread(this); t.setName("HttpServer"); t.start(); }
java
public void start() { if (socket == null) { throw new RuntimeException("Cannot bind a server that has not been initialized!"); } running = true; Thread t = new Thread(this); t.setName("HttpServer"); t.start(); }
[ "public", "void", "start", "(", ")", "{", "if", "(", "socket", "==", "null", ")", "{", "throw", "new", "RuntimeException", "(", "\"Cannot bind a server that has not been initialized!\"", ")", ";", "}", "running", "=", "true", ";", "Thread", "t", "=", "new", ...
Start the server in a new thread
[ "Start", "the", "server", "in", "a", "new", "thread" ]
7c965b6910dc6ee4ea46d7ae188c0751b98c2615
https://github.com/nikkiii/embedhttp/blob/7c965b6910dc6ee4ea46d7ae188c0751b98c2615/src/main/java/org/nikkii/embedhttp/HttpServer.java#L96-L105