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,800
aoindustries/aocode-public
src/main/java/com/aoindustries/io/AOPool.java
AOPool.close
final public void close() { List<C> connsToClose; synchronized(poolLock) { // Prevent any new connections isClosed = true; // Find any connections that are available and open connsToClose = new ArrayList<>(availableConnections.size()); for(PooledConnection<C> availableConnection : availableConnection...
java
final public void close() { List<C> connsToClose; synchronized(poolLock) { // Prevent any new connections isClosed = true; // Find any connections that are available and open connsToClose = new ArrayList<>(availableConnections.size()); for(PooledConnection<C> availableConnection : availableConnection...
[ "final", "public", "void", "close", "(", ")", "{", "List", "<", "C", ">", "connsToClose", ";", "synchronized", "(", "poolLock", ")", "{", "// Prevent any new connections", "isClosed", "=", "true", ";", "// Find any connections that are available and open", "connsToClo...
Shuts down the pool, exceptions during close will be logged as a warning and not thrown.
[ "Shuts", "down", "the", "pool", "exceptions", "during", "close", "will", "be", "logged", "as", "a", "warning", "and", "not", "thrown", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/io/AOPool.java#L228-L254
41,801
aoindustries/aocode-public
src/main/java/com/aoindustries/io/AOPool.java
AOPool.getConnectionCount
final public int getConnectionCount() { int total = 0; synchronized(poolLock) { for(PooledConnection<C> pooledConnection : allConnections) { if(pooledConnection.connection!=null) total++; } } return total; }
java
final public int getConnectionCount() { int total = 0; synchronized(poolLock) { for(PooledConnection<C> pooledConnection : allConnections) { if(pooledConnection.connection!=null) total++; } } return total; }
[ "final", "public", "int", "getConnectionCount", "(", ")", "{", "int", "total", "=", "0", ";", "synchronized", "(", "poolLock", ")", "{", "for", "(", "PooledConnection", "<", "C", ">", "pooledConnection", ":", "allConnections", ")", "{", "if", "(", "pooledC...
Gets the number of connections currently connected.
[ "Gets", "the", "number", "of", "connections", "currently", "connected", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/io/AOPool.java#L268-L276
41,802
aoindustries/aocode-public
src/main/java/com/aoindustries/io/AOPool.java
AOPool.release
private void release(PooledConnection<C> pooledConnection) { long currentTime = System.currentTimeMillis(); long useTime; synchronized(pooledConnection) { pooledConnection.releaseTime = currentTime; useTime = currentTime - pooledConnection.startTime; if(useTime>0) pooledConnection.totalTime.addAndGet(use...
java
private void release(PooledConnection<C> pooledConnection) { long currentTime = System.currentTimeMillis(); long useTime; synchronized(pooledConnection) { pooledConnection.releaseTime = currentTime; useTime = currentTime - pooledConnection.startTime; if(useTime>0) pooledConnection.totalTime.addAndGet(use...
[ "private", "void", "release", "(", "PooledConnection", "<", "C", ">", "pooledConnection", ")", "{", "long", "currentTime", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "long", "useTime", ";", "synchronized", "(", "pooledConnection", ")", "{", "poole...
Releases a PooledConnection. It is safe to release it multiple times. The connection should have either been closed or reset before this is called because this makes the connection available for the next request.
[ "Releases", "a", "PooledConnection", ".", "It", "is", "safe", "to", "release", "it", "multiple", "times", ".", "The", "connection", "should", "have", "either", "been", "closed", "or", "reset", "before", "this", "is", "called", "because", "this", "makes", "th...
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/io/AOPool.java#L450-L467
41,803
aoindustries/aocode-public
src/main/java/com/aoindustries/io/AOPool.java
AOPool.getConnects
final public long getConnects() { long total = 0; synchronized(poolLock) { for(PooledConnection<C> conn : allConnections) { total += conn.connectCount.get(); } } return total; }
java
final public long getConnects() { long total = 0; synchronized(poolLock) { for(PooledConnection<C> conn : allConnections) { total += conn.connectCount.get(); } } return total; }
[ "final", "public", "long", "getConnects", "(", ")", "{", "long", "total", "=", "0", ";", "synchronized", "(", "poolLock", ")", "{", "for", "(", "PooledConnection", "<", "C", ">", "conn", ":", "allConnections", ")", "{", "total", "+=", "conn", ".", "con...
Gets the total number of connects for the entire pool.
[ "Gets", "the", "total", "number", "of", "connects", "for", "the", "entire", "pool", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/io/AOPool.java#L472-L480
41,804
aoindustries/aocode-public
src/main/java/com/aoindustries/io/AOPool.java
AOPool.run
@Override final public void run() { while(true) { try { try { sleep(delayTime); } catch(InterruptedException err) { logger.log(Level.WARNING, null, err); } long time = System.currentTimeMillis(); List<C> connsToClose; synchronized(poolLock) { if(isClosed) return; // Fin...
java
@Override final public void run() { while(true) { try { try { sleep(delayTime); } catch(InterruptedException err) { logger.log(Level.WARNING, null, err); } long time = System.currentTimeMillis(); List<C> connsToClose; synchronized(poolLock) { if(isClosed) return; // Fin...
[ "@", "Override", "final", "public", "void", "run", "(", ")", "{", "while", "(", "true", ")", "{", "try", "{", "try", "{", "sleep", "(", "delayTime", ")", ";", "}", "catch", "(", "InterruptedException", "err", ")", "{", "logger", ".", "log", "(", "L...
The RefreshConnection thread polls every connection in the connection pool. If it detects a connection is idle for more than the pre-defined MAX_IDLE_TIME, it closes the connection. It will stop when the pool is flagged as closed.
[ "The", "RefreshConnection", "thread", "polls", "every", "connection", "in", "the", "connection", "pool", ".", "If", "it", "detects", "a", "connection", "is", "idle", "for", "more", "than", "the", "pre", "-", "defined", "MAX_IDLE_TIME", "it", "closes", "the", ...
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/io/AOPool.java#L762-L813
41,805
aoindustries/aocode-public
src/main/java/com/aoindustries/md5/MD5Utils.java
MD5Utils.md5
public static byte[] md5(File file) throws IOException { try (InputStream in = new FileInputStream(file)) { return md5(in); } }
java
public static byte[] md5(File file) throws IOException { try (InputStream in = new FileInputStream(file)) { return md5(in); } }
[ "public", "static", "byte", "[", "]", "md5", "(", "File", "file", ")", "throws", "IOException", "{", "try", "(", "InputStream", "in", "=", "new", "FileInputStream", "(", "file", ")", ")", "{", "return", "md5", "(", "in", ")", ";", "}", "}" ]
Gets the MD5 hashcode of a file.
[ "Gets", "the", "MD5", "hashcode", "of", "a", "file", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/md5/MD5Utils.java#L54-L58
41,806
aoindustries/aocode-public
src/main/java/com/aoindustries/md5/MD5Utils.java
MD5Utils.md5
public static byte[] md5(InputStream in) throws IOException { MD5InputStream md5in=new MD5InputStream(in); byte[] trashBuffer = BufferManager.getBytes(); try { while(md5in.read(trashBuffer, 0, BufferManager.BUFFER_SIZE) != -1) { // Intentional empty block } } finally { BufferManager.release(trashBu...
java
public static byte[] md5(InputStream in) throws IOException { MD5InputStream md5in=new MD5InputStream(in); byte[] trashBuffer = BufferManager.getBytes(); try { while(md5in.read(trashBuffer, 0, BufferManager.BUFFER_SIZE) != -1) { // Intentional empty block } } finally { BufferManager.release(trashBu...
[ "public", "static", "byte", "[", "]", "md5", "(", "InputStream", "in", ")", "throws", "IOException", "{", "MD5InputStream", "md5in", "=", "new", "MD5InputStream", "(", "in", ")", ";", "byte", "[", "]", "trashBuffer", "=", "BufferManager", ".", "getBytes", ...
Gets the MD5 hashcode of an input stream.
[ "Gets", "the", "MD5", "hashcode", "of", "an", "input", "stream", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/md5/MD5Utils.java#L63-L74
41,807
aoindustries/aocode-public
src/main/java/com/aoindustries/io/TempFile.java
TempFile.delete
public void delete() throws IOException { File f = tempFile; if(f!=null) { FileUtils.delete(f); tempFile = null; } }
java
public void delete() throws IOException { File f = tempFile; if(f!=null) { FileUtils.delete(f); tempFile = null; } }
[ "public", "void", "delete", "(", ")", "throws", "IOException", "{", "File", "f", "=", "tempFile", ";", "if", "(", "f", "!=", "null", ")", "{", "FileUtils", ".", "delete", "(", "f", ")", ";", "tempFile", "=", "null", ";", "}", "}" ]
Deletes the underlying temp file immediately. Subsequent calls will not delete the temp file, even if another file has the same path. If already deleted, has no effect.
[ "Deletes", "the", "underlying", "temp", "file", "immediately", ".", "Subsequent", "calls", "will", "not", "delete", "the", "temp", "file", "even", "if", "another", "file", "has", "the", "same", "path", ".", "If", "already", "deleted", "has", "no", "effect", ...
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/io/TempFile.java#L77-L83
41,808
aoindustries/aocode-public
src/main/java/com/aoindustries/io/TempFile.java
TempFile.getFile
public File getFile() throws IllegalStateException { File f = tempFile; if(f==null) throw new IllegalStateException(); return f; }
java
public File getFile() throws IllegalStateException { File f = tempFile; if(f==null) throw new IllegalStateException(); return f; }
[ "public", "File", "getFile", "(", ")", "throws", "IllegalStateException", "{", "File", "f", "=", "tempFile", ";", "if", "(", "f", "==", "null", ")", "throw", "new", "IllegalStateException", "(", ")", ";", "return", "f", ";", "}" ]
Gets the temp file. @exception IllegalStateException if already deleted
[ "Gets", "the", "temp", "file", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/io/TempFile.java#L102-L106
41,809
aoindustries/aoweb-framework
src/main/java/com/aoindustries/website/framework/AutoSiteMap.java
AutoSiteMap.buildData
private void buildData(String path, WebPage page, List<TreePageData> data, WebSiteRequest req) throws IOException, SQLException { if(isVisible(page)) { if(path.length()>0) path=path+'/'+page.getShortTitle(); else path=page.getShortTitle(); WebPage[] pages=page.getCachedPages(req); int len=pages.length; ...
java
private void buildData(String path, WebPage page, List<TreePageData> data, WebSiteRequest req) throws IOException, SQLException { if(isVisible(page)) { if(path.length()>0) path=path+'/'+page.getShortTitle(); else path=page.getShortTitle(); WebPage[] pages=page.getCachedPages(req); int len=pages.length; ...
[ "private", "void", "buildData", "(", "String", "path", ",", "WebPage", "page", ",", "List", "<", "TreePageData", ">", "data", ",", "WebSiteRequest", "req", ")", "throws", "IOException", ",", "SQLException", "{", "if", "(", "isVisible", "(", "page", ")", ")...
Recursively builds the list of all sites.
[ "Recursively", "builds", "the", "list", "of", "all", "sites", "." ]
8e58af4f5dd898cd2fdb855ffa810a1ca6973ae0
https://github.com/aoindustries/aoweb-framework/blob/8e58af4f5dd898cd2fdb855ffa810a1ca6973ae0/src/main/java/com/aoindustries/website/framework/AutoSiteMap.java#L56-L71
41,810
aoindustries/aoweb-framework
src/main/java/com/aoindustries/website/framework/AutoSiteMap.java
AutoSiteMap.doGet
@Override public void doGet( ChainWriter out, WebSiteRequest req, HttpServletResponse resp ) throws IOException, SQLException { if(req!=null) super.doGet(out, req, resp); }
java
@Override public void doGet( ChainWriter out, WebSiteRequest req, HttpServletResponse resp ) throws IOException, SQLException { if(req!=null) super.doGet(out, req, resp); }
[ "@", "Override", "public", "void", "doGet", "(", "ChainWriter", "out", ",", "WebSiteRequest", "req", ",", "HttpServletResponse", "resp", ")", "throws", "IOException", ",", "SQLException", "{", "if", "(", "req", "!=", "null", ")", "super", ".", "doGet", "(", ...
The content of this page will not be included in the interal search engine.
[ "The", "content", "of", "this", "page", "will", "not", "be", "included", "in", "the", "interal", "search", "engine", "." ]
8e58af4f5dd898cd2fdb855ffa810a1ca6973ae0
https://github.com/aoindustries/aoweb-framework/blob/8e58af4f5dd898cd2fdb855ffa810a1ca6973ae0/src/main/java/com/aoindustries/website/framework/AutoSiteMap.java#L76-L83
41,811
aoindustries/aocode-public
src/main/java/com/aoindustries/util/i18n/ModifiablePropertiesResourceBundle.java
ModifiablePropertiesResourceBundle.saveProperties
private void saveProperties() { assert Thread.holdsLock(properties); try { // Create a properties instance that sorts the output by keys (case-insensitive) Properties writer = new Properties() { private static final long serialVersionUID = 6953022173340009928L; @Override public Enumeration<Object>...
java
private void saveProperties() { assert Thread.holdsLock(properties); try { // Create a properties instance that sorts the output by keys (case-insensitive) Properties writer = new Properties() { private static final long serialVersionUID = 6953022173340009928L; @Override public Enumeration<Object>...
[ "private", "void", "saveProperties", "(", ")", "{", "assert", "Thread", ".", "holdsLock", "(", "properties", ")", ";", "try", "{", "// Create a properties instance that sorts the output by keys (case-insensitive)", "Properties", "writer", "=", "new", "Properties", "(", ...
Saves the properties file in ascending key order. All accesses must already hold a lock on the properties object.
[ "Saves", "the", "properties", "file", "in", "ascending", "key", "order", ".", "All", "accesses", "must", "already", "hold", "a", "lock", "on", "the", "properties", "object", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/util/i18n/ModifiablePropertiesResourceBundle.java#L328-L363
41,812
aoindustries/aocode-public
src/main/java/com/aoindustries/util/graph/SymmetricAcyclicGraphChecker.java
SymmetricAcyclicGraphChecker.checkGraph
@Override public void checkGraph() throws AsymmetricException, CycleException, EX { Set<V> vertices = graph.getVertices(); Map<V,Color> colors = new HashMap<>(vertices.size()*4/3+1); Map<V,V> predecessors = new HashMap<>(); // Could this be a simple sequence like TopologicalSorter? Any benefit? for(V v : vert...
java
@Override public void checkGraph() throws AsymmetricException, CycleException, EX { Set<V> vertices = graph.getVertices(); Map<V,Color> colors = new HashMap<>(vertices.size()*4/3+1); Map<V,V> predecessors = new HashMap<>(); // Could this be a simple sequence like TopologicalSorter? Any benefit? for(V v : vert...
[ "@", "Override", "public", "void", "checkGraph", "(", ")", "throws", "AsymmetricException", ",", "CycleException", ",", "EX", "{", "Set", "<", "V", ">", "vertices", "=", "graph", ".", "getVertices", "(", ")", ";", "Map", "<", "V", ",", "Color", ">", "c...
Test the graph for cycles and makes sure that all connections are consistent with back connections. Cycle algorithm adapted from: http://www.personal.kent.edu/~rmuhamma/Algorithms/MyAlgorithms/GraphAlgor/depthSearch.htm http://www.eecs.berkeley.edu/~kamil/teaching/sp03/041403.pdf In the case of a multigraph, any numb...
[ "Test", "the", "graph", "for", "cycles", "and", "makes", "sure", "that", "all", "connections", "are", "consistent", "with", "back", "connections", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/util/graph/SymmetricAcyclicGraphChecker.java#L62-L70
41,813
buschmais/jqa-javaee6-plugin
src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/JsfFaceletScannerPlugin.java
JsfFaceletScannerPlugin.configure
@Override public void configure() { if (getProperties().containsKey(PROPERTY_NAME_FILE_PATTERN)) { filePattern = Pattern.compile(getProperties().get(PROPERTY_NAME_FILE_PATTERN).toString()); } else { filePattern = Pattern.compile(DEFAULT_FILE_PATTERN); } }
java
@Override public void configure() { if (getProperties().containsKey(PROPERTY_NAME_FILE_PATTERN)) { filePattern = Pattern.compile(getProperties().get(PROPERTY_NAME_FILE_PATTERN).toString()); } else { filePattern = Pattern.compile(DEFAULT_FILE_PATTERN); } }
[ "@", "Override", "public", "void", "configure", "(", ")", "{", "if", "(", "getProperties", "(", ")", ".", "containsKey", "(", "PROPERTY_NAME_FILE_PATTERN", ")", ")", "{", "filePattern", "=", "Pattern", ".", "compile", "(", "getProperties", "(", ")", ".", "...
end method initialize
[ "end", "method", "initialize" ]
f5776604d9255206807e5aca90b8767bde494e14
https://github.com/buschmais/jqa-javaee6-plugin/blob/f5776604d9255206807e5aca90b8767bde494e14/src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/JsfFaceletScannerPlugin.java#L110-L117
41,814
aoindustries/semanticcms-core-model
src/main/java/com/semanticcms/core/model/ElementRef.java
ElementRef.compareTo
@Override public int compareTo(ElementRef o) { int diff = pageRef.compareTo(o.pageRef); if(diff != 0) return diff; return id.compareTo(o.id); }
java
@Override public int compareTo(ElementRef o) { int diff = pageRef.compareTo(o.pageRef); if(diff != 0) return diff; return id.compareTo(o.id); }
[ "@", "Override", "public", "int", "compareTo", "(", "ElementRef", "o", ")", "{", "int", "diff", "=", "pageRef", ".", "compareTo", "(", "o", ".", "pageRef", ")", ";", "if", "(", "diff", "!=", "0", ")", "return", "diff", ";", "return", "id", ".", "co...
Orders by page then id. @see PageRef#compareTo(com.semanticcms.core.model.PageRef)
[ "Orders", "by", "page", "then", "id", "." ]
14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624
https://github.com/aoindustries/semanticcms-core-model/blob/14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624/src/main/java/com/semanticcms/core/model/ElementRef.java#L81-L86
41,815
aoindustries/aoweb-framework
src/main/java/com/aoindustries/website/framework/TextOnlyLayout.java
TextOnlyLayout.endContentLine
@Override public void endContentLine(ChainWriter out, WebSiteRequest req, HttpServletResponse resp, int rowspan, boolean endsInternal) { out.print(" </td>\n" + " </tr>\n"); }
java
@Override public void endContentLine(ChainWriter out, WebSiteRequest req, HttpServletResponse resp, int rowspan, boolean endsInternal) { out.print(" </td>\n" + " </tr>\n"); }
[ "@", "Override", "public", "void", "endContentLine", "(", "ChainWriter", "out", ",", "WebSiteRequest", "req", ",", "HttpServletResponse", "resp", ",", "int", "rowspan", ",", "boolean", "endsInternal", ")", "{", "out", ".", "print", "(", "\" </td>\\n\"", "+", ...
Ends one line of content.
[ "Ends", "one", "line", "of", "content", "." ]
8e58af4f5dd898cd2fdb855ffa810a1ca6973ae0
https://github.com/aoindustries/aoweb-framework/blob/8e58af4f5dd898cd2fdb855ffa810a1ca6973ae0/src/main/java/com/aoindustries/website/framework/TextOnlyLayout.java#L428-L432
41,816
bremersee/sms
src/main/java/org/bremersee/sms/AbstractSmsService.java
AbstractSmsService.getSender
protected String getSender(final SmsSendRequestDto smsSendRequestDto) { if (StringUtils.isNotBlank(smsSendRequestDto.getSender())) { return smsSendRequestDto.getSender(); } Validate.notEmpty(defaultSender, "defaultSender must not be null or blank"); return defaultSender; }
java
protected String getSender(final SmsSendRequestDto smsSendRequestDto) { if (StringUtils.isNotBlank(smsSendRequestDto.getSender())) { return smsSendRequestDto.getSender(); } Validate.notEmpty(defaultSender, "defaultSender must not be null or blank"); return defaultSender; }
[ "protected", "String", "getSender", "(", "final", "SmsSendRequestDto", "smsSendRequestDto", ")", "{", "if", "(", "StringUtils", ".", "isNotBlank", "(", "smsSendRequestDto", ".", "getSender", "(", ")", ")", ")", "{", "return", "smsSendRequestDto", ".", "getSender",...
Returns the sender of the request. If no sender is specified the default sender will be returned. @param smsSendRequestDto the sms request @return the sender @throws IllegalArgumentException if no sender is specified at all
[ "Returns", "the", "sender", "of", "the", "request", ".", "If", "no", "sender", "is", "specified", "the", "default", "sender", "will", "be", "returned", "." ]
4e5e87ea98616dd316573b544f54cac56750d2f9
https://github.com/bremersee/sms/blob/4e5e87ea98616dd316573b544f54cac56750d2f9/src/main/java/org/bremersee/sms/AbstractSmsService.java#L226-L232
41,817
bremersee/sms
src/main/java/org/bremersee/sms/AbstractSmsService.java
AbstractSmsService.getReceiver
protected String getReceiver(final SmsSendRequestDto smsSendRequestDto) { if (StringUtils.isNotBlank(smsSendRequestDto.getReceiver())) { return smsSendRequestDto.getReceiver(); } Validate.notEmpty(defaultReceiver, "defaultReceiver must not be null or blank"); return defaultReceiver; }
java
protected String getReceiver(final SmsSendRequestDto smsSendRequestDto) { if (StringUtils.isNotBlank(smsSendRequestDto.getReceiver())) { return smsSendRequestDto.getReceiver(); } Validate.notEmpty(defaultReceiver, "defaultReceiver must not be null or blank"); return defaultReceiver; }
[ "protected", "String", "getReceiver", "(", "final", "SmsSendRequestDto", "smsSendRequestDto", ")", "{", "if", "(", "StringUtils", ".", "isNotBlank", "(", "smsSendRequestDto", ".", "getReceiver", "(", ")", ")", ")", "{", "return", "smsSendRequestDto", ".", "getRece...
Returns the receiver of the request. If no receiver is specified the default receiver will be returned. @param smsSendRequestDto the sms request @return the receiver @throws IllegalArgumentException if no receiver is specified at all
[ "Returns", "the", "receiver", "of", "the", "request", ".", "If", "no", "receiver", "is", "specified", "the", "default", "receiver", "will", "be", "returned", "." ]
4e5e87ea98616dd316573b544f54cac56750d2f9
https://github.com/bremersee/sms/blob/4e5e87ea98616dd316573b544f54cac56750d2f9/src/main/java/org/bremersee/sms/AbstractSmsService.java#L242-L248
41,818
bremersee/sms
src/main/java/org/bremersee/sms/AbstractSmsService.java
AbstractSmsService.getMessage
protected String getMessage(final SmsSendRequestDto smsSendRequestDto) { if (StringUtils.isNotBlank(smsSendRequestDto.getMessage())) { return smsSendRequestDto.getMessage(); } Validate.notEmpty(defaultMessage, "defaultMessage must not be null or blank"); return defaultMessage; }
java
protected String getMessage(final SmsSendRequestDto smsSendRequestDto) { if (StringUtils.isNotBlank(smsSendRequestDto.getMessage())) { return smsSendRequestDto.getMessage(); } Validate.notEmpty(defaultMessage, "defaultMessage must not be null or blank"); return defaultMessage; }
[ "protected", "String", "getMessage", "(", "final", "SmsSendRequestDto", "smsSendRequestDto", ")", "{", "if", "(", "StringUtils", ".", "isNotBlank", "(", "smsSendRequestDto", ".", "getMessage", "(", ")", ")", ")", "{", "return", "smsSendRequestDto", ".", "getMessag...
Returns the message of the request. If no message is specified the default message will be returned. @param smsSendRequestDto the sms request @return the message @throws IllegalArgumentException if no message is specified at all
[ "Returns", "the", "message", "of", "the", "request", ".", "If", "no", "message", "is", "specified", "the", "default", "message", "will", "be", "returned", "." ]
4e5e87ea98616dd316573b544f54cac56750d2f9
https://github.com/bremersee/sms/blob/4e5e87ea98616dd316573b544f54cac56750d2f9/src/main/java/org/bremersee/sms/AbstractSmsService.java#L258-L264
41,819
aoindustries/aocode-public
src/main/java/com/aoindustries/md5/MD5.java
MD5.Update
final public void Update (String s) { byte[] chars=s.getBytes(); // Changed on 2004-04-10 due to getBytes(int,int,char[],byte) being deprecated //byte chars[]; //chars = new byte[s.length()]; //s.getBytes(0, s.length(), chars, 0); Update(chars, chars.length); }
java
final public void Update (String s) { byte[] chars=s.getBytes(); // Changed on 2004-04-10 due to getBytes(int,int,char[],byte) being deprecated //byte chars[]; //chars = new byte[s.length()]; //s.getBytes(0, s.length(), chars, 0); Update(chars, chars.length); }
[ "final", "public", "void", "Update", "(", "String", "s", ")", "{", "byte", "[", "]", "chars", "=", "s", ".", "getBytes", "(", ")", ";", "// Changed on 2004-04-10 due to getBytes(int,int,char[],byte) being deprecated", "//byte\tchars[];", "//chars = new byte[s.length()];",...
Update buffer with given string. @param s String to be update to hash (is used as s.getBytes())
[ "Update", "buffer", "with", "given", "string", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/md5/MD5.java#L382-L390
41,820
aoindustries/aocode-public
src/main/java/com/aoindustries/md5/MD5.java
MD5.asHex
public static String asHex (byte[] hash) { StringBuilder buf = new StringBuilder(hash.length * 2); int i; for (i = 0; i < hash.length; i++) { if (((int) hash[i] & 0xff) < 0x10) buf.append("0"); buf.append(Long.toString((int) hash[i] & 0xff, 16)); } return buf.toString(); }
java
public static String asHex (byte[] hash) { StringBuilder buf = new StringBuilder(hash.length * 2); int i; for (i = 0; i < hash.length; i++) { if (((int) hash[i] & 0xff) < 0x10) buf.append("0"); buf.append(Long.toString((int) hash[i] & 0xff, 16)); } return buf.toString(); }
[ "public", "static", "String", "asHex", "(", "byte", "[", "]", "hash", ")", "{", "StringBuilder", "buf", "=", "new", "StringBuilder", "(", "hash", ".", "length", "*", "2", ")", ";", "int", "i", ";", "for", "(", "i", "=", "0", ";", "i", "<", "hash"...
Turns array of bytes into string representing each byte as unsigned hex number. @param hash Array of bytes to convert to hex-string @return Generated hex string
[ "Turns", "array", "of", "bytes", "into", "string", "representing", "each", "byte", "as", "unsigned", "hex", "number", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/md5/MD5.java#L458-L470
41,821
aoindustries/semanticcms-news-servlet
src/main/java/com/semanticcms/news/servlet/NewsUtils.java
NewsUtils.findAllNews
public static List<News> findAllNews( ServletContext servletContext, HttpServletRequest request, HttpServletResponse response, Page page ) throws ServletException, IOException { final List<News> found = new ArrayList<>(); final SemanticCMS semanticCMS = SemanticCMS.getInstance(servletContext); CapturePag...
java
public static List<News> findAllNews( ServletContext servletContext, HttpServletRequest request, HttpServletResponse response, Page page ) throws ServletException, IOException { final List<News> found = new ArrayList<>(); final SemanticCMS semanticCMS = SemanticCMS.getInstance(servletContext); CapturePag...
[ "public", "static", "List", "<", "News", ">", "findAllNews", "(", "ServletContext", "servletContext", ",", "HttpServletRequest", "request", ",", "HttpServletResponse", "response", ",", "Page", "page", ")", "throws", "ServletException", ",", "IOException", "{", "fina...
Gets all the new items in the given page and below, sorted by news natural order. @see News#compareTo(com.semanticcms.news.model.News)
[ "Gets", "all", "the", "new", "items", "in", "the", "given", "page", "and", "below", "sorted", "by", "news", "natural", "order", "." ]
3899c14fedffb4decc7be3e1560930e82cb5c933
https://github.com/aoindustries/semanticcms-news-servlet/blob/3899c14fedffb4decc7be3e1560930e82cb5c933/src/main/java/com/semanticcms/news/servlet/NewsUtils.java#L55-L95
41,822
NessComputing/components-ness-httpserver
src/main/java/com/nesscomputing/httpserver/HttpServerHandlerBinder.java
HttpServerHandlerBinder.bindHandler
public static LinkedBindingBuilder<Handler> bindHandler(final Binder binder) { final Multibinder<Handler> handlers = Multibinder.newSetBinder(binder, Handler.class, HANDLER_NAMED); return handlers.addBinding(); }
java
public static LinkedBindingBuilder<Handler> bindHandler(final Binder binder) { final Multibinder<Handler> handlers = Multibinder.newSetBinder(binder, Handler.class, HANDLER_NAMED); return handlers.addBinding(); }
[ "public", "static", "LinkedBindingBuilder", "<", "Handler", ">", "bindHandler", "(", "final", "Binder", "binder", ")", "{", "final", "Multibinder", "<", "Handler", ">", "handlers", "=", "Multibinder", ".", "newSetBinder", "(", "binder", ",", "Handler", ".", "c...
Bind a new handler into the jetty service. These handlers are bound before the servlet handler and can handle parts of the URI space before a servlet sees it. Do not use this method to bind logging handlers as they would be called before any functionality has been executed and logging information would be incomplete. ...
[ "Bind", "a", "new", "handler", "into", "the", "jetty", "service", ".", "These", "handlers", "are", "bound", "before", "the", "servlet", "handler", "and", "can", "handle", "parts", "of", "the", "URI", "space", "before", "a", "servlet", "sees", "it", "." ]
6a26bb852e8408e3499ad5d139961cdc6a96e857
https://github.com/NessComputing/components-ness-httpserver/blob/6a26bb852e8408e3499ad5d139961cdc6a96e857/src/main/java/com/nesscomputing/httpserver/HttpServerHandlerBinder.java#L60-L64
41,823
NessComputing/components-ness-httpserver
src/main/java/com/nesscomputing/httpserver/HttpServerHandlerBinder.java
HttpServerHandlerBinder.bindLoggingHandler
public static LinkedBindingBuilder<Handler> bindLoggingHandler(final Binder binder) { final Multibinder<Handler> handlers = Multibinder.newSetBinder(binder, Handler.class, LOGGING_NAMED); return handlers.addBinding(); }
java
public static LinkedBindingBuilder<Handler> bindLoggingHandler(final Binder binder) { final Multibinder<Handler> handlers = Multibinder.newSetBinder(binder, Handler.class, LOGGING_NAMED); return handlers.addBinding(); }
[ "public", "static", "LinkedBindingBuilder", "<", "Handler", ">", "bindLoggingHandler", "(", "final", "Binder", "binder", ")", "{", "final", "Multibinder", "<", "Handler", ">", "handlers", "=", "Multibinder", ".", "newSetBinder", "(", "binder", ",", "Handler", "....
Bind a new handler into the jetty service. These handlers are bound after the servlet handler and will not see any requests before they have been handled. This is intended to bind logging, statistics etc. which want to operate on the results of a request to the server. Any handler intended to manage content or a part ...
[ "Bind", "a", "new", "handler", "into", "the", "jetty", "service", ".", "These", "handlers", "are", "bound", "after", "the", "servlet", "handler", "and", "will", "not", "see", "any", "requests", "before", "they", "have", "been", "handled", ".", "This", "is"...
6a26bb852e8408e3499ad5d139961cdc6a96e857
https://github.com/NessComputing/components-ness-httpserver/blob/6a26bb852e8408e3499ad5d139961cdc6a96e857/src/main/java/com/nesscomputing/httpserver/HttpServerHandlerBinder.java#L72-L76
41,824
NessComputing/components-ness-httpserver
src/main/java/com/nesscomputing/httpserver/HttpServerHandlerBinder.java
HttpServerHandlerBinder.bindSecurityHandler
public static LinkedBindingBuilder<HandlerWrapper> bindSecurityHandler(final Binder binder) { return binder.bind(HandlerWrapper.class).annotatedWith(SECURITY_NAMED); }
java
public static LinkedBindingBuilder<HandlerWrapper> bindSecurityHandler(final Binder binder) { return binder.bind(HandlerWrapper.class).annotatedWith(SECURITY_NAMED); }
[ "public", "static", "LinkedBindingBuilder", "<", "HandlerWrapper", ">", "bindSecurityHandler", "(", "final", "Binder", "binder", ")", "{", "return", "binder", ".", "bind", "(", "HandlerWrapper", ".", "class", ")", ".", "annotatedWith", "(", "SECURITY_NAMED", ")", ...
Bind a delegating security handler. Any request will be routed through this handler and can be allowed or denied by this handler. If no handler is bound, requests are forwarded to the internal handler collection.
[ "Bind", "a", "delegating", "security", "handler", ".", "Any", "request", "will", "be", "routed", "through", "this", "handler", "and", "can", "be", "allowed", "or", "denied", "by", "this", "handler", ".", "If", "no", "handler", "is", "bound", "requests", "a...
6a26bb852e8408e3499ad5d139961cdc6a96e857
https://github.com/NessComputing/components-ness-httpserver/blob/6a26bb852e8408e3499ad5d139961cdc6a96e857/src/main/java/com/nesscomputing/httpserver/HttpServerHandlerBinder.java#L82-L85
41,825
aoindustries/aoweb-framework
src/main/java/com/aoindustries/website/framework/DescriptionAutoListPage.java
DescriptionAutoListPage.printContentStart
@Override public void printContentStart( ChainWriter out, WebSiteRequest req, HttpServletResponse resp ) throws IOException, SQLException { out.print(getDescription()); }
java
@Override public void printContentStart( ChainWriter out, WebSiteRequest req, HttpServletResponse resp ) throws IOException, SQLException { out.print(getDescription()); }
[ "@", "Override", "public", "void", "printContentStart", "(", "ChainWriter", "out", ",", "WebSiteRequest", "req", ",", "HttpServletResponse", "resp", ")", "throws", "IOException", ",", "SQLException", "{", "out", ".", "print", "(", "getDescription", "(", ")", ")"...
Prints the content that will be put before the auto-generated list.
[ "Prints", "the", "content", "that", "will", "be", "put", "before", "the", "auto", "-", "generated", "list", "." ]
8e58af4f5dd898cd2fdb855ffa810a1ca6973ae0
https://github.com/aoindustries/aoweb-framework/blob/8e58af4f5dd898cd2fdb855ffa810a1ca6973ae0/src/main/java/com/aoindustries/website/framework/DescriptionAutoListPage.java#L54-L61
41,826
aoindustries/semanticcms-file-model
src/main/java/com/semanticcms/file/model/File.java
File.getElementIdTemplate
@Override protected String getElementIdTemplate() { ResourceRef rr = getResourceRef(); if(rr != null) { String path = rr.getPath().toString(); int slashBefore; if(path.endsWith(Path.SEPARATOR_STRING)) { slashBefore = path.lastIndexOf(Path.SEPARATOR_CHAR, path.length() - 2); } else { slashBefore...
java
@Override protected String getElementIdTemplate() { ResourceRef rr = getResourceRef(); if(rr != null) { String path = rr.getPath().toString(); int slashBefore; if(path.endsWith(Path.SEPARATOR_STRING)) { slashBefore = path.lastIndexOf(Path.SEPARATOR_CHAR, path.length() - 2); } else { slashBefore...
[ "@", "Override", "protected", "String", "getElementIdTemplate", "(", ")", "{", "ResourceRef", "rr", "=", "getResourceRef", "(", ")", ";", "if", "(", "rr", "!=", "null", ")", "{", "String", "path", "=", "rr", ".", "getPath", "(", ")", ".", "toString", "...
Does not include the size on the ID template, also strips any file extension if it will not leave the filename empty.
[ "Does", "not", "include", "the", "size", "on", "the", "ID", "template", "also", "strips", "any", "file", "extension", "if", "it", "will", "not", "leave", "the", "filename", "empty", "." ]
5995223e56140c81230b57f45021ecd8fa7b53bb
https://github.com/aoindustries/semanticcms-file-model/blob/5995223e56140c81230b57f45021ecd8fa7b53bb/src/main/java/com/semanticcms/file/model/File.java#L47-L66
41,827
aoindustries/semanticcms-file-model
src/main/java/com/semanticcms/file/model/File.java
File.getLabel
@Override public String getLabel() { ResourceStore rs; ResourceRef rr; synchronized(lock) { rs = this.resourceStore; rr = this.resourceRef; } if(rr != null) { String path = rr.getPath().toString(); boolean isDirectory = path.endsWith(Path.SEPARATOR_STRING); int slashBefore; if(isDirectory) ...
java
@Override public String getLabel() { ResourceStore rs; ResourceRef rr; synchronized(lock) { rs = this.resourceStore; rr = this.resourceRef; } if(rr != null) { String path = rr.getPath().toString(); boolean isDirectory = path.endsWith(Path.SEPARATOR_STRING); int slashBefore; if(isDirectory) ...
[ "@", "Override", "public", "String", "getLabel", "(", ")", "{", "ResourceStore", "rs", ";", "ResourceRef", "rr", ";", "synchronized", "(", "lock", ")", "{", "rs", "=", "this", ".", "resourceStore", ";", "rr", "=", "this", ".", "resourceRef", ";", "}", ...
The label is always the filename.
[ "The", "label", "is", "always", "the", "filename", "." ]
5995223e56140c81230b57f45021ecd8fa7b53bb
https://github.com/aoindustries/semanticcms-file-model/blob/5995223e56140c81230b57f45021ecd8fa7b53bb/src/main/java/com/semanticcms/file/model/File.java#L71-L114
41,828
aoindustries/aocode-public
src/main/java/com/aoindustries/servlet/http/Dispatcher.java
Dispatcher.getDispatchedPage
public static String getDispatchedPage(ServletRequest request) { String dispatchedPage = (String)request.getAttribute(DISPATCHED_PAGE_REQUEST_ATTRIBUTE); if(logger.isLoggable(Level.FINE)) logger.log( Level.FINE, "request={0}, dispatchedPage={1}", new Object[] { request, dispatchedPage } ); r...
java
public static String getDispatchedPage(ServletRequest request) { String dispatchedPage = (String)request.getAttribute(DISPATCHED_PAGE_REQUEST_ATTRIBUTE); if(logger.isLoggable(Level.FINE)) logger.log( Level.FINE, "request={0}, dispatchedPage={1}", new Object[] { request, dispatchedPage } ); r...
[ "public", "static", "String", "getDispatchedPage", "(", "ServletRequest", "request", ")", "{", "String", "dispatchedPage", "=", "(", "String", ")", "request", ".", "getAttribute", "(", "DISPATCHED_PAGE_REQUEST_ATTRIBUTE", ")", ";", "if", "(", "logger", ".", "isLog...
Gets the current-thread dispatched page or null if not set. @see #getCurrentPagePath(javax.servlet.http.HttpServletRequest) for the version that uses current request as a default.
[ "Gets", "the", "current", "-", "thread", "dispatched", "page", "or", "null", "if", "not", "set", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/servlet/http/Dispatcher.java#L100-L111
41,829
aoindustries/aocode-public
src/main/java/com/aoindustries/servlet/http/Dispatcher.java
Dispatcher.setDispatchedPage
public static void setDispatchedPage(ServletRequest request, String dispatchedPage) { if(logger.isLoggable(Level.FINE)) logger.log( Level.FINE, "request={0}, dispatchedPage={1}", new Object[] { request, dispatchedPage } ); request.setAttribute(DISPATCHED_PAGE_REQUEST_ATTRIBUTE, dispatchedPage)...
java
public static void setDispatchedPage(ServletRequest request, String dispatchedPage) { if(logger.isLoggable(Level.FINE)) logger.log( Level.FINE, "request={0}, dispatchedPage={1}", new Object[] { request, dispatchedPage } ); request.setAttribute(DISPATCHED_PAGE_REQUEST_ATTRIBUTE, dispatchedPage)...
[ "public", "static", "void", "setDispatchedPage", "(", "ServletRequest", "request", ",", "String", "dispatchedPage", ")", "{", "if", "(", "logger", ".", "isLoggable", "(", "Level", ".", "FINE", ")", ")", "logger", ".", "log", "(", "Level", ".", "FINE", ",",...
Sets the current-thread dispatched page.
[ "Sets", "the", "current", "-", "thread", "dispatched", "page", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/servlet/http/Dispatcher.java#L116-L126
41,830
aoindustries/semanticcms-dia-model
src/main/java/com/semanticcms/dia/model/Dia.java
Dia.getLabel
@Override public String getLabel() { String l = label; if(l != null) return l; String p = path; if(p != null) { String filename = p.substring(p.lastIndexOf('/') + 1); if(filename.endsWith(DOT_EXTENSION)) filename = filename.substring(0, filename.length() - DOT_EXTENSION.length()); if(filename.isEmpty(...
java
@Override public String getLabel() { String l = label; if(l != null) return l; String p = path; if(p != null) { String filename = p.substring(p.lastIndexOf('/') + 1); if(filename.endsWith(DOT_EXTENSION)) filename = filename.substring(0, filename.length() - DOT_EXTENSION.length()); if(filename.isEmpty(...
[ "@", "Override", "public", "String", "getLabel", "(", ")", "{", "String", "l", "=", "label", ";", "if", "(", "l", "!=", "null", ")", "return", "l", ";", "String", "p", "=", "path", ";", "if", "(", "p", "!=", "null", ")", "{", "String", "filename"...
If not set, defaults to the last path segment of path, with any ".dia" extension stripped.
[ "If", "not", "set", "defaults", "to", "the", "last", "path", "segment", "of", "path", "with", "any", ".", "dia", "extension", "stripped", "." ]
3855b92a491ccf9c61511604d40b68ed72e5a0a8
https://github.com/aoindustries/semanticcms-dia-model/blob/3855b92a491ccf9c61511604d40b68ed72e5a0a8/src/main/java/com/semanticcms/dia/model/Dia.java#L45-L57
41,831
nlalevee/jsourcemap
jsourcemap/src/java/org/hibnet/jsourcemap/SourceNode.java
SourceNode.fromStringWithSourceMap
public static SourceNode fromStringWithSourceMap(String aGeneratedCode, SourceMapConsumer aSourceMapConsumer, final String aRelativePath) { // The SourceNode we want to fill with the generated code // and the SourceMap final SourceNode node = new SourceNode(); // All even indices of thi...
java
public static SourceNode fromStringWithSourceMap(String aGeneratedCode, SourceMapConsumer aSourceMapConsumer, final String aRelativePath) { // The SourceNode we want to fill with the generated code // and the SourceMap final SourceNode node = new SourceNode(); // All even indices of thi...
[ "public", "static", "SourceNode", "fromStringWithSourceMap", "(", "String", "aGeneratedCode", ",", "SourceMapConsumer", "aSourceMapConsumer", ",", "final", "String", "aRelativePath", ")", "{", "// The SourceNode we want to fill with the generated code", "// and the SourceMap", "f...
Creates a SourceNode from generated code and a SourceMapConsumer. @param aGeneratedCode The generated code @param aSourceMapConsumer The SourceMap for the generated code @param aRelativePath Optional. The path that relative sources in the SourceMapConsumer should be relative to.
[ "Creates", "a", "SourceNode", "from", "generated", "code", "and", "a", "SourceMapConsumer", "." ]
361a99c73d51c11afa5579dd83d477c4d0345599
https://github.com/nlalevee/jsourcemap/blob/361a99c73d51c11afa5579dd83d477c4d0345599/jsourcemap/src/java/org/hibnet/jsourcemap/SourceNode.java#L110-L191
41,832
nlalevee/jsourcemap
jsourcemap/src/java/org/hibnet/jsourcemap/SourceNode.java
SourceNode.add
public void add(Object... aChunk) { List<Object> list; if (aChunk.length == 1 && aChunk[0] instanceof List) { @SuppressWarnings("unchecked") List<Object> l = (List<Object>) aChunk[0]; list = l; } else { list = Arrays.asList(aChunk); } ...
java
public void add(Object... aChunk) { List<Object> list; if (aChunk.length == 1 && aChunk[0] instanceof List) { @SuppressWarnings("unchecked") List<Object> l = (List<Object>) aChunk[0]; list = l; } else { list = Arrays.asList(aChunk); } ...
[ "public", "void", "add", "(", "Object", "...", "aChunk", ")", "{", "List", "<", "Object", ">", "list", ";", "if", "(", "aChunk", ".", "length", "==", "1", "&&", "aChunk", "[", "0", "]", "instanceof", "List", ")", "{", "@", "SuppressWarnings", "(", ...
Add a chunk of generated JS to this source node. @param aChunk A string snippet of generated JS code, another instance of SourceNode, or an array where each member is one of those things.
[ "Add", "a", "chunk", "of", "generated", "JS", "to", "this", "source", "node", "." ]
361a99c73d51c11afa5579dd83d477c4d0345599
https://github.com/nlalevee/jsourcemap/blob/361a99c73d51c11afa5579dd83d477c4d0345599/jsourcemap/src/java/org/hibnet/jsourcemap/SourceNode.java#L199-L217
41,833
nlalevee/jsourcemap
jsourcemap/src/java/org/hibnet/jsourcemap/SourceNode.java
SourceNode.prepend
public void prepend(Object... aChunk) { for (int i = aChunk.length - 1; i >= 0; i--) { if (aChunk[i] instanceof String) { this.prepend((String) aChunk[i]); } else if (aChunk[i] instanceof SourceNode) { this.prepend((SourceNode) aChunk[i]); } el...
java
public void prepend(Object... aChunk) { for (int i = aChunk.length - 1; i >= 0; i--) { if (aChunk[i] instanceof String) { this.prepend((String) aChunk[i]); } else if (aChunk[i] instanceof SourceNode) { this.prepend((SourceNode) aChunk[i]); } el...
[ "public", "void", "prepend", "(", "Object", "...", "aChunk", ")", "{", "for", "(", "int", "i", "=", "aChunk", ".", "length", "-", "1", ";", "i", ">=", "0", ";", "i", "--", ")", "{", "if", "(", "aChunk", "[", "i", "]", "instanceof", "String", ")...
Add a chunk of generated JS to the beginning of this source node. @param aChunk A string snippet of generated JS code, another instance of SourceNode, or an array where each member is one of those things.
[ "Add", "a", "chunk", "of", "generated", "JS", "to", "the", "beginning", "of", "this", "source", "node", "." ]
361a99c73d51c11afa5579dd83d477c4d0345599
https://github.com/nlalevee/jsourcemap/blob/361a99c73d51c11afa5579dd83d477c4d0345599/jsourcemap/src/java/org/hibnet/jsourcemap/SourceNode.java#L233-L243
41,834
nlalevee/jsourcemap
jsourcemap/src/java/org/hibnet/jsourcemap/SourceNode.java
SourceNode.join
public void join(String aSep) { List<Object> newChildren; int i; int len = this.children.size(); if (len > 0) { newChildren = new ArrayList<>(); for (i = 0; i < len - 1; i++) { newChildren.add(this.children.get(i)); newChildren.add(...
java
public void join(String aSep) { List<Object> newChildren; int i; int len = this.children.size(); if (len > 0) { newChildren = new ArrayList<>(); for (i = 0; i < len - 1; i++) { newChildren.add(this.children.get(i)); newChildren.add(...
[ "public", "void", "join", "(", "String", "aSep", ")", "{", "List", "<", "Object", ">", "newChildren", ";", "int", "i", ";", "int", "len", "=", "this", ".", "children", ".", "size", "(", ")", ";", "if", "(", "len", ">", "0", ")", "{", "newChildren...
Like `String.prototype.join` except for SourceNodes. Inserts `aStr` between each of `this.children`. @param aSep The separator.
[ "Like", "String", ".", "prototype", ".", "join", "except", "for", "SourceNodes", ".", "Inserts", "aStr", "between", "each", "of", "this", ".", "children", "." ]
361a99c73d51c11afa5579dd83d477c4d0345599
https://github.com/nlalevee/jsourcemap/blob/361a99c73d51c11afa5579dd83d477c4d0345599/jsourcemap/src/java/org/hibnet/jsourcemap/SourceNode.java#L284-L297
41,835
nlalevee/jsourcemap
jsourcemap/src/java/org/hibnet/jsourcemap/SourceNode.java
SourceNode.replaceRight
public void replaceRight(Pattern aPattern, String aReplacement) { Object lastChild = this.children.get(this.children.size() - 1); if (lastChild instanceof SourceNode) { ((SourceNode) lastChild).replaceRight(aPattern, aReplacement); } else if (lastChild instanceof String) { ...
java
public void replaceRight(Pattern aPattern, String aReplacement) { Object lastChild = this.children.get(this.children.size() - 1); if (lastChild instanceof SourceNode) { ((SourceNode) lastChild).replaceRight(aPattern, aReplacement); } else if (lastChild instanceof String) { ...
[ "public", "void", "replaceRight", "(", "Pattern", "aPattern", ",", "String", "aReplacement", ")", "{", "Object", "lastChild", "=", "this", ".", "children", ".", "get", "(", "this", ".", "children", ".", "size", "(", ")", "-", "1", ")", ";", "if", "(", ...
Call String.prototype.replace on the very right-most source snippet. Useful for trimming whitespace from the end of a source node, etc. @param aPattern The pattern to replace. @param aReplacement The thing to replace the pattern with.
[ "Call", "String", ".", "prototype", ".", "replace", "on", "the", "very", "right", "-", "most", "source", "snippet", ".", "Useful", "for", "trimming", "whitespace", "from", "the", "end", "of", "a", "source", "node", "etc", "." ]
361a99c73d51c11afa5579dd83d477c4d0345599
https://github.com/nlalevee/jsourcemap/blob/361a99c73d51c11afa5579dd83d477c4d0345599/jsourcemap/src/java/org/hibnet/jsourcemap/SourceNode.java#L307-L316
41,836
nlalevee/jsourcemap
jsourcemap/src/java/org/hibnet/jsourcemap/SourceNode.java
SourceNode.walkSourceContents
public void walkSourceContents(SourceWalker walker) { for (int i = 0, len = this.children.size(); i < len; i++) { if (this.children.get(i) instanceof SourceNode) { ((SourceNode) this.children.get(i)).walkSourceContents(walker); } } for (Entry<String, Stri...
java
public void walkSourceContents(SourceWalker walker) { for (int i = 0, len = this.children.size(); i < len; i++) { if (this.children.get(i) instanceof SourceNode) { ((SourceNode) this.children.get(i)).walkSourceContents(walker); } } for (Entry<String, Stri...
[ "public", "void", "walkSourceContents", "(", "SourceWalker", "walker", ")", "{", "for", "(", "int", "i", "=", "0", ",", "len", "=", "this", ".", "children", ".", "size", "(", ")", ";", "i", "<", "len", ";", "i", "++", ")", "{", "if", "(", "this",...
Walk over the tree of SourceNodes. The walking function is called for each source file content and is passed the filename and source content. @param aFn The traversal function.
[ "Walk", "over", "the", "tree", "of", "SourceNodes", ".", "The", "walking", "function", "is", "called", "for", "each", "source", "file", "content", "and", "is", "passed", "the", "filename", "and", "source", "content", "." ]
361a99c73d51c11afa5579dd83d477c4d0345599
https://github.com/nlalevee/jsourcemap/blob/361a99c73d51c11afa5579dd83d477c4d0345599/jsourcemap/src/java/org/hibnet/jsourcemap/SourceNode.java#L340-L350
41,837
aoindustries/semanticcms-core-model
src/main/java/com/semanticcms/core/model/Node.java
Node.getProperty
public Map<String,Object> getProperty() { // TODO: If we have properties volatile, could do the null and frozen cases outside the synchronized block // TODO: Would this be faster? synchronized(lock) { if(properties == null) return Collections.emptyMap(); if(frozen) return properties; return AoCollections...
java
public Map<String,Object> getProperty() { // TODO: If we have properties volatile, could do the null and frozen cases outside the synchronized block // TODO: Would this be faster? synchronized(lock) { if(properties == null) return Collections.emptyMap(); if(frozen) return properties; return AoCollections...
[ "public", "Map", "<", "String", ",", "Object", ">", "getProperty", "(", ")", "{", "// TODO: If we have properties volatile, could do the null and frozen cases outside the synchronized block", "// TODO: Would this be faster?", "synchronized", "(", "lock", ")", "{", "if", "(", ...
Gets an unmodifiable snapshot of all properties associated with a node. The returned map will not change, even if properties are added to the node.
[ "Gets", "an", "unmodifiable", "snapshot", "of", "all", "properties", "associated", "with", "a", "node", ".", "The", "returned", "map", "will", "not", "change", "even", "if", "properties", "are", "added", "to", "the", "node", "." ]
14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624
https://github.com/aoindustries/semanticcms-core-model/blob/14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624/src/main/java/com/semanticcms/core/model/Node.java#L135-L143
41,838
aoindustries/semanticcms-core-model
src/main/java/com/semanticcms/core/model/Node.java
Node.getChildElements
public List<Element> getChildElements() { synchronized(lock) { if(childElements == null) return Collections.emptyList(); if(frozen) return childElements; return AoCollections.unmodifiableCopyList(childElements); } }
java
public List<Element> getChildElements() { synchronized(lock) { if(childElements == null) return Collections.emptyList(); if(frozen) return childElements; return AoCollections.unmodifiableCopyList(childElements); } }
[ "public", "List", "<", "Element", ">", "getChildElements", "(", ")", "{", "synchronized", "(", "lock", ")", "{", "if", "(", "childElements", "==", "null", ")", "return", "Collections", ".", "emptyList", "(", ")", ";", "if", "(", "frozen", ")", "return", ...
Every node may potentially have child elements.
[ "Every", "node", "may", "potentially", "have", "child", "elements", "." ]
14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624
https://github.com/aoindustries/semanticcms-core-model/blob/14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624/src/main/java/com/semanticcms/core/model/Node.java#L170-L176
41,839
aoindustries/semanticcms-core-model
src/main/java/com/semanticcms/core/model/Node.java
Node.addChildElement
public Long addChildElement(Element childElement, ElementWriter elementWriter) { synchronized(lock) { checkNotFrozen(); if(childElements == null) childElements = new ArrayList<>(); childElements.add(childElement); if(elementWriters == null) elementWriters = new HashMap<>(); IdGenerator idGenerator = id...
java
public Long addChildElement(Element childElement, ElementWriter elementWriter) { synchronized(lock) { checkNotFrozen(); if(childElements == null) childElements = new ArrayList<>(); childElements.add(childElement); if(elementWriters == null) elementWriters = new HashMap<>(); IdGenerator idGenerator = id...
[ "public", "Long", "addChildElement", "(", "Element", "childElement", ",", "ElementWriter", "elementWriter", ")", "{", "synchronized", "(", "lock", ")", "{", "checkNotFrozen", "(", ")", ";", "if", "(", "childElements", "==", "null", ")", "childElements", "=", "...
Adds a child element to this node.
[ "Adds", "a", "child", "element", "to", "this", "node", "." ]
14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624
https://github.com/aoindustries/semanticcms-core-model/blob/14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624/src/main/java/com/semanticcms/core/model/Node.java#L181-L199
41,840
aoindustries/semanticcms-core-model
src/main/java/com/semanticcms/core/model/Node.java
Node.getPageLinks
public Set<PageRef> getPageLinks() { synchronized(lock) { if(pageLinks == null) return Collections.emptySet(); if(frozen) return pageLinks; return AoCollections.unmodifiableCopySet(pageLinks); } }
java
public Set<PageRef> getPageLinks() { synchronized(lock) { if(pageLinks == null) return Collections.emptySet(); if(frozen) return pageLinks; return AoCollections.unmodifiableCopySet(pageLinks); } }
[ "public", "Set", "<", "PageRef", ">", "getPageLinks", "(", ")", "{", "synchronized", "(", "lock", ")", "{", "if", "(", "pageLinks", "==", "null", ")", "return", "Collections", ".", "emptySet", "(", ")", ";", "if", "(", "frozen", ")", "return", "pageLin...
Gets the set of all pages this node directly links to; this does not include pages linked to by child elements.
[ "Gets", "the", "set", "of", "all", "pages", "this", "node", "directly", "links", "to", ";", "this", "does", "not", "include", "pages", "linked", "to", "by", "child", "elements", "." ]
14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624
https://github.com/aoindustries/semanticcms-core-model/blob/14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624/src/main/java/com/semanticcms/core/model/Node.java#L211-L217
41,841
aoindustries/semanticcms-core-model
src/main/java/com/semanticcms/core/model/Node.java
Node.getBody
public BufferResult getBody() { BufferResult b = body; if(b == null) return EmptyResult.getInstance(); return b; }
java
public BufferResult getBody() { BufferResult b = body; if(b == null) return EmptyResult.getInstance(); return b; }
[ "public", "BufferResult", "getBody", "(", ")", "{", "BufferResult", "b", "=", "body", ";", "if", "(", "b", "==", "null", ")", "return", "EmptyResult", ".", "getInstance", "(", ")", ";", "return", "b", ";", "}" ]
Every node may potentially have HTML body.
[ "Every", "node", "may", "potentially", "have", "HTML", "body", "." ]
14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624
https://github.com/aoindustries/semanticcms-core-model/blob/14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624/src/main/java/com/semanticcms/core/model/Node.java#L230-L234
41,842
aoindustries/semanticcms-core-model
src/main/java/com/semanticcms/core/model/Node.java
Node.getLabel
public String getLabel() { StringBuilder sb = new StringBuilder(); try { appendLabel(sb); } catch(IOException e) { throw new AssertionError("Should not happen because using StringBuilder", e); } return sb.toString(); }
java
public String getLabel() { StringBuilder sb = new StringBuilder(); try { appendLabel(sb); } catch(IOException e) { throw new AssertionError("Should not happen because using StringBuilder", e); } return sb.toString(); }
[ "public", "String", "getLabel", "(", ")", "{", "StringBuilder", "sb", "=", "new", "StringBuilder", "(", ")", ";", "try", "{", "appendLabel", "(", "sb", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "throw", "new", "AssertionError", "(", "\...
Gets a short description, useful for links and lists, for this node. This default implementation calls {@link #appendLabel(java.lang.Appendable)}, thus you *must* override at least this method or {@link #appendLabel(java.lang.Appendable)}. @throws StackOverflowError if {@link #appendLabel(java.lang.Appendable)} not o...
[ "Gets", "a", "short", "description", "useful", "for", "links", "and", "lists", "for", "this", "node", "." ]
14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624
https://github.com/aoindustries/semanticcms-core-model/blob/14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624/src/main/java/com/semanticcms/core/model/Node.java#L254-L262
41,843
aoindustries/semanticcms-core-model
src/main/java/com/semanticcms/core/model/Node.java
Node.findTopLevelElementsRecurse
private static <E extends Element> List<E> findTopLevelElementsRecurse(Class<E> elementType, Node node, List<E> matches) { for(Element elem : node.getChildElements()) { if(elementType.isInstance(elem)) { // Found match if(matches == null) matches = new ArrayList<>(); matches.add(elementType.cast(elem))...
java
private static <E extends Element> List<E> findTopLevelElementsRecurse(Class<E> elementType, Node node, List<E> matches) { for(Element elem : node.getChildElements()) { if(elementType.isInstance(elem)) { // Found match if(matches == null) matches = new ArrayList<>(); matches.add(elementType.cast(elem))...
[ "private", "static", "<", "E", "extends", "Element", ">", "List", "<", "E", ">", "findTopLevelElementsRecurse", "(", "Class", "<", "E", ">", "elementType", ",", "Node", "node", ",", "List", "<", "E", ">", "matches", ")", "{", "for", "(", "Element", "el...
Recursive component of findTopLevelElements. @see #findTopLevelElements
[ "Recursive", "component", "of", "findTopLevelElements", "." ]
14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624
https://github.com/aoindustries/semanticcms-core-model/blob/14bdbe3f3d69b2b337129c5b1afcaa9e87cb5624/src/main/java/com/semanticcms/core/model/Node.java#L299-L311
41,844
aoindustries/ao-messaging-base
src/main/java/com/aoindustries/messaging/base/AbstractSocket.java
AbstractSocket.setRemoteSocketAddress
protected void setRemoteSocketAddress(final SocketAddress newRemoteSocketAddress) { synchronized(remoteSocketAddressLock) { final SocketAddress oldRemoteSocketAddress = this.remoteSocketAddress; if(!newRemoteSocketAddress.equals(oldRemoteSocketAddress)) { this.remoteSocketAddress = newRemoteSocketAddress; ...
java
protected void setRemoteSocketAddress(final SocketAddress newRemoteSocketAddress) { synchronized(remoteSocketAddressLock) { final SocketAddress oldRemoteSocketAddress = this.remoteSocketAddress; if(!newRemoteSocketAddress.equals(oldRemoteSocketAddress)) { this.remoteSocketAddress = newRemoteSocketAddress; ...
[ "protected", "void", "setRemoteSocketAddress", "(", "final", "SocketAddress", "newRemoteSocketAddress", ")", "{", "synchronized", "(", "remoteSocketAddressLock", ")", "{", "final", "SocketAddress", "oldRemoteSocketAddress", "=", "this", ".", "remoteSocketAddress", ";", "i...
Sets the most recently seen remote address. If the provided value is different than the previous, will notify all listeners.
[ "Sets", "the", "most", "recently", "seen", "remote", "address", ".", "If", "the", "provided", "value", "is", "different", "than", "the", "previous", "will", "notify", "all", "listeners", "." ]
77921e05e06cf7999f313755d0bff1cc8b6b0228
https://github.com/aoindustries/ao-messaging-base/blob/77921e05e06cf7999f313755d0bff1cc8b6b0228/src/main/java/com/aoindustries/messaging/base/AbstractSocket.java#L121-L145
41,845
aoindustries/ao-messaging-base
src/main/java/com/aoindustries/messaging/base/AbstractSocket.java
AbstractSocket.start
@Override public void start( Callback<? super Socket> onStart, Callback<? super Exception> onError ) throws IllegalStateException { if(isClosed()) throw new IllegalStateException("Socket is closed"); startImpl(onStart, onError); }
java
@Override public void start( Callback<? super Socket> onStart, Callback<? super Exception> onError ) throws IllegalStateException { if(isClosed()) throw new IllegalStateException("Socket is closed"); startImpl(onStart, onError); }
[ "@", "Override", "public", "void", "start", "(", "Callback", "<", "?", "super", "Socket", ">", "onStart", ",", "Callback", "<", "?", "super", "Exception", ">", "onError", ")", "throws", "IllegalStateException", "{", "if", "(", "isClosed", "(", ")", ")", ...
Makes sure the socket is not already closed then calls startImpl. @see #startImpl(com.aoindustries.util.concurrent.Callback, com.aoindustries.util.concurrent.Callback)
[ "Makes", "sure", "the", "socket", "is", "not", "already", "closed", "then", "calls", "startImpl", "." ]
77921e05e06cf7999f313755d0bff1cc8b6b0228
https://github.com/aoindustries/ao-messaging-base/blob/77921e05e06cf7999f313755d0bff1cc8b6b0228/src/main/java/com/aoindustries/messaging/base/AbstractSocket.java#L152-L159
41,846
aoindustries/semanticcms-news-view
src/main/java/com/semanticcms/news/view/NewsView.java
NewsView.getLastModified
@Override public ReadableInstant getLastModified( ServletContext servletContext, HttpServletRequest request, HttpServletResponse response, Page page ) throws ServletException, IOException { List<News> news = NewsUtils.findAllNews(servletContext, request, response, page); return news.isEmpty() ? null : new...
java
@Override public ReadableInstant getLastModified( ServletContext servletContext, HttpServletRequest request, HttpServletResponse response, Page page ) throws ServletException, IOException { List<News> news = NewsUtils.findAllNews(servletContext, request, response, page); return news.isEmpty() ? null : new...
[ "@", "Override", "public", "ReadableInstant", "getLastModified", "(", "ServletContext", "servletContext", ",", "HttpServletRequest", "request", ",", "HttpServletResponse", "response", ",", "Page", "page", ")", "throws", "ServletException", ",", "IOException", "{", "List...
The last modified time of news view is the pubDate of the most recent news entry.
[ "The", "last", "modified", "time", "of", "news", "view", "is", "the", "pubDate", "of", "the", "most", "recent", "news", "entry", "." ]
5d45895afa2942b4a8ea9207c55a8d8b566584a8
https://github.com/aoindustries/semanticcms-news-view/blob/5d45895afa2942b4a8ea9207c55a8d8b566584a8/src/main/java/com/semanticcms/news/view/NewsView.java#L82-L91
41,847
aoindustries/aoweb-framework
src/main/java/com/aoindustries/website/framework/DumpURLs.java
DumpURLs.search
@Override public void search( String[] words, WebSiteRequest req, HttpServletResponse response, List<SearchResult> results, AoByteArrayOutputStream bytes, List<WebPage> finishedPages ) { }
java
@Override public void search( String[] words, WebSiteRequest req, HttpServletResponse response, List<SearchResult> results, AoByteArrayOutputStream bytes, List<WebPage> finishedPages ) { }
[ "@", "Override", "public", "void", "search", "(", "String", "[", "]", "words", ",", "WebSiteRequest", "req", ",", "HttpServletResponse", "response", ",", "List", "<", "SearchResult", ">", "results", ",", "AoByteArrayOutputStream", "bytes", ",", "List", "<", "W...
Do not include this in the search results.
[ "Do", "not", "include", "this", "in", "the", "search", "results", "." ]
8e58af4f5dd898cd2fdb855ffa810a1ca6973ae0
https://github.com/aoindustries/aoweb-framework/blob/8e58af4f5dd898cd2fdb855ffa810a1ca6973ae0/src/main/java/com/aoindustries/website/framework/DumpURLs.java#L90-L99
41,848
probedock/probedock-java
src/main/java/io/probedock/client/core/connector/Connector.java
Connector.send
public boolean send(ProbeTestRun testRun) throws MalformedURLException { LOGGER.info("Connected to Probe Dock API at " + configuration.getServerConfiguration().getApiUrl()); // Print the payload to the outout stream if (configuration.isPayloadPrint()) { try (OutputStreamWriter testRunOsw = new OutputStreamWri...
java
public boolean send(ProbeTestRun testRun) throws MalformedURLException { LOGGER.info("Connected to Probe Dock API at " + configuration.getServerConfiguration().getApiUrl()); // Print the payload to the outout stream if (configuration.isPayloadPrint()) { try (OutputStreamWriter testRunOsw = new OutputStreamWri...
[ "public", "boolean", "send", "(", "ProbeTestRun", "testRun", ")", "throws", "MalformedURLException", "{", "LOGGER", ".", "info", "(", "\"Connected to Probe Dock API at \"", "+", "configuration", ".", "getServerConfiguration", "(", ")", ".", "getApiUrl", "(", ")", ")...
Send a payload to Probe Dock @param testRun The test run to send @return True if the test run successfully sent to Probe Dock @throws MalformedURLException
[ "Send", "a", "payload", "to", "Probe", "Dock" ]
92ee6634ba4fe3fdffeb4e202f5372ef947a67c3
https://github.com/probedock/probedock-java/blob/92ee6634ba4fe3fdffeb4e202f5372ef947a67c3/src/main/java/io/probedock/client/core/connector/Connector.java#L50-L62
41,849
probedock/probedock-java
src/main/java/io/probedock/client/core/connector/Connector.java
Connector.openConnection
private HttpURLConnection openConnection(ServerConfiguration configuration, URL url) throws IOException { if (configuration.hasProxyConfiguration()) { Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(configuration.getProxyConfiguration().getHost(), configuration.getProxyConfiguration().getPort())); ...
java
private HttpURLConnection openConnection(ServerConfiguration configuration, URL url) throws IOException { if (configuration.hasProxyConfiguration()) { Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(configuration.getProxyConfiguration().getHost(), configuration.getProxyConfiguration().getPort())); ...
[ "private", "HttpURLConnection", "openConnection", "(", "ServerConfiguration", "configuration", ",", "URL", "url", ")", "throws", "IOException", "{", "if", "(", "configuration", ".", "hasProxyConfiguration", "(", ")", ")", "{", "Proxy", "proxy", "=", "new", "Proxy"...
Open a connection regarding the configuration and the URL @param configuration The configuration to get the proxy information if necessary @param url The URL to open the connection from @return The opened connection @throws IOException In case of error when opening the connection
[ "Open", "a", "connection", "regarding", "the", "configuration", "and", "the", "URL" ]
92ee6634ba4fe3fdffeb4e202f5372ef947a67c3
https://github.com/probedock/probedock-java/blob/92ee6634ba4fe3fdffeb4e202f5372ef947a67c3/src/main/java/io/probedock/client/core/connector/Connector.java#L172-L180
41,850
aoindustries/aocode-public
src/main/java/com/aoindustries/awt/ImageLoader.java
ImageLoader.loadImage
public void loadImage() throws InterruptedException { synchronized(this) { status=0; image.getSource().startProduction(this); while((status&(IMAGEABORTED|IMAGEERROR|SINGLEFRAMEDONE|STATICIMAGEDONE))==0) { wait(); } } }
java
public void loadImage() throws InterruptedException { synchronized(this) { status=0; image.getSource().startProduction(this); while((status&(IMAGEABORTED|IMAGEERROR|SINGLEFRAMEDONE|STATICIMAGEDONE))==0) { wait(); } } }
[ "public", "void", "loadImage", "(", ")", "throws", "InterruptedException", "{", "synchronized", "(", "this", ")", "{", "status", "=", "0", ";", "image", ".", "getSource", "(", ")", ".", "startProduction", "(", "this", ")", ";", "while", "(", "(", "status...
Loads an image and returns when a frame is done, the image is done, an error occurs, or the image is aborted.
[ "Loads", "an", "image", "and", "returns", "when", "a", "frame", "is", "done", "the", "image", "is", "done", "an", "error", "occurs", "or", "the", "image", "is", "aborted", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/awt/ImageLoader.java#L57-L65
41,851
buschmais/jqa-javaee6-plugin
src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java
WebXmlScannerPlugin.createFilter
private FilterDescriptor createFilter(FilterType filterType, Map<String, FilterDescriptor> filters, ScannerContext context) { Store store = context.getStore(); FilterDescriptor filterDescriptor = getOrCreateNamedDescriptor(FilterDescriptor.class, filterType.getFilterName().getValue(), filters, store); ...
java
private FilterDescriptor createFilter(FilterType filterType, Map<String, FilterDescriptor> filters, ScannerContext context) { Store store = context.getStore(); FilterDescriptor filterDescriptor = getOrCreateNamedDescriptor(FilterDescriptor.class, filterType.getFilterName().getValue(), filters, store); ...
[ "private", "FilterDescriptor", "createFilter", "(", "FilterType", "filterType", ",", "Map", "<", "String", ",", "FilterDescriptor", ">", "filters", ",", "ScannerContext", "context", ")", "{", "Store", "store", "=", "context", ".", "getStore", "(", ")", ";", "F...
Create a filter descriptor. @param filterType The XML filter type. @param context The scanner context. @return The filter descriptor.
[ "Create", "a", "filter", "descriptor", "." ]
f5776604d9255206807e5aca90b8767bde494e14
https://github.com/buschmais/jqa-javaee6-plugin/blob/f5776604d9255206807e5aca90b8767bde494e14/src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java#L269-L294
41,852
buschmais/jqa-javaee6-plugin
src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java
WebXmlScannerPlugin.createFilterMapping
private FilterMappingDescriptor createFilterMapping(FilterMappingType filterMappingType, Map<String, FilterDescriptor> filters, Map<String, ServletDescriptor> servlets, Store store) { FilterMappingDescriptor filterMappingDescriptor = store.create(FilterMappingDescriptor.class); FilterNameTyp...
java
private FilterMappingDescriptor createFilterMapping(FilterMappingType filterMappingType, Map<String, FilterDescriptor> filters, Map<String, ServletDescriptor> servlets, Store store) { FilterMappingDescriptor filterMappingDescriptor = store.create(FilterMappingDescriptor.class); FilterNameTyp...
[ "private", "FilterMappingDescriptor", "createFilterMapping", "(", "FilterMappingType", "filterMappingType", ",", "Map", "<", "String", ",", "FilterDescriptor", ">", "filters", ",", "Map", "<", "String", ",", "ServletDescriptor", ">", "servlets", ",", "Store", "store",...
Create a filter mapping descriptor. @param filterMappingType The XML filter mapping type. @param servlets The map of known servlets. @param store The store. @return The filter mapping descriptor.
[ "Create", "a", "filter", "mapping", "descriptor", "." ]
f5776604d9255206807e5aca90b8767bde494e14
https://github.com/buschmais/jqa-javaee6-plugin/blob/f5776604d9255206807e5aca90b8767bde494e14/src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java#L307-L331
41,853
buschmais/jqa-javaee6-plugin
src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java
WebXmlScannerPlugin.getOrCreateNamedDescriptor
private <T extends NamedDescriptor> T getOrCreateNamedDescriptor(Class<T> type, String name, Map<String, T> descriptors, Store store) { T descriptor = descriptors.get(name); if (descriptor == null) { descriptor = store.create(type); descriptor.setName(name); descripto...
java
private <T extends NamedDescriptor> T getOrCreateNamedDescriptor(Class<T> type, String name, Map<String, T> descriptors, Store store) { T descriptor = descriptors.get(name); if (descriptor == null) { descriptor = store.create(type); descriptor.setName(name); descripto...
[ "private", "<", "T", "extends", "NamedDescriptor", ">", "T", "getOrCreateNamedDescriptor", "(", "Class", "<", "T", ">", "type", ",", "String", "name", ",", "Map", "<", "String", ",", "T", ">", "descriptors", ",", "Store", "store", ")", "{", "T", "descrip...
Get or create a named descriptor. @param type The descriptor type. @param name The name. @param descriptors The map of known named descriptors. @param store The store. @return The servlet descriptor.
[ "Get", "or", "create", "a", "named", "descriptor", "." ]
f5776604d9255206807e5aca90b8767bde494e14
https://github.com/buschmais/jqa-javaee6-plugin/blob/f5776604d9255206807e5aca90b8767bde494e14/src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java#L439-L447
41,854
buschmais/jqa-javaee6-plugin
src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java
WebXmlScannerPlugin.createParamValue
private ParamValueDescriptor createParamValue(ParamValueType paramValueType, Store store) { ParamValueDescriptor paramValueDescriptor = store.create(ParamValueDescriptor.class); for (DescriptionType descriptionType : paramValueType.getDescription()) { DescriptionDescriptor descriptionDescrip...
java
private ParamValueDescriptor createParamValue(ParamValueType paramValueType, Store store) { ParamValueDescriptor paramValueDescriptor = store.create(ParamValueDescriptor.class); for (DescriptionType descriptionType : paramValueType.getDescription()) { DescriptionDescriptor descriptionDescrip...
[ "private", "ParamValueDescriptor", "createParamValue", "(", "ParamValueType", "paramValueType", ",", "Store", "store", ")", "{", "ParamValueDescriptor", "paramValueDescriptor", "=", "store", ".", "create", "(", "ParamValueDescriptor", ".", "class", ")", ";", "for", "(...
Create a param value descriptor. @param paramValueType The XML param value type. @param store The store. @return The param value descriptor.
[ "Create", "a", "param", "value", "descriptor", "." ]
f5776604d9255206807e5aca90b8767bde494e14
https://github.com/buschmais/jqa-javaee6-plugin/blob/f5776604d9255206807e5aca90b8767bde494e14/src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java#L458-L470
41,855
buschmais/jqa-javaee6-plugin
src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java
WebXmlScannerPlugin.setAsyncSupported
private void setAsyncSupported(AsyncSupportedDescriptor asyncSupportedDescriptor, TrueFalseType asyncSupported) { if (asyncSupported != null) { asyncSupportedDescriptor.setAsyncSupported(asyncSupported.isValue()); } }
java
private void setAsyncSupported(AsyncSupportedDescriptor asyncSupportedDescriptor, TrueFalseType asyncSupported) { if (asyncSupported != null) { asyncSupportedDescriptor.setAsyncSupported(asyncSupported.isValue()); } }
[ "private", "void", "setAsyncSupported", "(", "AsyncSupportedDescriptor", "asyncSupportedDescriptor", ",", "TrueFalseType", "asyncSupported", ")", "{", "if", "(", "asyncSupported", "!=", "null", ")", "{", "asyncSupportedDescriptor", ".", "setAsyncSupported", "(", "asyncSup...
Set the value for an async supported on the given descriptor. @param asyncSupportedDescriptor The async supported descriptor. @param asyncSupported The value.
[ "Set", "the", "value", "for", "an", "async", "supported", "on", "the", "given", "descriptor", "." ]
f5776604d9255206807e5aca90b8767bde494e14
https://github.com/buschmais/jqa-javaee6-plugin/blob/f5776604d9255206807e5aca90b8767bde494e14/src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java#L480-L484
41,856
buschmais/jqa-javaee6-plugin
src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java
WebXmlScannerPlugin.createServletMapping
private ServletMappingDescriptor createServletMapping(ServletMappingType servletMappingType, Map<String, ServletDescriptor> servlets, Store store) { ServletMappingDescriptor servletMappingDescriptor = store.create(ServletMappingDescriptor.class); ServletNameType servletName = servletMappingType.getServl...
java
private ServletMappingDescriptor createServletMapping(ServletMappingType servletMappingType, Map<String, ServletDescriptor> servlets, Store store) { ServletMappingDescriptor servletMappingDescriptor = store.create(ServletMappingDescriptor.class); ServletNameType servletName = servletMappingType.getServl...
[ "private", "ServletMappingDescriptor", "createServletMapping", "(", "ServletMappingType", "servletMappingType", ",", "Map", "<", "String", ",", "ServletDescriptor", ">", "servlets", ",", "Store", "store", ")", "{", "ServletMappingDescriptor", "servletMappingDescriptor", "="...
Create a servlet mapping descriptor. @param servletMappingType The XML servlet mapping type. @param store The store. @return The servlet mapping descriptor.
[ "Create", "a", "servlet", "mapping", "descriptor", "." ]
f5776604d9255206807e5aca90b8767bde494e14
https://github.com/buschmais/jqa-javaee6-plugin/blob/f5776604d9255206807e5aca90b8767bde494e14/src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java#L495-L505
41,857
buschmais/jqa-javaee6-plugin
src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java
WebXmlScannerPlugin.createSessionConfig
private SessionConfigDescriptor createSessionConfig(SessionConfigType sessionConfigType, Store store) { SessionConfigDescriptor sessionConfigDescriptor = store.create(SessionConfigDescriptor.class); XsdIntegerType sessionTimeout = sessionConfigType.getSessionTimeout(); if (sessionTimeout != null...
java
private SessionConfigDescriptor createSessionConfig(SessionConfigType sessionConfigType, Store store) { SessionConfigDescriptor sessionConfigDescriptor = store.create(SessionConfigDescriptor.class); XsdIntegerType sessionTimeout = sessionConfigType.getSessionTimeout(); if (sessionTimeout != null...
[ "private", "SessionConfigDescriptor", "createSessionConfig", "(", "SessionConfigType", "sessionConfigType", ",", "Store", "store", ")", "{", "SessionConfigDescriptor", "sessionConfigDescriptor", "=", "store", ".", "create", "(", "SessionConfigDescriptor", ".", "class", ")",...
Create a session config descriptor. @param sessionConfigType The XML session config type. @param store The store. @return The session config descriptor.
[ "Create", "a", "session", "config", "descriptor", "." ]
f5776604d9255206807e5aca90b8767bde494e14
https://github.com/buschmais/jqa-javaee6-plugin/blob/f5776604d9255206807e5aca90b8767bde494e14/src/main/java/com/buschmais/jqassistant/plugin/javaee6/impl/scanner/WebXmlScannerPlugin.java#L516-L523
41,858
aoindustries/aocode-public
src/main/java/com/aoindustries/io/PaddingOutputStream.java
PaddingOutputStream.finish
public void finish() throws IOException { int lastBlockSize = (int)(byteCount % blockSize); if(lastBlockSize!=0) { while(lastBlockSize<blockSize) { out.write(padding); byteCount++; lastBlockSize++; } } out.flush(); }
java
public void finish() throws IOException { int lastBlockSize = (int)(byteCount % blockSize); if(lastBlockSize!=0) { while(lastBlockSize<blockSize) { out.write(padding); byteCount++; lastBlockSize++; } } out.flush(); }
[ "public", "void", "finish", "(", ")", "throws", "IOException", "{", "int", "lastBlockSize", "=", "(", "int", ")", "(", "byteCount", "%", "blockSize", ")", ";", "if", "(", "lastBlockSize", "!=", "0", ")", "{", "while", "(", "lastBlockSize", "<", "blockSiz...
Pads and flushes without closing the underlying stream.
[ "Pads", "and", "flushes", "without", "closing", "the", "underlying", "stream", "." ]
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/io/PaddingOutputStream.java#L67-L77
41,859
aoindustries/aocode-public
src/main/java/com/aoindustries/io/LogFollower.java
LogFollower.detectFileChange
private void detectFileChange() throws IOException { checkClosed(); assert Thread.holdsLock(filePosLock); while(!file.exists()) { try { System.err.println("File not found, waiting: " + file.getPath()); Thread.sleep(pollInterval); } catch(InterruptedException e) { InterruptedIOException newExc = ...
java
private void detectFileChange() throws IOException { checkClosed(); assert Thread.holdsLock(filePosLock); while(!file.exists()) { try { System.err.println("File not found, waiting: " + file.getPath()); Thread.sleep(pollInterval); } catch(InterruptedException e) { InterruptedIOException newExc = ...
[ "private", "void", "detectFileChange", "(", ")", "throws", "IOException", "{", "checkClosed", "(", ")", ";", "assert", "Thread", ".", "holdsLock", "(", "filePosLock", ")", ";", "while", "(", "!", "file", ".", "exists", "(", ")", ")", "{", "try", "{", "...
Checks the current position in the file. Detects if the file has changed in length. If closed, throws an exception. If file doesn't exist, waits until it does exist.
[ "Checks", "the", "current", "position", "in", "the", "file", ".", "Detects", "if", "the", "file", "has", "changed", "in", "length", ".", "If", "closed", "throws", "an", "exception", ".", "If", "file", "doesn", "t", "exist", "waits", "until", "it", "does"...
c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3
https://github.com/aoindustries/aocode-public/blob/c7bc1d08aee1d02dfaeeb1421fad21aca1aad4c3/src/main/java/com/aoindustries/io/LogFollower.java#L84-L100
41,860
k3po/k3po
k3po.pcap.converter/src/main/java/org/kaazing/k3po/pcap/converter/internal/author/composer/TcpServerComposer.java
TcpServerComposer.processSynAckPacket
protected void processSynAckPacket(Packet packet) { String serverIp = packet.getSrcIpAddr(); int serverPort = packet.getSrcPort(); String clientIp = packet.getDestIpAddr(); int clientPort = packet.getDestPort(); String clientId = makeClientId(clientIp, clientPort); TcpSer...
java
protected void processSynAckPacket(Packet packet) { String serverIp = packet.getSrcIpAddr(); int serverPort = packet.getSrcPort(); String clientIp = packet.getDestIpAddr(); int clientPort = packet.getDestPort(); String clientId = makeClientId(clientIp, clientPort); TcpSer...
[ "protected", "void", "processSynAckPacket", "(", "Packet", "packet", ")", "{", "String", "serverIp", "=", "packet", ".", "getSrcIpAddr", "(", ")", ";", "int", "serverPort", "=", "packet", ".", "getSrcPort", "(", ")", ";", "String", "clientIp", "=", "packet",...
Processes the syn-ack packet which notes the start of tcp conversation @param packet
[ "Processes", "the", "syn", "-", "ack", "packet", "which", "notes", "the", "start", "of", "tcp", "conversation" ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/k3po.pcap.converter/src/main/java/org/kaazing/k3po/pcap/converter/internal/author/composer/TcpServerComposer.java#L124-L142
41,861
k3po/k3po
k3po.pcap.converter/src/main/java/org/kaazing/k3po/pcap/converter/internal/author/composer/TcpClientComposer.java
TcpClientComposer.processSynAckPacket
protected void processSynAckPacket(Packet packet) { Integer clientPort = packet.getDestPort(); Integer serverPort = packet.getSrcPort(); String serverIp = packet.getSrcIpAddr(); TcpClientScript scriptFragmentWriter = scripts.get(clientPort); if ( scriptFragmentWriter == null ) { ...
java
protected void processSynAckPacket(Packet packet) { Integer clientPort = packet.getDestPort(); Integer serverPort = packet.getSrcPort(); String serverIp = packet.getSrcIpAddr(); TcpClientScript scriptFragmentWriter = scripts.get(clientPort); if ( scriptFragmentWriter == null ) { ...
[ "protected", "void", "processSynAckPacket", "(", "Packet", "packet", ")", "{", "Integer", "clientPort", "=", "packet", ".", "getDestPort", "(", ")", ";", "Integer", "serverPort", "=", "packet", ".", "getSrcPort", "(", ")", ";", "String", "serverIp", "=", "pa...
Process a connection packet which is read as an syn-ack @param packet
[ "Process", "a", "connection", "packet", "which", "is", "read", "as", "an", "syn", "-", "ack" ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/k3po.pcap.converter/src/main/java/org/kaazing/k3po/pcap/converter/internal/author/composer/TcpClientComposer.java#L126-L143
41,862
k3po/k3po
driver/src/main/java/org/kaazing/k3po/driver/internal/behavior/handler/codec/ReadByteArrayBytesDecoder.java
ReadByteArrayBytesDecoder.readBuffer
@Override public byte[] readBuffer(final ChannelBuffer buffer) { int len = getLength(); byte[] matched = new byte[len]; buffer.readBytes(matched); return matched; }
java
@Override public byte[] readBuffer(final ChannelBuffer buffer) { int len = getLength(); byte[] matched = new byte[len]; buffer.readBytes(matched); return matched; }
[ "@", "Override", "public", "byte", "[", "]", "readBuffer", "(", "final", "ChannelBuffer", "buffer", ")", "{", "int", "len", "=", "getLength", "(", ")", ";", "byte", "[", "]", "matched", "=", "new", "byte", "[", "len", "]", ";", "buffer", ".", "readBy...
Read the data into an array of bytes
[ "Read", "the", "data", "into", "an", "array", "of", "bytes" ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/driver/src/main/java/org/kaazing/k3po/driver/internal/behavior/handler/codec/ReadByteArrayBytesDecoder.java#L35-L41
41,863
k3po/k3po
specification/ws/src/main/java/org/kaazing/specification/ws/internal/Functions.java
Functions.randomizeLetterCase
@Function public static String randomizeLetterCase(String text) { StringBuilder result = new StringBuilder(); for (int i = 0; i < text.length(); i++) { char c = text.charAt(i); if (RANDOM.nextBoolean()) { c = toUpperCase(c); } else { ...
java
@Function public static String randomizeLetterCase(String text) { StringBuilder result = new StringBuilder(); for (int i = 0; i < text.length(); i++) { char c = text.charAt(i); if (RANDOM.nextBoolean()) { c = toUpperCase(c); } else { ...
[ "@", "Function", "public", "static", "String", "randomizeLetterCase", "(", "String", "text", ")", "{", "StringBuilder", "result", "=", "new", "StringBuilder", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "text", ".", "length", "(", "...
Takes a string and randomizes which letters in the text are upper or lower case @param text @return
[ "Takes", "a", "string", "and", "randomizes", "which", "letters", "in", "the", "text", "are", "upper", "or", "lower", "case" ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/specification/ws/src/main/java/org/kaazing/specification/ws/internal/Functions.java#L116-L129
41,864
k3po/k3po
driver/src/main/java/org/kaazing/k3po/driver/internal/behavior/visitor/GenerateConfigurationVisitor.java
GenerateConfigurationVisitor.visit
@Override public Configuration visit(AstConnectNode connectNode, State state) { // masking is a no-op by default for each stream state.readUnmasker = Masker.IDENTITY_MASKER; state.writeMasker = Masker.IDENTITY_MASKER; state.pipelineAsMap = new LinkedHashMap<>(); for (AstSt...
java
@Override public Configuration visit(AstConnectNode connectNode, State state) { // masking is a no-op by default for each stream state.readUnmasker = Masker.IDENTITY_MASKER; state.writeMasker = Masker.IDENTITY_MASKER; state.pipelineAsMap = new LinkedHashMap<>(); for (AstSt...
[ "@", "Override", "public", "Configuration", "visit", "(", "AstConnectNode", "connectNode", ",", "State", "state", ")", "{", "// masking is a no-op by default for each stream", "state", ".", "readUnmasker", "=", "Masker", ".", "IDENTITY_MASKER", ";", "state", ".", "wri...
Creates the pipeline, visits all streamable nodes and the creates the ClientBootstrap with the pipeline and remote address,
[ "Creates", "the", "pipeline", "visits", "all", "streamable", "nodes", "and", "the", "creates", "the", "ClientBootstrap", "with", "the", "pipeline", "and", "remote", "address" ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/driver/src/main/java/org/kaazing/k3po/driver/internal/behavior/visitor/GenerateConfigurationVisitor.java#L349-L409
41,865
politie/breeze
src/main/java/eu/icolumbo/breeze/SpringComponent.java
SpringComponent.init
protected void init(Map stormConf, TopologyContext topologyContext) { setId(topologyContext.getThisComponentId()); try { method = inputSignature.findMethod(beanType); logger.info("{} uses {}", this, method.toGenericString()); } catch (ReflectiveOperationException e) { throw new IllegalStateException("Un...
java
protected void init(Map stormConf, TopologyContext topologyContext) { setId(topologyContext.getThisComponentId()); try { method = inputSignature.findMethod(beanType); logger.info("{} uses {}", this, method.toGenericString()); } catch (ReflectiveOperationException e) { throw new IllegalStateException("Un...
[ "protected", "void", "init", "(", "Map", "stormConf", ",", "TopologyContext", "topologyContext", ")", "{", "setId", "(", "topologyContext", ".", "getThisComponentId", "(", ")", ")", ";", "try", "{", "method", "=", "inputSignature", ".", "findMethod", "(", "bea...
Instantiates the non-serializable state.
[ "Instantiates", "the", "non", "-", "serializable", "state", "." ]
73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1
https://github.com/politie/breeze/blob/73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1/src/main/java/eu/icolumbo/breeze/SpringComponent.java#L69-L84
41,866
politie/breeze
src/main/java/eu/icolumbo/breeze/SpringComponent.java
SpringComponent.invoke
protected Object[] invoke(Object[] arguments) throws InvocationTargetException, IllegalAccessException { Object returnValue = invoke(method, arguments); if (! scatterOutput) { logger.trace("Using return as is"); return new Object[] {returnValue}; } if (returnValue instanceof Object[]) { logger.trace...
java
protected Object[] invoke(Object[] arguments) throws InvocationTargetException, IllegalAccessException { Object returnValue = invoke(method, arguments); if (! scatterOutput) { logger.trace("Using return as is"); return new Object[] {returnValue}; } if (returnValue instanceof Object[]) { logger.trace...
[ "protected", "Object", "[", "]", "invoke", "(", "Object", "[", "]", "arguments", ")", "throws", "InvocationTargetException", ",", "IllegalAccessException", "{", "Object", "returnValue", "=", "invoke", "(", "method", ",", "arguments", ")", ";", "if", "(", "!", ...
Gets the bean invocation return entries.
[ "Gets", "the", "bean", "invocation", "return", "entries", "." ]
73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1
https://github.com/politie/breeze/blob/73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1/src/main/java/eu/icolumbo/breeze/SpringComponent.java#L106-L127
41,867
politie/breeze
src/main/java/eu/icolumbo/breeze/SpringComponent.java
SpringComponent.invoke
protected Object invoke(Method method, Object[] arguments) throws InvocationTargetException, IllegalAccessException { logger.trace("Lookup for call {}", method); Object bean = spring.getBean(beanType); try { return method.invoke(bean, arguments); } catch (IllegalArgumentException e) { StringBuilder msg ...
java
protected Object invoke(Method method, Object[] arguments) throws InvocationTargetException, IllegalAccessException { logger.trace("Lookup for call {}", method); Object bean = spring.getBean(beanType); try { return method.invoke(bean, arguments); } catch (IllegalArgumentException e) { StringBuilder msg ...
[ "protected", "Object", "invoke", "(", "Method", "method", ",", "Object", "[", "]", "arguments", ")", "throws", "InvocationTargetException", ",", "IllegalAccessException", "{", "logger", ".", "trace", "(", "\"Lookup for call {}\"", ",", "method", ")", ";", "Object"...
Gets the bean invocation return value.
[ "Gets", "the", "bean", "invocation", "return", "value", "." ]
73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1
https://github.com/politie/breeze/blob/73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1/src/main/java/eu/icolumbo/breeze/SpringComponent.java#L132-L152
41,868
politie/breeze
src/main/java/eu/icolumbo/breeze/SpringComponent.java
SpringComponent.setOutputBinding
public void setOutputBinding(Map<String,String> value) { outputBinding.clear(); outputBindingDefinitions.clear(); for (Map.Entry<String,String> entry : value.entrySet()) putOutputBinding(entry.getKey(), entry.getValue()); } /** * Registers an expression for a field. * @param field the name. * @param e...
java
public void setOutputBinding(Map<String,String> value) { outputBinding.clear(); outputBindingDefinitions.clear(); for (Map.Entry<String,String> entry : value.entrySet()) putOutputBinding(entry.getKey(), entry.getValue()); } /** * Registers an expression for a field. * @param field the name. * @param e...
[ "public", "void", "setOutputBinding", "(", "Map", "<", "String", ",", "String", ">", "value", ")", "{", "outputBinding", ".", "clear", "(", ")", ";", "outputBindingDefinitions", ".", "clear", "(", ")", ";", "for", "(", "Map", ".", "Entry", "<", "String",...
Sets expressions per field. @see #putOutputBinding(String, String)
[ "Sets", "expressions", "per", "field", "." ]
73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1
https://github.com/politie/breeze/blob/73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1/src/main/java/eu/icolumbo/breeze/SpringComponent.java#L210-L284
41,869
k3po/k3po
specification/socks5/src/main/java/org/kaazing/specification/socks5/internal/Functions.java
Functions.createClientGSSContext
@Function public static GSSContext createClientGSSContext(String server) { try { GSSManager manager = GSSManager.getInstance(); GSSName serverName = manager.createName(server, null); GSSContext context = manager.createContext(serverName, krb5Oid, ...
java
@Function public static GSSContext createClientGSSContext(String server) { try { GSSManager manager = GSSManager.getInstance(); GSSName serverName = manager.createName(server, null); GSSContext context = manager.createContext(serverName, krb5Oid, ...
[ "@", "Function", "public", "static", "GSSContext", "createClientGSSContext", "(", "String", "server", ")", "{", "try", "{", "GSSManager", "manager", "=", "GSSManager", ".", "getInstance", "(", ")", ";", "GSSName", "serverName", "=", "manager", ".", "createName",...
Create a GSS Context from a clients point of view. @param server the name of the host for which the GSS Context is being created @return the GSS Context that a client can use to exchange security tokens for a secure channel, then wrap()/unpack() messages.
[ "Create", "a", "GSS", "Context", "from", "a", "clients", "point", "of", "view", "." ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/specification/socks5/src/main/java/org/kaazing/specification/socks5/internal/Functions.java#L67-L86
41,870
k3po/k3po
specification/socks5/src/main/java/org/kaazing/specification/socks5/internal/Functions.java
Functions.getClientToken
@Function public static byte[] getClientToken(GSSContext context) { byte[] initialToken = new byte[0]; if (!context.isEstablished()) { try { // token is ignored on the first call initialToken = context.initSecContext(initialToken, 0, initialToken.length)...
java
@Function public static byte[] getClientToken(GSSContext context) { byte[] initialToken = new byte[0]; if (!context.isEstablished()) { try { // token is ignored on the first call initialToken = context.initSecContext(initialToken, 0, initialToken.length)...
[ "@", "Function", "public", "static", "byte", "[", "]", "getClientToken", "(", "GSSContext", "context", ")", "{", "byte", "[", "]", "initialToken", "=", "new", "byte", "[", "0", "]", ";", "if", "(", "!", "context", ".", "isEstablished", "(", ")", ")", ...
Create a token, from a clients point of view, for establishing a secure communication channel. This is a client side token so it needs to bootstrap the token creation. @param context GSSContext for which a connection has been established to the remote peer @return a byte[] that represents the token a client can send t...
[ "Create", "a", "token", "from", "a", "clients", "point", "of", "view", "for", "establishing", "a", "secure", "communication", "channel", ".", "This", "is", "a", "client", "side", "token", "so", "it", "needs", "to", "bootstrap", "the", "token", "creation", ...
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/specification/socks5/src/main/java/org/kaazing/specification/socks5/internal/Functions.java#L96-L113
41,871
k3po/k3po
specification/socks5/src/main/java/org/kaazing/specification/socks5/internal/Functions.java
Functions.verifyMIC
@Function public static boolean verifyMIC(GSSContext context, MessageProp prop, byte[] message, byte[] mic) { try { context.verifyMIC(mic, 0, mic.length, message, 0, message.length, prop); return true; } catch (GSSException ex) { ...
java
@Function public static boolean verifyMIC(GSSContext context, MessageProp prop, byte[] message, byte[] mic) { try { context.verifyMIC(mic, 0, mic.length, message, 0, message.length, prop); return true; } catch (GSSException ex) { ...
[ "@", "Function", "public", "static", "boolean", "verifyMIC", "(", "GSSContext", "context", ",", "MessageProp", "prop", ",", "byte", "[", "]", "message", ",", "byte", "[", "]", "mic", ")", "{", "try", "{", "context", ".", "verifyMIC", "(", "mic", ",", "...
Verify a message integrity check sent by a peer. If the MIC correctly identifies the message then the peer knows that the remote peer correctly received the message. @param context GSSContext for which a connection has been established to the remote peer @param prop the MessageProp that was used to wrap the original m...
[ "Verify", "a", "message", "integrity", "check", "sent", "by", "a", "peer", ".", "If", "the", "MIC", "correctly", "identifies", "the", "message", "then", "the", "peer", "knows", "that", "the", "remote", "peer", "correctly", "received", "the", "message", "." ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/specification/socks5/src/main/java/org/kaazing/specification/socks5/internal/Functions.java#L157-L168
41,872
k3po/k3po
specification/socks5/src/main/java/org/kaazing/specification/socks5/internal/Functions.java
Functions.createServerGSSContext
@Function public static GSSContext createServerGSSContext() { System.out.println("createServerGSSContext()..."); try { final GSSManager manager = GSSManager.getInstance(); // // Create server credentials to accept kerberos tokens. This should // make...
java
@Function public static GSSContext createServerGSSContext() { System.out.println("createServerGSSContext()..."); try { final GSSManager manager = GSSManager.getInstance(); // // Create server credentials to accept kerberos tokens. This should // make...
[ "@", "Function", "public", "static", "GSSContext", "createServerGSSContext", "(", ")", "{", "System", ".", "out", ".", "println", "(", "\"createServerGSSContext()...\"", ")", ";", "try", "{", "final", "GSSManager", "manager", "=", "GSSManager", ".", "getInstance",...
Create a GSS Context not tied to any server name. Peers acting as a server create their context this way. @return the newly created GSS Context
[ "Create", "a", "GSS", "Context", "not", "tied", "to", "any", "server", "name", ".", "Peers", "acting", "as", "a", "server", "create", "their", "context", "this", "way", "." ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/specification/socks5/src/main/java/org/kaazing/specification/socks5/internal/Functions.java#L175-L210
41,873
k3po/k3po
specification/socks5/src/main/java/org/kaazing/specification/socks5/internal/Functions.java
Functions.acceptClientToken
@Function public static boolean acceptClientToken(GSSContext context, byte[] token) { try { if (!context.isEstablished()) { byte[] nextToken = context.acceptSecContext(token, 0, token.length); return nextToken == null; } return true; ...
java
@Function public static boolean acceptClientToken(GSSContext context, byte[] token) { try { if (!context.isEstablished()) { byte[] nextToken = context.acceptSecContext(token, 0, token.length); return nextToken == null; } return true; ...
[ "@", "Function", "public", "static", "boolean", "acceptClientToken", "(", "GSSContext", "context", ",", "byte", "[", "]", "token", ")", "{", "try", "{", "if", "(", "!", "context", ".", "isEstablished", "(", ")", ")", "{", "byte", "[", "]", "nextToken", ...
Accept a client token to establish a secure communication channel. @param context GSSContext for which a connection has been established to the remote peer @param token the client side token (client side, as in the token had to be bootstrapped by the client and this peer uses that token to update the GSSContext) @retur...
[ "Accept", "a", "client", "token", "to", "establish", "a", "secure", "communication", "channel", "." ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/specification/socks5/src/main/java/org/kaazing/specification/socks5/internal/Functions.java#L221-L232
41,874
k3po/k3po
specification/socks5/src/main/java/org/kaazing/specification/socks5/internal/Functions.java
Functions.generateMIC
@Function public static byte[] generateMIC(GSSContext context, MessageProp prop, byte[] message) { try { // Ensure the default Quality-of-Protection is applied. prop.setQOP(0); byte[] initialToken = context.getMIC(message, 0, message.length, prop); return ge...
java
@Function public static byte[] generateMIC(GSSContext context, MessageProp prop, byte[] message) { try { // Ensure the default Quality-of-Protection is applied. prop.setQOP(0); byte[] initialToken = context.getMIC(message, 0, message.length, prop); return ge...
[ "@", "Function", "public", "static", "byte", "[", "]", "generateMIC", "(", "GSSContext", "context", ",", "MessageProp", "prop", ",", "byte", "[", "]", "message", ")", "{", "try", "{", "// Ensure the default Quality-of-Protection is applied.", "prop", ".", "setQOP"...
Generate a message integrity check for a given received message. @param context GSSContext for which a connection has been established to the remote peer @param prop the MessageProp used for exchanging messages @param message the bytes of the received message @return the bytes of the message integrity check (like a che...
[ "Generate", "a", "message", "integrity", "check", "for", "a", "given", "received", "message", "." ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/specification/socks5/src/main/java/org/kaazing/specification/socks5/internal/Functions.java#L242-L254
41,875
k3po/k3po
k3po.pcap.converter/src/main/java/org/kaazing/k3po/pcap/converter/internal/parser/Parser.java
Parser.getNextPacket
public Packet getNextPacket() { Packet parsedPacket = parseNextPacketFromPdml(); if ( parsedPacket == null ) { // All packets have been read return null; } parsedPacket = addTcpdumpInfoToPacket(parsedPacket); return parsedPacket; }
java
public Packet getNextPacket() { Packet parsedPacket = parseNextPacketFromPdml(); if ( parsedPacket == null ) { // All packets have been read return null; } parsedPacket = addTcpdumpInfoToPacket(parsedPacket); return parsedPacket; }
[ "public", "Packet", "getNextPacket", "(", ")", "{", "Packet", "parsedPacket", "=", "parseNextPacketFromPdml", "(", ")", ";", "if", "(", "parsedPacket", "==", "null", ")", "{", "// All packets have been read", "return", "null", ";", "}", "parsedPacket", "=", "add...
Returns the next Packet that can be parsed, or null if all packets have been read @return Packet
[ "Returns", "the", "next", "Packet", "that", "can", "be", "parsed", "or", "null", "if", "all", "packets", "have", "been", "read" ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/k3po.pcap.converter/src/main/java/org/kaazing/k3po/pcap/converter/internal/parser/Parser.java#L86-L96
41,876
k3po/k3po
k3po.pcap.converter/src/main/java/org/kaazing/k3po/pcap/converter/internal/parser/Parser.java
Parser.addTcpdumpInfoToPacket
private Packet addTcpdumpInfoToPacket(Packet parsedPacket){ int packetSize = parsedPacket.getPacketSize(); tcpdumpReader.readNewPacket(packetSize); // Get Tcp Payload if ( parsedPacket.isTcp() ) { int payloadSize = parsedPacket.getTcpPayloadSize(); ...
java
private Packet addTcpdumpInfoToPacket(Packet parsedPacket){ int packetSize = parsedPacket.getPacketSize(); tcpdumpReader.readNewPacket(packetSize); // Get Tcp Payload if ( parsedPacket.isTcp() ) { int payloadSize = parsedPacket.getTcpPayloadSize(); ...
[ "private", "Packet", "addTcpdumpInfoToPacket", "(", "Packet", "parsedPacket", ")", "{", "int", "packetSize", "=", "parsedPacket", ".", "getPacketSize", "(", ")", ";", "tcpdumpReader", ".", "readNewPacket", "(", "packetSize", ")", ";", "// Get Tcp Payload", "if", "...
Adds tcpdump info onto packet parsed from pdml i.e. adds the packet payload for various protocols @param parsedPacket @return
[ "Adds", "tcpdump", "info", "onto", "packet", "parsed", "from", "pdml", "i", ".", "e", ".", "adds", "the", "packet", "payload", "for", "various", "protocols" ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/k3po.pcap.converter/src/main/java/org/kaazing/k3po/pcap/converter/internal/parser/Parser.java#L103-L119
41,877
k3po/k3po
k3po.pcap.converter/src/main/java/org/kaazing/k3po/pcap/converter/internal/parser/Parser.java
Parser.parseNextPacketFromPdml
private Packet parseNextPacketFromPdml() { Packet currentPacket = null; int eventType; fieldStack.empty(); try { eventType = parser.getEventType(); while (eventType != XmlPullParser.END_DOCUMENT) { switch (eventType) { case XmlPull...
java
private Packet parseNextPacketFromPdml() { Packet currentPacket = null; int eventType; fieldStack.empty(); try { eventType = parser.getEventType(); while (eventType != XmlPullParser.END_DOCUMENT) { switch (eventType) { case XmlPull...
[ "private", "Packet", "parseNextPacketFromPdml", "(", ")", "{", "Packet", "currentPacket", "=", "null", ";", "int", "eventType", ";", "fieldStack", ".", "empty", "(", ")", ";", "try", "{", "eventType", "=", "parser", ".", "getEventType", "(", ")", ";", "whi...
Returns the Packet set with all properties that can be read from the pdml @return
[ "Returns", "the", "Packet", "set", "with", "all", "properties", "that", "can", "be", "read", "from", "the", "pdml" ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/k3po.pcap.converter/src/main/java/org/kaazing/k3po/pcap/converter/internal/parser/Parser.java#L125-L179
41,878
k3po/k3po
control/src/main/java/org/kaazing/k3po/control/internal/Control.java
Control.connect
public void connect() throws Exception { // connection must be null if the connection failed URLConnection newConnection = location.openConnection(); newConnection.connect(); connection = newConnection; InputStream bytesIn = connection.getInputStream(); CharsetDe...
java
public void connect() throws Exception { // connection must be null if the connection failed URLConnection newConnection = location.openConnection(); newConnection.connect(); connection = newConnection; InputStream bytesIn = connection.getInputStream(); CharsetDe...
[ "public", "void", "connect", "(", ")", "throws", "Exception", "{", "// connection must be null if the connection failed", "URLConnection", "newConnection", "=", "location", ".", "openConnection", "(", ")", ";", "newConnection", ".", "connect", "(", ")", ";", "connecti...
Connects to the k3po server. @throws Exception if fails to connect.
[ "Connects", "to", "the", "k3po", "server", "." ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/control/src/main/java/org/kaazing/k3po/control/internal/Control.java#L86-L95
41,879
k3po/k3po
control/src/main/java/org/kaazing/k3po/control/internal/Control.java
Control.disconnect
public void disconnect() throws Exception { if (connection != null) { try { if (connection instanceof Closeable) { ((Closeable) connection).close(); } else { try { connection.getInputStream().close(); ...
java
public void disconnect() throws Exception { if (connection != null) { try { if (connection instanceof Closeable) { ((Closeable) connection).close(); } else { try { connection.getInputStream().close(); ...
[ "public", "void", "disconnect", "(", ")", "throws", "Exception", "{", "if", "(", "connection", "!=", "null", ")", "{", "try", "{", "if", "(", "connection", "instanceof", "Closeable", ")", "{", "(", "(", "Closeable", ")", "connection", ")", ".", "close", ...
Discoonects from the k3po server. @throws Exception if error in closing the connection.
[ "Discoonects", "from", "the", "k3po", "server", "." ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/control/src/main/java/org/kaazing/k3po/control/internal/Control.java#L101-L124
41,880
k3po/k3po
control/src/main/java/org/kaazing/k3po/control/internal/Control.java
Control.writeCommand
public void writeCommand(Command command) throws Exception { checkConnected(); switch (command.getKind()) { case PREPARE: writeCommand((PrepareCommand) command); break; case START: writeCommand((StartCommand) command); break; case...
java
public void writeCommand(Command command) throws Exception { checkConnected(); switch (command.getKind()) { case PREPARE: writeCommand((PrepareCommand) command); break; case START: writeCommand((StartCommand) command); break; case...
[ "public", "void", "writeCommand", "(", "Command", "command", ")", "throws", "Exception", "{", "checkConnected", "(", ")", ";", "switch", "(", "command", ".", "getKind", "(", ")", ")", "{", "case", "PREPARE", ":", "writeCommand", "(", "(", "PrepareCommand", ...
Writes a command to the wire. @param command to write to the wire @throws Exception if the command is not recognized
[ "Writes", "a", "command", "to", "the", "wire", "." ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/control/src/main/java/org/kaazing/k3po/control/internal/Control.java#L131-L157
41,881
k3po/k3po
control/src/main/java/org/kaazing/k3po/control/internal/Control.java
Control.readEvent
public CommandEvent readEvent(int timeout, TimeUnit unit) throws Exception { checkConnected(); connection.setReadTimeout((int) unit.toMillis(timeout)); CommandEvent event = null; String eventType = textIn.readLine(); if (Thread.interrupted()) { throw new I...
java
public CommandEvent readEvent(int timeout, TimeUnit unit) throws Exception { checkConnected(); connection.setReadTimeout((int) unit.toMillis(timeout)); CommandEvent event = null; String eventType = textIn.readLine(); if (Thread.interrupted()) { throw new I...
[ "public", "CommandEvent", "readEvent", "(", "int", "timeout", ",", "TimeUnit", "unit", ")", "throws", "Exception", "{", "checkConnected", "(", ")", ";", "connection", ".", "setReadTimeout", "(", "(", "int", ")", "unit", ".", "toMillis", "(", "timeout", ")", ...
Reads a command event from the wire. @param timeout is the time to read from the connection. @param unit of time for the timeout. @return the CommandEvent read from the wire. @throws Exception if no event is read before the timeout.
[ "Reads", "a", "command", "event", "from", "the", "wire", "." ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/control/src/main/java/org/kaazing/k3po/control/internal/Control.java#L176-L213
41,882
k3po/k3po
driver/src/main/java/org/kaazing/k3po/driver/internal/control/handler/ControlServerHandler.java
ControlServerHandler.writeEvent
private void writeEvent(final ChannelHandlerContext ctx, final Object message) { if (isFinishedSent) return; if (message instanceof FinishedMessage) isFinishedSent = true; Channels.write(ctx, Channels.future(null), message); }
java
private void writeEvent(final ChannelHandlerContext ctx, final Object message) { if (isFinishedSent) return; if (message instanceof FinishedMessage) isFinishedSent = true; Channels.write(ctx, Channels.future(null), message); }
[ "private", "void", "writeEvent", "(", "final", "ChannelHandlerContext", "ctx", ",", "final", "Object", "message", ")", "{", "if", "(", "isFinishedSent", ")", "return", ";", "if", "(", "message", "instanceof", "FinishedMessage", ")", "isFinishedSent", "=", "true"...
will send no message after the FINISHED
[ "will", "send", "no", "message", "after", "the", "FINISHED" ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/driver/src/main/java/org/kaazing/k3po/driver/internal/control/handler/ControlServerHandler.java#L430-L438
41,883
k3po/k3po
launcher/src/main/java/org/kaazing/k3po/launcher/Launcher.java
Launcher.main
public static void main(String... args) throws Exception { Options options = createOptions(); try { Parser parser = new PosixParser(); CommandLine cmd = parser.parse(options, args); if (cmd.hasOption("version")) { System.out.println("Version:...
java
public static void main(String... args) throws Exception { Options options = createOptions(); try { Parser parser = new PosixParser(); CommandLine cmd = parser.parse(options, args); if (cmd.hasOption("version")) { System.out.println("Version:...
[ "public", "static", "void", "main", "(", "String", "...", "args", ")", "throws", "Exception", "{", "Options", "options", "=", "createOptions", "(", ")", ";", "try", "{", "Parser", "parser", "=", "new", "PosixParser", "(", ")", ";", "CommandLine", "cmd", ...
Main entry point to running K3PO. @param args to run with @throws Exception if fails to run
[ "Main", "entry", "point", "to", "running", "K3PO", "." ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/launcher/src/main/java/org/kaazing/k3po/launcher/Launcher.java#L49-L85
41,884
k3po/k3po
lang/src/main/java/org/kaazing/k3po/lang/el/FunctionMapper.java
FunctionMapper.newFunctionMapper
public static FunctionMapper newFunctionMapper() { ServiceLoader<FunctionMapperSpi> loader = loadFunctionMapperSpi(); // load FunctionMapperSpi instances ConcurrentMap<String, FunctionMapperSpi> functionMappers = new ConcurrentHashMap<>(); for (FunctionMapperSpi functionMapperSpi : load...
java
public static FunctionMapper newFunctionMapper() { ServiceLoader<FunctionMapperSpi> loader = loadFunctionMapperSpi(); // load FunctionMapperSpi instances ConcurrentMap<String, FunctionMapperSpi> functionMappers = new ConcurrentHashMap<>(); for (FunctionMapperSpi functionMapperSpi : load...
[ "public", "static", "FunctionMapper", "newFunctionMapper", "(", ")", "{", "ServiceLoader", "<", "FunctionMapperSpi", ">", "loader", "=", "loadFunctionMapperSpi", "(", ")", ";", "// load FunctionMapperSpi instances", "ConcurrentMap", "<", "String", ",", "FunctionMapperSpi"...
Creates a new Function Mapper. @return returns an instance of the FunctionMapper
[ "Creates", "a", "new", "Function", "Mapper", "." ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/lang/src/main/java/org/kaazing/k3po/lang/el/FunctionMapper.java#L44-L58
41,885
k3po/k3po
lang/src/main/java/org/kaazing/k3po/lang/el/FunctionMapper.java
FunctionMapper.resolveFunction
public Method resolveFunction(String prefix, String localName) { FunctionMapperSpi functionMapperSpi = findFunctionMapperSpi(prefix); return functionMapperSpi.resolveFunction(localName); }
java
public Method resolveFunction(String prefix, String localName) { FunctionMapperSpi functionMapperSpi = findFunctionMapperSpi(prefix); return functionMapperSpi.resolveFunction(localName); }
[ "public", "Method", "resolveFunction", "(", "String", "prefix", ",", "String", "localName", ")", "{", "FunctionMapperSpi", "functionMapperSpi", "=", "findFunctionMapperSpi", "(", "prefix", ")", ";", "return", "functionMapperSpi", ".", "resolveFunction", "(", "localNam...
Resolves a Function via prefix and local name. @param prefix of the function @param localName of the function @return an instance of a Method
[ "Resolves", "a", "Function", "via", "prefix", "and", "local", "name", "." ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/lang/src/main/java/org/kaazing/k3po/lang/el/FunctionMapper.java#L66-L69
41,886
k3po/k3po
k3po.pcap.converter/src/main/java/org/kaazing/k3po/pcap/converter/internal/parser/TcpdumpReader.java
TcpdumpReader.getPayload
public byte[] getPayload(int payloadStart, int payloadSize) { byte[] payloadBuffer = new byte[payloadSize]; System.arraycopy(currentBuffer, payloadStart, payloadBuffer, 0, payloadSize); return payloadBuffer; }
java
public byte[] getPayload(int payloadStart, int payloadSize) { byte[] payloadBuffer = new byte[payloadSize]; System.arraycopy(currentBuffer, payloadStart, payloadBuffer, 0, payloadSize); return payloadBuffer; }
[ "public", "byte", "[", "]", "getPayload", "(", "int", "payloadStart", ",", "int", "payloadSize", ")", "{", "byte", "[", "]", "payloadBuffer", "=", "new", "byte", "[", "payloadSize", "]", ";", "System", ".", "arraycopy", "(", "currentBuffer", ",", "payloadS...
Returns a portion of the internal buffer @param payloadStart @param payloadSize @return
[ "Returns", "a", "portion", "of", "the", "internal", "buffer" ]
3ca4fd31ab4a397893aa640c62ada0e485c8bbd4
https://github.com/k3po/k3po/blob/3ca4fd31ab4a397893aa640c62ada0e485c8bbd4/k3po.pcap.converter/src/main/java/org/kaazing/k3po/pcap/converter/internal/parser/TcpdumpReader.java#L103-L107
41,887
politie/breeze
src/main/java/eu/icolumbo/breeze/namespace/TopologyStarter.java
TopologyStarter.stormConfig
public static Config stormConfig(Properties source) { Config result = new Config(); logger.debug("Mapping declared types for Storm properties..."); for (Field field : result.getClass().getDeclaredFields()) { if (field.getType() != String.class) continue; if (field.getName().endsWith(CONFIGURATION_TYPE_FIEL...
java
public static Config stormConfig(Properties source) { Config result = new Config(); logger.debug("Mapping declared types for Storm properties..."); for (Field field : result.getClass().getDeclaredFields()) { if (field.getType() != String.class) continue; if (field.getName().endsWith(CONFIGURATION_TYPE_FIEL...
[ "public", "static", "Config", "stormConfig", "(", "Properties", "source", ")", "{", "Config", "result", "=", "new", "Config", "(", ")", ";", "logger", ".", "debug", "(", "\"Mapping declared types for Storm properties...\"", ")", ";", "for", "(", "Field", "field"...
Applies type conversion where needed. @return a copy of source ready for Storm. @see <a href="https://issues.apache.org/jira/browse/STORM-173">Strom issue 173</a>
[ "Applies", "type", "conversion", "where", "needed", "." ]
73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1
https://github.com/politie/breeze/blob/73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1/src/main/java/eu/icolumbo/breeze/namespace/TopologyStarter.java#L123-L169
41,888
politie/breeze
src/main/java/eu/icolumbo/breeze/FunctionSignature.java
FunctionSignature.valueOf
public static FunctionSignature valueOf(String serial) { int paramStart = serial.indexOf("("); int paramEnd = serial.indexOf(")"); if (paramStart < 0 || paramEnd != serial.length() - 1) throw new IllegalArgumentException("Malformed method signature: " + serial); String function = serial.substring(0, paramSt...
java
public static FunctionSignature valueOf(String serial) { int paramStart = serial.indexOf("("); int paramEnd = serial.indexOf(")"); if (paramStart < 0 || paramEnd != serial.length() - 1) throw new IllegalArgumentException("Malformed method signature: " + serial); String function = serial.substring(0, paramSt...
[ "public", "static", "FunctionSignature", "valueOf", "(", "String", "serial", ")", "{", "int", "paramStart", "=", "serial", ".", "indexOf", "(", "\"(\"", ")", ";", "int", "paramEnd", "=", "serial", ".", "indexOf", "(", "\")\"", ")", ";", "if", "(", "param...
Parses a signature.
[ "Parses", "a", "signature", "." ]
73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1
https://github.com/politie/breeze/blob/73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1/src/main/java/eu/icolumbo/breeze/FunctionSignature.java#L32-L47
41,889
politie/breeze
src/main/java/eu/icolumbo/breeze/FunctionSignature.java
FunctionSignature.findMethod
public Method findMethod(Class<?> type) throws ReflectiveOperationException { Method match = null; for (Method option : type.getDeclaredMethods()) { if (! getFunction().equals(option.getName())) continue; Class<?>[] parameters = option.getParameterTypes(); if (parameters.length != getArguments().length) co...
java
public Method findMethod(Class<?> type) throws ReflectiveOperationException { Method match = null; for (Method option : type.getDeclaredMethods()) { if (! getFunction().equals(option.getName())) continue; Class<?>[] parameters = option.getParameterTypes(); if (parameters.length != getArguments().length) co...
[ "public", "Method", "findMethod", "(", "Class", "<", "?", ">", "type", ")", "throws", "ReflectiveOperationException", "{", "Method", "match", "=", "null", ";", "for", "(", "Method", "option", ":", "type", ".", "getDeclaredMethods", "(", ")", ")", "{", "if"...
Gets a method match.
[ "Gets", "a", "method", "match", "." ]
73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1
https://github.com/politie/breeze/blob/73cb3c7b99d6f9cc3cf9afb4b8e903fbfd6ad9a1/src/main/java/eu/icolumbo/breeze/FunctionSignature.java#L66-L105
41,890
cojen/Cojen
src/main/java/org/cojen/classfile/Modifiers.java
Modifiers.getInstance
public static Modifiers getInstance(int bitmask) { switch (bitmask) { case 0: return NONE; case Modifier.PUBLIC: return PUBLIC; case Modifier.PUBLIC | Modifier.ABSTRACT: return PUBLIC_ABSTRACT; case Modifier.PUBLIC | Modifier.STATIC: ...
java
public static Modifiers getInstance(int bitmask) { switch (bitmask) { case 0: return NONE; case Modifier.PUBLIC: return PUBLIC; case Modifier.PUBLIC | Modifier.ABSTRACT: return PUBLIC_ABSTRACT; case Modifier.PUBLIC | Modifier.STATIC: ...
[ "public", "static", "Modifiers", "getInstance", "(", "int", "bitmask", ")", "{", "switch", "(", "bitmask", ")", "{", "case", "0", ":", "return", "NONE", ";", "case", "Modifier", ".", "PUBLIC", ":", "return", "PUBLIC", ";", "case", "Modifier", ".", "PUBLI...
Returns a Modifiers object with the given bitmask.
[ "Returns", "a", "Modifiers", "object", "with", "the", "given", "bitmask", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/classfile/Modifiers.java#L49-L66
41,891
cojen/Cojen
src/main/java/org/cojen/util/PatternMatcher.java
PatternMatcher.getMatches
public Result<V>[] getMatches(String lookup, int limit) { int strLen = lookup.length(); char[] chars = new char[strLen + 1]; lookup.getChars(0, strLen, chars, 0); chars[strLen] = '\uffff'; List resultList = new ArrayList(); fillMatchResults(chars, limit, resultLi...
java
public Result<V>[] getMatches(String lookup, int limit) { int strLen = lookup.length(); char[] chars = new char[strLen + 1]; lookup.getChars(0, strLen, chars, 0); chars[strLen] = '\uffff'; List resultList = new ArrayList(); fillMatchResults(chars, limit, resultLi...
[ "public", "Result", "<", "V", ">", "[", "]", "getMatches", "(", "String", "lookup", ",", "int", "limit", ")", "{", "int", "strLen", "=", "lookup", ".", "length", "(", ")", ";", "char", "[", "]", "chars", "=", "new", "char", "[", "strLen", "+", "1...
Returns an empty array if no matches. @param limit maximum number of results to return
[ "Returns", "an", "empty", "array", "if", "no", "matches", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/PatternMatcher.java#L108-L118
41,892
cojen/Cojen
src/main/java/org/cojen/util/WeakCanonicalSet.java
WeakCanonicalSet.put
public synchronized <U extends T> U put(U obj) { if (obj == null) { return null; } Entry<T>[] entries = mEntries; int hash = hashCode(obj); int index = (hash & 0x7fffffff) % entries.length; for (Entry<T> e = entries[index], prev = null; e != null; e = e.mNext...
java
public synchronized <U extends T> U put(U obj) { if (obj == null) { return null; } Entry<T>[] entries = mEntries; int hash = hashCode(obj); int index = (hash & 0x7fffffff) % entries.length; for (Entry<T> e = entries[index], prev = null; e != null; e = e.mNext...
[ "public", "synchronized", "<", "U", "extends", "T", ">", "U", "put", "(", "U", "obj", ")", "{", "if", "(", "obj", "==", "null", ")", "{", "return", "null", ";", "}", "Entry", "<", "T", ">", "[", "]", "entries", "=", "mEntries", ";", "int", "has...
Pass in a candidate canonical object and get a unique instance from this set. The returned object will always be of the same type as that passed in. If the object passed in does not equal any object currently in the set, it will be added to the set, becoming canonical. @param obj candidate canonical object; null is al...
[ "Pass", "in", "a", "candidate", "canonical", "object", "and", "get", "a", "unique", "instance", "from", "this", "set", ".", "The", "returned", "object", "will", "always", "be", "of", "the", "same", "type", "as", "that", "passed", "in", ".", "If", "the", ...
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/WeakCanonicalSet.java#L58-L96
41,893
cojen/Cojen
src/main/java/org/cojen/util/ThrowUnchecked.java
ThrowUnchecked.fire
public static void fire(Throwable t) { if (t != null) { // Don't need to do anything special for unchecked exceptions. if (t instanceof RuntimeException) { throw (RuntimeException) t; } if (t instanceof Error) { throw (Error) t; ...
java
public static void fire(Throwable t) { if (t != null) { // Don't need to do anything special for unchecked exceptions. if (t instanceof RuntimeException) { throw (RuntimeException) t; } if (t instanceof Error) { throw (Error) t; ...
[ "public", "static", "void", "fire", "(", "Throwable", "t", ")", "{", "if", "(", "t", "!=", "null", ")", "{", "// Don't need to do anything special for unchecked exceptions.", "if", "(", "t", "instanceof", "RuntimeException", ")", "{", "throw", "(", "RuntimeExcepti...
Throws the given exception, even though it may be checked. This method only returns normally if the exception is null. @param t exception to throw
[ "Throws", "the", "given", "exception", "even", "though", "it", "may", "be", "checked", ".", "This", "method", "only", "returns", "normally", "if", "the", "exception", "is", "null", "." ]
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/ThrowUnchecked.java#L83-L110
41,894
cojen/Cojen
src/main/java/org/cojen/util/ThrowUnchecked.java
ThrowUnchecked.fireFirstDeclared
public static void fireFirstDeclared(Throwable t, Class... declaredTypes) { Throwable cause = t; while (cause != null) { cause = cause.getCause(); if (cause == null) { break; } if (declaredTypes != null) { for (Class declare...
java
public static void fireFirstDeclared(Throwable t, Class... declaredTypes) { Throwable cause = t; while (cause != null) { cause = cause.getCause(); if (cause == null) { break; } if (declaredTypes != null) { for (Class declare...
[ "public", "static", "void", "fireFirstDeclared", "(", "Throwable", "t", ",", "Class", "...", "declaredTypes", ")", "{", "Throwable", "cause", "=", "t", ";", "while", "(", "cause", "!=", "null", ")", "{", "cause", "=", "cause", ".", "getCause", "(", ")", ...
Throws the either the original exception or the first found cause if it matches one of the given declared types or is unchecked. Otherwise, the original exception is thrown as an UndeclaredThrowableException. This method only returns normally if the exception is null. @param t exception whose cause is to be thrown @pa...
[ "Throws", "the", "either", "the", "original", "exception", "or", "the", "first", "found", "cause", "if", "it", "matches", "one", "of", "the", "given", "declared", "types", "or", "is", "unchecked", ".", "Otherwise", "the", "original", "exception", "is", "thro...
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/ThrowUnchecked.java#L153-L175
41,895
cojen/Cojen
src/main/java/org/cojen/util/ThrowUnchecked.java
ThrowUnchecked.fireCause
public static void fireCause(Throwable t) { if (t != null) { Throwable cause = t.getCause(); if (cause == null) { cause = t; } fire(cause); } }
java
public static void fireCause(Throwable t) { if (t != null) { Throwable cause = t.getCause(); if (cause == null) { cause = t; } fire(cause); } }
[ "public", "static", "void", "fireCause", "(", "Throwable", "t", ")", "{", "if", "(", "t", "!=", "null", ")", "{", "Throwable", "cause", "=", "t", ".", "getCause", "(", ")", ";", "if", "(", "cause", "==", "null", ")", "{", "cause", "=", "t", ";", ...
Throws the cause of the given exception, even though it may be checked. If the cause is null, then the original exception is thrown. This method only returns normally if the exception is null. @param t exception whose cause is to be thrown
[ "Throws", "the", "cause", "of", "the", "given", "exception", "even", "though", "it", "may", "be", "checked", ".", "If", "the", "cause", "is", "null", "then", "the", "original", "exception", "is", "thrown", ".", "This", "method", "only", "returns", "normall...
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/ThrowUnchecked.java#L184-L192
41,896
cojen/Cojen
src/main/java/org/cojen/util/ThrowUnchecked.java
ThrowUnchecked.fireDeclaredCause
public static void fireDeclaredCause(Throwable t, Class... declaredTypes) { if (t != null) { Throwable cause = t.getCause(); if (cause == null) { cause = t; } fireDeclared(cause, declaredTypes); } }
java
public static void fireDeclaredCause(Throwable t, Class... declaredTypes) { if (t != null) { Throwable cause = t.getCause(); if (cause == null) { cause = t; } fireDeclared(cause, declaredTypes); } }
[ "public", "static", "void", "fireDeclaredCause", "(", "Throwable", "t", ",", "Class", "...", "declaredTypes", ")", "{", "if", "(", "t", "!=", "null", ")", "{", "Throwable", "cause", "=", "t", ".", "getCause", "(", ")", ";", "if", "(", "cause", "==", ...
Throws the cause of the given exception if it is unchecked or an instance of any of the given declared types. Otherwise, it is thrown as an UndeclaredThrowableException. If the cause is null, then the original exception is thrown. This method only returns normally if the exception is null. @param t exception whose cau...
[ "Throws", "the", "cause", "of", "the", "given", "exception", "if", "it", "is", "unchecked", "or", "an", "instance", "of", "any", "of", "the", "given", "declared", "types", ".", "Otherwise", "it", "is", "thrown", "as", "an", "UndeclaredThrowableException", "....
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/ThrowUnchecked.java#L206-L214
41,897
cojen/Cojen
src/main/java/org/cojen/util/ThrowUnchecked.java
ThrowUnchecked.fireFirstDeclaredCause
public static void fireFirstDeclaredCause(Throwable t, Class... declaredTypes) { Throwable cause = t; while (cause != null) { cause = cause.getCause(); if (cause == null) { break; } if (declaredTypes != null) { for (Class de...
java
public static void fireFirstDeclaredCause(Throwable t, Class... declaredTypes) { Throwable cause = t; while (cause != null) { cause = cause.getCause(); if (cause == null) { break; } if (declaredTypes != null) { for (Class de...
[ "public", "static", "void", "fireFirstDeclaredCause", "(", "Throwable", "t", ",", "Class", "...", "declaredTypes", ")", "{", "Throwable", "cause", "=", "t", ";", "while", "(", "cause", "!=", "null", ")", "{", "cause", "=", "cause", ".", "getCause", "(", ...
Throws the first found cause that matches one of the given declared types or is unchecked. Otherwise, the immediate cause is thrown as an UndeclaredThrowableException. If the immediate cause is null, then the original exception is thrown. This method only returns normally if the exception is null. @param t exception w...
[ "Throws", "the", "first", "found", "cause", "that", "matches", "one", "of", "the", "given", "declared", "types", "or", "is", "unchecked", ".", "Otherwise", "the", "immediate", "cause", "is", "thrown", "as", "an", "UndeclaredThrowableException", ".", "If", "the...
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/ThrowUnchecked.java#L228-L250
41,898
cojen/Cojen
src/main/java/org/cojen/util/ThrowUnchecked.java
ThrowUnchecked.fireRootCause
public static void fireRootCause(Throwable t) { Throwable root = t; while (root != null) { Throwable cause = root.getCause(); if (cause == null) { break; } root = cause; } fire(root); }
java
public static void fireRootCause(Throwable t) { Throwable root = t; while (root != null) { Throwable cause = root.getCause(); if (cause == null) { break; } root = cause; } fire(root); }
[ "public", "static", "void", "fireRootCause", "(", "Throwable", "t", ")", "{", "Throwable", "root", "=", "t", ";", "while", "(", "root", "!=", "null", ")", "{", "Throwable", "cause", "=", "root", ".", "getCause", "(", ")", ";", "if", "(", "cause", "==...
Throws the root cause of the given exception, even though it may be checked. If the root cause is null, then the original exception is thrown. This method only returns normally if the exception is null. @param t exception whose root cause is to be thrown
[ "Throws", "the", "root", "cause", "of", "the", "given", "exception", "even", "though", "it", "may", "be", "checked", ".", "If", "the", "root", "cause", "is", "null", "then", "the", "original", "exception", "is", "thrown", ".", "This", "method", "only", "...
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/ThrowUnchecked.java#L259-L269
41,899
cojen/Cojen
src/main/java/org/cojen/util/ThrowUnchecked.java
ThrowUnchecked.fireDeclaredRootCause
public static void fireDeclaredRootCause(Throwable t, Class... declaredTypes) { Throwable root = t; while (root != null) { Throwable cause = root.getCause(); if (cause == null) { break; } root = cause; } fireDeclared(root, d...
java
public static void fireDeclaredRootCause(Throwable t, Class... declaredTypes) { Throwable root = t; while (root != null) { Throwable cause = root.getCause(); if (cause == null) { break; } root = cause; } fireDeclared(root, d...
[ "public", "static", "void", "fireDeclaredRootCause", "(", "Throwable", "t", ",", "Class", "...", "declaredTypes", ")", "{", "Throwable", "root", "=", "t", ";", "while", "(", "root", "!=", "null", ")", "{", "Throwable", "cause", "=", "root", ".", "getCause"...
Throws the root cause of the given exception if it is unchecked or an instance of any of the given declared types. Otherwise, it is thrown as an UndeclaredThrowableException. If the root cause is null, then the original exception is thrown. This method only returns normally if the exception is null. @param t exception...
[ "Throws", "the", "root", "cause", "of", "the", "given", "exception", "if", "it", "is", "unchecked", "or", "an", "instance", "of", "any", "of", "the", "given", "declared", "types", ".", "Otherwise", "it", "is", "thrown", "as", "an", "UndeclaredThrowableExcept...
ddee9a0fde83870b97e0ed04c58270aa665f3a62
https://github.com/cojen/Cojen/blob/ddee9a0fde83870b97e0ed04c58270aa665f3a62/src/main/java/org/cojen/util/ThrowUnchecked.java#L283-L293