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 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
OpenLiberty/open-liberty | dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/HTODInvalidationBuffer.java | HTODInvalidationBuffer.isBackgroundInvalidationInProgress | protected synchronized boolean isBackgroundInvalidationInProgress() {
boolean cleanupThreadRunning = false;
if (this.cod.diskCleanupThread != null) {
synchronized (cod.diskCleanupThread.dcMonitor) {
cleanupThreadRunning = this.cod.diskCleanupThread.currentThread != null;
... | java | protected synchronized boolean isBackgroundInvalidationInProgress() {
boolean cleanupThreadRunning = false;
if (this.cod.diskCleanupThread != null) {
synchronized (cod.diskCleanupThread.dcMonitor) {
cleanupThreadRunning = this.cod.diskCleanupThread.currentThread != null;
... | [
"protected",
"synchronized",
"boolean",
"isBackgroundInvalidationInProgress",
"(",
")",
"{",
"boolean",
"cleanupThreadRunning",
"=",
"false",
";",
"if",
"(",
"this",
".",
"cod",
".",
"diskCleanupThread",
"!=",
"null",
")",
"{",
"synchronized",
"(",
"cod",
".",
"... | Call this method to check the state of "LPBT in Progress".
@return boolean - the state. | [
"Call",
"this",
"method",
"to",
"check",
"the",
"state",
"of",
"LPBT",
"in",
"Progress",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/HTODInvalidationBuffer.java#L604-L619 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/HTODInvalidationBuffer.java | HTODInvalidationBuffer.isLoopOnce | protected synchronized boolean isLoopOnce() {
final String methodName = "isLoopOnce()";
if (loopOnce) {
traceDebug(methodName, "cacheName=" + this.cod.cacheName + " isLoopOnce=" + loopOnce + " explicitBuffer=" + explicitBuffer.size()
+ " scanBuffer=" + this.scanBuffer.siz... | java | protected synchronized boolean isLoopOnce() {
final String methodName = "isLoopOnce()";
if (loopOnce) {
traceDebug(methodName, "cacheName=" + this.cod.cacheName + " isLoopOnce=" + loopOnce + " explicitBuffer=" + explicitBuffer.size()
+ " scanBuffer=" + this.scanBuffer.siz... | [
"protected",
"synchronized",
"boolean",
"isLoopOnce",
"(",
")",
"{",
"final",
"String",
"methodName",
"=",
"\"isLoopOnce()\"",
";",
"if",
"(",
"loopOnce",
")",
"{",
"traceDebug",
"(",
"methodName",
",",
"\"cacheName=\"",
"+",
"this",
".",
"cod",
".",
"cacheNam... | Call this method to check the state of "Loop Once".
@return boolean - the state. | [
"Call",
"this",
"method",
"to",
"check",
"the",
"state",
"of",
"Loop",
"Once",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/HTODInvalidationBuffer.java#L626-L633 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/HTODInvalidationBuffer.java | HTODInvalidationBuffer.setStopping | protected synchronized void setStopping(boolean stopping) {
final String methodName = "setStopping()";
this.stopping = stopping;
traceDebug(methodName, "cacheName=" + this.cod.cacheName + " stopping=" + this.stopping);
} | java | protected synchronized void setStopping(boolean stopping) {
final String methodName = "setStopping()";
this.stopping = stopping;
traceDebug(methodName, "cacheName=" + this.cod.cacheName + " stopping=" + this.stopping);
} | [
"protected",
"synchronized",
"void",
"setStopping",
"(",
"boolean",
"stopping",
")",
"{",
"final",
"String",
"methodName",
"=",
"\"setStopping()\"",
";",
"this",
".",
"stopping",
"=",
"stopping",
";",
"traceDebug",
"(",
"methodName",
",",
"\"cacheName=\"",
"+",
... | Call this method to set the state of "Stopping". No more invoking the LPBT.
@param stopping
- boolean to set true or false. | [
"Call",
"this",
"method",
"to",
"set",
"the",
"state",
"of",
"Stopping",
".",
"No",
"more",
"invoking",
"the",
"LPBT",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/HTODInvalidationBuffer.java#L662-L666 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.config/src/com/ibm/ws/config/admin/internal/ExtendedConfigurationImpl.java | ExtendedConfigurationImpl.updateProperties | @Override
public void updateProperties(Dictionary<String, Object> properties) throws IOException {
lock.lock();
try {
doUpdateProperties(properties);
} finally {
lock.unlock();
}
} | java | @Override
public void updateProperties(Dictionary<String, Object> properties) throws IOException {
lock.lock();
try {
doUpdateProperties(properties);
} finally {
lock.unlock();
}
} | [
"@",
"Override",
"public",
"void",
"updateProperties",
"(",
"Dictionary",
"<",
"String",
",",
"Object",
">",
"properties",
")",
"throws",
"IOException",
"{",
"lock",
".",
"lock",
"(",
")",
";",
"try",
"{",
"doUpdateProperties",
"(",
"properties",
")",
";",
... | without other guards, separating updating the properties and sending configuration events
can result in missing and duplicate update events even if every update is eventually associated with an event. | [
"without",
"other",
"guards",
"separating",
"updating",
"the",
"properties",
"and",
"sending",
"configuration",
"events",
"can",
"result",
"in",
"missing",
"and",
"duplicate",
"update",
"events",
"even",
"if",
"every",
"update",
"is",
"eventually",
"associated",
"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.config/src/com/ibm/ws/config/admin/internal/ExtendedConfigurationImpl.java#L433-L441 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.config/src/com/ibm/ws/config/admin/internal/ExtendedConfigurationImpl.java | ExtendedConfigurationImpl.updateCache | @Override
public void updateCache(Dictionary<String, Object> properties, Set<ConfigID> references, Set<String> newUniques) throws IOException {
lock.lock();
try {
removeReferences();
setProperties(properties);
this.references = references;
this.unique... | java | @Override
public void updateCache(Dictionary<String, Object> properties, Set<ConfigID> references, Set<String> newUniques) throws IOException {
lock.lock();
try {
removeReferences();
setProperties(properties);
this.references = references;
this.unique... | [
"@",
"Override",
"public",
"void",
"updateCache",
"(",
"Dictionary",
"<",
"String",
",",
"Object",
">",
"properties",
",",
"Set",
"<",
"ConfigID",
">",
"references",
",",
"Set",
"<",
"String",
">",
"newUniques",
")",
"throws",
"IOException",
"{",
"lock",
"... | Updates ConfigurationAdmin's cache with current config properties.
If replaceProp is set to true, current config properties is replace with
the given properties before caching
and the internal pid-to-config table is updated to reflect the new config
properties.
@param properties
@param replaceProp
@param isMetaTypePro... | [
"Updates",
"ConfigurationAdmin",
"s",
"cache",
"with",
"current",
"config",
"properties",
".",
"If",
"replaceProp",
"is",
"set",
"to",
"true",
"current",
"config",
"properties",
"is",
"replace",
"with",
"the",
"given",
"properties",
"before",
"caching",
"and",
"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.config/src/com/ibm/ws/config/admin/internal/ExtendedConfigurationImpl.java#L474-L492 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.config/src/com/ibm/ws/config/admin/internal/ExtendedConfigurationImpl.java | ExtendedConfigurationImpl.setProperties | private void setProperties(Dictionary<String, ?> d) {
if (d == null) {
this.properties = null;
return;
}
ConfigurationDictionary newDictionary = new ConfigurationDictionary();
Enumeration<String> keys = d.keys();
while (keys.hasMoreElements()) {
... | java | private void setProperties(Dictionary<String, ?> d) {
if (d == null) {
this.properties = null;
return;
}
ConfigurationDictionary newDictionary = new ConfigurationDictionary();
Enumeration<String> keys = d.keys();
while (keys.hasMoreElements()) {
... | [
"private",
"void",
"setProperties",
"(",
"Dictionary",
"<",
"String",
",",
"?",
">",
"d",
")",
"{",
"if",
"(",
"d",
"==",
"null",
")",
"{",
"this",
".",
"properties",
"=",
"null",
";",
"return",
";",
"}",
"ConfigurationDictionary",
"newDictionary",
"=",
... | This is not part of Configuration interface.
It sets configuration dictionary with specified dictionary
and updates configuration attributes if they are not set
and found in given dictionary.
@param d | [
"This",
"is",
"not",
"part",
"of",
"Configuration",
"interface",
".",
"It",
"sets",
"configuration",
"dictionary",
"with",
"specified",
"dictionary",
"and",
"updates",
"configuration",
"attributes",
"if",
"they",
"are",
"not",
"set",
"and",
"found",
"in",
"given... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.config/src/com/ibm/ws/config/admin/internal/ExtendedConfigurationImpl.java#L588-L627 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsp/src/org/apache/jasper/runtime/PageContextImpl.java | PageContextImpl.proprietaryEvaluate | @SuppressWarnings("unchecked")
public static Object proprietaryEvaluate(final String expression,
final Class expectedType, final PageContext pageContext,
final ProtectedFunctionMapper functionMap, final boolean escape)
throws ELException {
Object retValue;
ExpressionFactory exprFactorySetInPageContext = (... | java | @SuppressWarnings("unchecked")
public static Object proprietaryEvaluate(final String expression,
final Class expectedType, final PageContext pageContext,
final ProtectedFunctionMapper functionMap, final boolean escape)
throws ELException {
Object retValue;
ExpressionFactory exprFactorySetInPageContext = (... | [
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"public",
"static",
"Object",
"proprietaryEvaluate",
"(",
"final",
"String",
"expression",
",",
"final",
"Class",
"expectedType",
",",
"final",
"PageContext",
"pageContext",
",",
"final",
"ProtectedFunctionMapper",
"... | Proprietary method to evaluate EL expressions. XXX - This method should
go away once the EL interpreter moves out of JSTL and into its own
project. For now, this is necessary because the standard machinery is too
slow.
@param expression
The expression to be evaluated
@param expectedType
The expected resulting type
@pa... | [
"Proprietary",
"method",
"to",
"evaluate",
"EL",
"expressions",
".",
"XXX",
"-",
"This",
"method",
"should",
"go",
"away",
"once",
"the",
"EL",
"interpreter",
"moves",
"out",
"of",
"JSTL",
"and",
"into",
"its",
"own",
"project",
".",
"For",
"now",
"this",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsp/src/org/apache/jasper/runtime/PageContextImpl.java#L779-L800 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.install/src/com/ibm/ws/install/internal/EventManager.java | EventManager.addListener | public void addListener(InstallEventListener listener, String notificationType) {
if (listener == null || notificationType == null)
return;
if (notificationType.isEmpty())
return;
if (listenersMap == null) {
listenersMap = new HashMap<String, Collection<Instal... | java | public void addListener(InstallEventListener listener, String notificationType) {
if (listener == null || notificationType == null)
return;
if (notificationType.isEmpty())
return;
if (listenersMap == null) {
listenersMap = new HashMap<String, Collection<Instal... | [
"public",
"void",
"addListener",
"(",
"InstallEventListener",
"listener",
",",
"String",
"notificationType",
")",
"{",
"if",
"(",
"listener",
"==",
"null",
"||",
"notificationType",
"==",
"null",
")",
"return",
";",
"if",
"(",
"notificationType",
".",
"isEmpty",... | Adds an install event listener to the listenersMap with a specified notification type
@param listener InstallEventListener to add
@param notificationType Notification type of listener | [
"Adds",
"an",
"install",
"event",
"listener",
"to",
"the",
"listenersMap",
"with",
"a",
"specified",
"notification",
"type"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.install/src/com/ibm/ws/install/internal/EventManager.java#L35-L49 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.install/src/com/ibm/ws/install/internal/EventManager.java | EventManager.removeListener | public void removeListener(InstallEventListener listener) {
if (listenersMap != null) {
for (Collection<InstallEventListener> listeners : listenersMap.values()) {
listeners.remove(listener);
}
}
} | java | public void removeListener(InstallEventListener listener) {
if (listenersMap != null) {
for (Collection<InstallEventListener> listeners : listenersMap.values()) {
listeners.remove(listener);
}
}
} | [
"public",
"void",
"removeListener",
"(",
"InstallEventListener",
"listener",
")",
"{",
"if",
"(",
"listenersMap",
"!=",
"null",
")",
"{",
"for",
"(",
"Collection",
"<",
"InstallEventListener",
">",
"listeners",
":",
"listenersMap",
".",
"values",
"(",
")",
")"... | Removes a listener from listenersMap
@param listener Listener to remove | [
"Removes",
"a",
"listener",
"from",
"listenersMap"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.install/src/com/ibm/ws/install/internal/EventManager.java#L56-L62 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.install/src/com/ibm/ws/install/internal/EventManager.java | EventManager.fireProgressEvent | public void fireProgressEvent(int state, int progress, String message) throws Exception {
if (listenersMap != null) {
Collection<InstallEventListener> listeners = listenersMap.get(InstallConstants.EVENT_TYPE_PROGRESS);
if (listeners != null) {
for (InstallEventListener li... | java | public void fireProgressEvent(int state, int progress, String message) throws Exception {
if (listenersMap != null) {
Collection<InstallEventListener> listeners = listenersMap.get(InstallConstants.EVENT_TYPE_PROGRESS);
if (listeners != null) {
for (InstallEventListener li... | [
"public",
"void",
"fireProgressEvent",
"(",
"int",
"state",
",",
"int",
"progress",
",",
"String",
"message",
")",
"throws",
"Exception",
"{",
"if",
"(",
"listenersMap",
"!=",
"null",
")",
"{",
"Collection",
"<",
"InstallEventListener",
">",
"listeners",
"=",
... | Fires progress event messages
@param state The state integer
@param progress The progress integer
@param message The message to be displayed
@throws Exception | [
"Fires",
"progress",
"event",
"messages"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.install/src/com/ibm/ws/install/internal/EventManager.java#L72-L81 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/queue/ReadAheadQueue.java | ReadAheadQueue.putToFront | public void putToFront(QueueData queueData, short msgBatch)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putToFront",
new Object[]{queueData, msgBatch});
_put(queueData, msgBatch, false);
if (TraceComponent.is... | java | public void putToFront(QueueData queueData, short msgBatch)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putToFront",
new Object[]{queueData, msgBatch});
_put(queueData, msgBatch, false);
if (TraceComponent.is... | [
"public",
"void",
"putToFront",
"(",
"QueueData",
"queueData",
",",
"short",
"msgBatch",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",... | Places a message on to the front of the proxy queue so that the next get
operation will consume it.
@param queueData
@param msgBatch | [
"Places",
"a",
"message",
"on",
"to",
"the",
"front",
"of",
"the",
"proxy",
"queue",
"so",
"that",
"the",
"next",
"get",
"operation",
"will",
"consume",
"it",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/queue/ReadAheadQueue.java#L267-L275 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/queue/ReadAheadQueue.java | ReadAheadQueue.getBatch | public synchronized JsMessage[] getBatch(int batchSize, short id)
throws SIResourceException, SIConnectionDroppedException, SIConnectionLostException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getBatch", ""+batchSize);
int size;
synchronized(que... | java | public synchronized JsMessage[] getBatch(int batchSize, short id)
throws SIResourceException, SIConnectionDroppedException, SIConnectionLostException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getBatch", ""+batchSize);
int size;
synchronized(que... | [
"public",
"synchronized",
"JsMessage",
"[",
"]",
"getBatch",
"(",
"int",
"batchSize",
",",
"short",
"id",
")",
"throws",
"SIResourceException",
",",
"SIConnectionDroppedException",
",",
"SIConnectionLostException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingE... | Gets a batch of several messages from the queue.
@param batchSize
@param id
@return JsMessage[] The batch of messages (or null if the queue is empty)
@throws SIResourceException
@throws SIConnectionDroppedException
@throws SIConnectionLostException | [
"Gets",
"a",
"batch",
"of",
"several",
"messages",
"from",
"the",
"queue",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/queue/ReadAheadQueue.java#L596-L614 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/queue/ReadAheadQueue.java | ReadAheadQueue.setTrackBytes | public synchronized void setTrackBytes(boolean trackBytes)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setTrackBytes", trackBytes);
this.trackBytes = trackBytes;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, tc, "setT... | java | public synchronized void setTrackBytes(boolean trackBytes)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setTrackBytes", trackBytes);
this.trackBytes = trackBytes;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, tc, "setT... | [
"public",
"synchronized",
"void",
"setTrackBytes",
"(",
"boolean",
"trackBytes",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
"... | Sets the trackBytes parameter. This flag is used to indicate whether this queue should keep
track of the bytes on the queue and request more from the server when it is running low.
@param trackBytes | [
"Sets",
"the",
"trackBytes",
"parameter",
".",
"This",
"flag",
"is",
"used",
"to",
"indicate",
"whether",
"this",
"queue",
"should",
"keep",
"track",
"of",
"the",
"bytes",
"on",
"the",
"queue",
"and",
"request",
"more",
"from",
"the",
"server",
"when",
"it... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/queue/ReadAheadQueue.java#L876-L881 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webcontainer/src/com/ibm/wsspi/webcontainer/util/ByteBufferOutputStream.java | ByteBufferOutputStream.reset | public void reset()
{
current = null;
_hasWritten = false;
byteBuffersRetrieved = false;
limit = -1;
total = 0;
if (!byteBuffersRetrieved)
{
ListIterator<WsByteBuffer> it = bbList.listIterator();
while (it.hasNext())
{
WsByteBuffer next = it.next();
next.r... | java | public void reset()
{
current = null;
_hasWritten = false;
byteBuffersRetrieved = false;
limit = -1;
total = 0;
if (!byteBuffersRetrieved)
{
ListIterator<WsByteBuffer> it = bbList.listIterator();
while (it.hasNext())
{
WsByteBuffer next = it.next();
next.r... | [
"public",
"void",
"reset",
"(",
")",
"{",
"current",
"=",
"null",
";",
"_hasWritten",
"=",
"false",
";",
"byteBuffersRetrieved",
"=",
"false",
";",
"limit",
"=",
"-",
"1",
";",
"total",
"=",
"0",
";",
"if",
"(",
"!",
"byteBuffersRetrieved",
")",
"{",
... | clean up... | [
"clean",
"up",
"..."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/wsspi/webcontainer/util/ByteBufferOutputStream.java#L77-L94 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webcontainer/src/com/ibm/wsspi/webcontainer/util/ByteBufferOutputStream.java | ByteBufferOutputStream.write | public void write(byte[] buf, int offset, int len) throws IOException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
{ // 306998.15
Tr.debug(tc, "write len --> " + len + ", limit->" + limit);
}
if (len < 0)
{
if (tc.isErrorEnabled())
Tr.error(tc, "Illegal.Ar... | java | public void write(byte[] buf, int offset, int len) throws IOException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
{ // 306998.15
Tr.debug(tc, "write len --> " + len + ", limit->" + limit);
}
if (len < 0)
{
if (tc.isErrorEnabled())
Tr.error(tc, "Illegal.Ar... | [
"public",
"void",
"write",
"(",
"byte",
"[",
"]",
"buf",
",",
"int",
"offset",
",",
"int",
"len",
")",
"throws",
"IOException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"{... | Writes a byte array | [
"Writes",
"a",
"byte",
"array"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/wsspi/webcontainer/util/ByteBufferOutputStream.java#L127-L186 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/WorkManagerImpl.java | WorkManagerImpl.doWork | @Override
public void doWork(
Work work,
long startTimeout,
ExecutionContext execContext,
WorkListener workListener) throws WorkException {
try {
beforeRunCheck(work, workListener, startTimeout);
... | java | @Override
public void doWork(
Work work,
long startTimeout,
ExecutionContext execContext,
WorkListener workListener) throws WorkException {
try {
beforeRunCheck(work, workListener, startTimeout);
... | [
"@",
"Override",
"public",
"void",
"doWork",
"(",
"Work",
"work",
",",
"long",
"startTimeout",
",",
"ExecutionContext",
"execContext",
",",
"WorkListener",
"workListener",
")",
"throws",
"WorkException",
"{",
"try",
"{",
"beforeRunCheck",
"(",
"work",
",",
"work... | This method does not return until the work is completed as the caller
expects to wait until the work is completed before getting control back.
This method accomplishes this by NOT spinning a thread.
@pre providerId != null
@param work
@param startTimeout
@param execContext
@param workListener
@throws WorkException
@s... | [
"This",
"method",
"does",
"not",
"return",
"until",
"the",
"work",
"is",
"completed",
"as",
"the",
"caller",
"expects",
"to",
"wait",
"until",
"the",
"work",
"is",
"completed",
"before",
"getting",
"control",
"back",
".",
"This",
"method",
"accomplishes",
"t... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/WorkManagerImpl.java#L102-L122 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/WorkManagerImpl.java | WorkManagerImpl.scheduleWork | @Override
public void scheduleWork(
Work work,
long startTimeout,
ExecutionContext execContext,
WorkListener workListener) throws WorkException {
try {
beforeRunCheck(work, workLi... | java | @Override
public void scheduleWork(
Work work,
long startTimeout,
ExecutionContext execContext,
WorkListener workListener) throws WorkException {
try {
beforeRunCheck(work, workLi... | [
"@",
"Override",
"public",
"void",
"scheduleWork",
"(",
"Work",
"work",
",",
"long",
"startTimeout",
",",
"ExecutionContext",
"execContext",
",",
"WorkListener",
"workListener",
")",
"throws",
"WorkException",
"{",
"try",
"{",
"beforeRunCheck",
"(",
"work",
",",
... | This method puts the work on a queue that is later processed by the
"scheduler" thread. This allows the method to return to the caller
without having to wait for the thread to start.
@pre providerId != null
@param work
@param startTimeout
@param execContext
@param workListener
@throws WorkException
@exception NullPoi... | [
"This",
"method",
"puts",
"the",
"work",
"on",
"a",
"queue",
"that",
"is",
"later",
"processed",
"by",
"the",
"scheduler",
"thread",
".",
"This",
"allows",
"the",
"method",
"to",
"return",
"to",
"the",
"caller",
"without",
"having",
"to",
"wait",
"for",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/WorkManagerImpl.java#L236-L262 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/WorkManagerImpl.java | WorkManagerImpl.beforeRunCheck | @Trivial
private void beforeRunCheck(
Work work,
WorkListener workListener,
long startTimeout) throws WorkRejectedException {
WorkRejectedException wrex = null;
if (work == null) {
wrex = new... | java | @Trivial
private void beforeRunCheck(
Work work,
WorkListener workListener,
long startTimeout) throws WorkRejectedException {
WorkRejectedException wrex = null;
if (work == null) {
wrex = new... | [
"@",
"Trivial",
"private",
"void",
"beforeRunCheck",
"(",
"Work",
"work",
",",
"WorkListener",
"workListener",
",",
"long",
"startTimeout",
")",
"throws",
"WorkRejectedException",
"{",
"WorkRejectedException",
"wrex",
"=",
"null",
";",
"if",
"(",
"work",
"==",
"... | Input parameter checks that can be done before calling run.
@param work
@param workListener
@param startTimeout
@throws WorkRejectedException | [
"Input",
"parameter",
"checks",
"that",
"can",
"be",
"done",
"before",
"calling",
"run",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/WorkManagerImpl.java#L273-L295 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/WorkManagerImpl.java | WorkManagerImpl.stop | public void stop() {
final boolean trace = TraceComponent.isAnyTracingEnabled();
// Stop accepting work
stopped = true;
// Cancel futures for submitted work
for (Future<Void> future = futures.poll(); future != null; future = futures.poll())
if (!future.isDone() && f... | java | public void stop() {
final boolean trace = TraceComponent.isAnyTracingEnabled();
// Stop accepting work
stopped = true;
// Cancel futures for submitted work
for (Future<Void> future = futures.poll(); future != null; future = futures.poll())
if (!future.isDone() && f... | [
"public",
"void",
"stop",
"(",
")",
"{",
"final",
"boolean",
"trace",
"=",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
";",
"// Stop accepting work",
"stopped",
"=",
"true",
";",
"// Cancel futures for submitted work",
"for",
"(",
"Future",
"<",
"Void"... | Provides a way to stop the WorkManager. | [
"Provides",
"a",
"way",
"to",
"stop",
"the",
"WorkManager",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/WorkManagerImpl.java#L311-L329 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/jfapchannel/server/impl/ListenerPortImpl.java | ListenerPortImpl.close | public void close() {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "close");
// begin F177053
ChannelFramework framework = ChannelFrameworkFactory.getChannelFramework(); // F196678.10
try {
framework.stopChain(chainInbound, CHAIN_STOP_TIME);
} catch (Ch... | java | public void close() {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "close");
// begin F177053
ChannelFramework framework = ChannelFrameworkFactory.getChannelFramework(); // F196678.10
try {
framework.stopChain(chainInbound, CHAIN_STOP_TIME);
} catch (Ch... | [
"public",
"void",
"close",
"(",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"close\"",
")",
";",
"// begin F177053",
"ChannelFramework",
"framework",
"=",
"ChannelFrameworkFactory",
... | Stops the listener port listening.
@see ListenerPort#close() | [
"Stops",
"the",
"listener",
"port",
"listening",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/jfapchannel/server/impl/ListenerPortImpl.java#L73-L98 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/jfapchannel/server/impl/ListenerPortImpl.java | ListenerPortImpl.getAcceptListener | public AcceptListener getAcceptListener() {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "getAcceptListener");
if (tc.isEntryEnabled())
SibTr.exit(this, tc, "getAcceptListener", acceptListener);
return acceptListener;
} | java | public AcceptListener getAcceptListener() {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "getAcceptListener");
if (tc.isEntryEnabled())
SibTr.exit(this, tc, "getAcceptListener", acceptListener);
return acceptListener;
} | [
"public",
"AcceptListener",
"getAcceptListener",
"(",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"getAcceptListener\"",
")",
";",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")"... | Returns the accept listener associated with this listener port.
@see ListenerPort#getAcceptListener() | [
"Returns",
"the",
"accept",
"listener",
"associated",
"with",
"this",
"listener",
"port",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/jfapchannel/server/impl/ListenerPortImpl.java#L105-L111 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/jfapchannel/server/impl/ListenerPortImpl.java | ListenerPortImpl.getPortNumber | public int getPortNumber() {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "getPortNumber");
if (tc.isEntryEnabled())
SibTr.exit(this, tc, "getPortNumber", "" + portNumber);
return portNumber;
} | java | public int getPortNumber() {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "getPortNumber");
if (tc.isEntryEnabled())
SibTr.exit(this, tc, "getPortNumber", "" + portNumber);
return portNumber;
} | [
"public",
"int",
"getPortNumber",
"(",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"getPortNumber\"",
")",
";",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",... | Returns the port number associated with this listener port.
@see ListenerPort#getPortNumber() | [
"Returns",
"the",
"port",
"number",
"associated",
"with",
"this",
"listener",
"port",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/jfapchannel/server/impl/ListenerPortImpl.java#L118-L124 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.rest.handler/src/com/ibm/wsspi/rest/handler/helper/DefaultRoutingHelper.java | DefaultRoutingHelper.containsRoutingContext | public static boolean containsRoutingContext(RESTRequest request) {
if (request.getHeader(RESTHandlerContainer.COLLECTIVE_HOST_NAMES) != null) {
return true;
}
//No routing header found, so check query strings
return getQueryParameterValue(request, RESTHandlerContainer.COLLE... | java | public static boolean containsRoutingContext(RESTRequest request) {
if (request.getHeader(RESTHandlerContainer.COLLECTIVE_HOST_NAMES) != null) {
return true;
}
//No routing header found, so check query strings
return getQueryParameterValue(request, RESTHandlerContainer.COLLE... | [
"public",
"static",
"boolean",
"containsRoutingContext",
"(",
"RESTRequest",
"request",
")",
"{",
"if",
"(",
"request",
".",
"getHeader",
"(",
"RESTHandlerContainer",
".",
"COLLECTIVE_HOST_NAMES",
")",
"!=",
"null",
")",
"{",
"return",
"true",
";",
"}",
"//No ro... | Quick check for multiple routing context, without actually fetching all pieces | [
"Quick",
"check",
"for",
"multiple",
"routing",
"context",
"without",
"actually",
"fetching",
"all",
"pieces"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.rest.handler/src/com/ibm/wsspi/rest/handler/helper/DefaultRoutingHelper.java#L106-L113 | train |
OpenLiberty/open-liberty | dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/services/impl/JPAPersistenceManagerImpl.java | JPAPersistenceManagerImpl.createPsu | private PersistenceServiceUnit createPsu(int jobInstanceVersion, int jobExecutionVersion) throws Exception {
return databaseStore.createPersistenceServiceUnit(getJobInstanceEntityClass(jobInstanceVersion).getClassLoader(),
getJobExecutionEntityClass(jobE... | java | private PersistenceServiceUnit createPsu(int jobInstanceVersion, int jobExecutionVersion) throws Exception {
return databaseStore.createPersistenceServiceUnit(getJobInstanceEntityClass(jobInstanceVersion).getClassLoader(),
getJobExecutionEntityClass(jobE... | [
"private",
"PersistenceServiceUnit",
"createPsu",
"(",
"int",
"jobInstanceVersion",
",",
"int",
"jobExecutionVersion",
")",
"throws",
"Exception",
"{",
"return",
"databaseStore",
".",
"createPersistenceServiceUnit",
"(",
"getJobInstanceEntityClass",
"(",
"jobInstanceVersion",... | Creates a PersistenceServiceUnit using the specified entity versions. | [
"Creates",
"a",
"PersistenceServiceUnit",
"using",
"the",
"specified",
"entity",
"versions",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/services/impl/JPAPersistenceManagerImpl.java#L270-L278 | train |
OpenLiberty/open-liberty | dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/services/impl/JPAPersistenceManagerImpl.java | JPAPersistenceManagerImpl.updateJobExecutionAndInstanceFinalStatus | public JobExecution updateJobExecutionAndInstanceFinalStatus(PersistenceServiceUnit psu,
final long jobExecutionId,
final BatchStatus finalBatchStatus,
... | java | public JobExecution updateJobExecutionAndInstanceFinalStatus(PersistenceServiceUnit psu,
final long jobExecutionId,
final BatchStatus finalBatchStatus,
... | [
"public",
"JobExecution",
"updateJobExecutionAndInstanceFinalStatus",
"(",
"PersistenceServiceUnit",
"psu",
",",
"final",
"long",
"jobExecutionId",
",",
"final",
"BatchStatus",
"finalBatchStatus",
",",
"final",
"String",
"finalExitStatus",
",",
"final",
"Date",
"endTime",
... | This method is called during recovery, as well as during normal operation.
Note this is public but not part of the IPersistenceManagerService interface,
since there's no equivalent for in-mem persistence.
Set the final batchStatus, exitStatus, and endTime for the given jobExecutionId. | [
"This",
"method",
"is",
"called",
"during",
"recovery",
"as",
"well",
"as",
"during",
"normal",
"operation",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/services/impl/JPAPersistenceManagerImpl.java#L1128-L1170 | train |
OpenLiberty/open-liberty | dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/services/impl/JPAPersistenceManagerImpl.java | JPAPersistenceManagerImpl.getStepExecutionsTopLevelFromJobExecutionId | @Override
public List<StepExecution> getStepExecutionsTopLevelFromJobExecutionId(final long jobExecutionId) throws NoSuchJobExecutionException {
final EntityManager em = getPsu().createEntityManager();
try {
List<StepExecution> exec = new TranRequest<List<StepExecution>>(em) {
... | java | @Override
public List<StepExecution> getStepExecutionsTopLevelFromJobExecutionId(final long jobExecutionId) throws NoSuchJobExecutionException {
final EntityManager em = getPsu().createEntityManager();
try {
List<StepExecution> exec = new TranRequest<List<StepExecution>>(em) {
... | [
"@",
"Override",
"public",
"List",
"<",
"StepExecution",
">",
"getStepExecutionsTopLevelFromJobExecutionId",
"(",
"final",
"long",
"jobExecutionId",
")",
"throws",
"NoSuchJobExecutionException",
"{",
"final",
"EntityManager",
"em",
"=",
"getPsu",
"(",
")",
".",
"creat... | order by start time, ascending | [
"order",
"by",
"start",
"time",
"ascending"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/services/impl/JPAPersistenceManagerImpl.java#L1980-L2005 | train |
OpenLiberty/open-liberty | dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/services/impl/JPAPersistenceManagerImpl.java | JPAPersistenceManagerImpl.updateRemotablePartitionOnRecovery | public RemotablePartitionEntity updateRemotablePartitionOnRecovery(PersistenceServiceUnit psu,
final RemotablePartitionEntity partition) {
// TODO Auto-generated method stub
EntityManager em = psu.createEntityManager();
try {... | java | public RemotablePartitionEntity updateRemotablePartitionOnRecovery(PersistenceServiceUnit psu,
final RemotablePartitionEntity partition) {
// TODO Auto-generated method stub
EntityManager em = psu.createEntityManager();
try {... | [
"public",
"RemotablePartitionEntity",
"updateRemotablePartitionOnRecovery",
"(",
"PersistenceServiceUnit",
"psu",
",",
"final",
"RemotablePartitionEntity",
"partition",
")",
"{",
"// TODO Auto-generated method stub",
"EntityManager",
"em",
"=",
"psu",
".",
"createEntityManager",
... | This method is called during recovery
Set the lastUpdated for the given RemotablePartitionEntity | [
"This",
"method",
"is",
"called",
"during",
"recovery"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/services/impl/JPAPersistenceManagerImpl.java#L2110-L2127 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.wsoc/src/com/ibm/ws/wsoc/SessionImpl.java | SessionImpl.addMessageHandler | public <T> void addMessageHandler(Class<T> clazz, Whole<T> handler) {
connLink.addMessageHandler(clazz, handler);
} | java | public <T> void addMessageHandler(Class<T> clazz, Whole<T> handler) {
connLink.addMessageHandler(clazz, handler);
} | [
"public",
"<",
"T",
">",
"void",
"addMessageHandler",
"(",
"Class",
"<",
"T",
">",
"clazz",
",",
"Whole",
"<",
"T",
">",
"handler",
")",
"{",
"connLink",
".",
"addMessageHandler",
"(",
"clazz",
",",
"handler",
")",
";",
"}"
] | websocket 1.1 methods | [
"websocket",
"1",
".",
"1",
"methods"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.wsoc/src/com/ibm/ws/wsoc/SessionImpl.java#L503-L505 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webserver.plugin.utility/src/com/ibm/ws/webserver/plugin/utility/utils/PluginUtilityConsole.java | PluginUtilityConsole.promptForUser | public String promptForUser(String arg) {
String user = console.readLine(CommandUtils.getMessage("user.enterText", arg) + " ");
return user;
} | java | public String promptForUser(String arg) {
String user = console.readLine(CommandUtils.getMessage("user.enterText", arg) + " ");
return user;
} | [
"public",
"String",
"promptForUser",
"(",
"String",
"arg",
")",
"{",
"String",
"user",
"=",
"console",
".",
"readLine",
"(",
"CommandUtils",
".",
"getMessage",
"(",
"\"user.enterText\"",
",",
"arg",
")",
"+",
"\" \"",
")",
";",
"return",
"user",
";",
"}"
] | Prompt the user to enter text.
@return Entered String | [
"Prompt",
"the",
"user",
"to",
"enter",
"text",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webserver.plugin.utility/src/com/ibm/ws/webserver/plugin/utility/utils/PluginUtilityConsole.java#L46-L50 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbOnePhaseXaResourceImpl.java | WSRdbOnePhaseXaResourceImpl.end | public void end(Xid xid, int flags) throws XAException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(this, tc, "end", new Object[]
{
ivManagedConnection,
AdapterUtil.toString(xid),
... | java | public void end(Xid xid, int flags) throws XAException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(this, tc, "end", new Object[]
{
ivManagedConnection,
AdapterUtil.toString(xid),
... | [
"public",
"void",
"end",
"(",
"Xid",
"xid",
",",
"int",
"flags",
")",
"throws",
"XAException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"this",
",... | XAException with return code XA_RBROLLBACK | [
"XAException",
"with",
"return",
"code",
"XA_RBROLLBACK"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbOnePhaseXaResourceImpl.java#L236-L265 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbOnePhaseXaResourceImpl.java | WSRdbOnePhaseXaResourceImpl.rollback | public void rollback(Xid xid) throws XAException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(this, tc, "rollback", new Object[]
{
ivManagedConnection,
AdapterUtil.toString(xid)
});
... | java | public void rollback(Xid xid) throws XAException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(this, tc, "rollback", new Object[]
{
ivManagedConnection,
AdapterUtil.toString(xid)
});
... | [
"public",
"void",
"rollback",
"(",
"Xid",
"xid",
")",
"throws",
"XAException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\... | XAER_RMERR return code in XAException | [
"XAER_RMERR",
"return",
"code",
"in",
"XAException"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbOnePhaseXaResourceImpl.java#L422-L483 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jdbc.management.j2ee/src/com/ibm/ws/jdbc/management/j2ee/internal/JDBCMBeanRuntime.java | JDBCMBeanRuntime.getBundleContext | private static BundleContext getBundleContext(final Bundle bundle) {
if (System.getSecurityManager() == null)
return bundle.getBundleContext();
else
return AccessController.doPrivileged(new PrivilegedAction<BundleContext>() {
@Override
public Bundl... | java | private static BundleContext getBundleContext(final Bundle bundle) {
if (System.getSecurityManager() == null)
return bundle.getBundleContext();
else
return AccessController.doPrivileged(new PrivilegedAction<BundleContext>() {
@Override
public Bundl... | [
"private",
"static",
"BundleContext",
"getBundleContext",
"(",
"final",
"Bundle",
"bundle",
")",
"{",
"if",
"(",
"System",
".",
"getSecurityManager",
"(",
")",
"==",
"null",
")",
"return",
"bundle",
".",
"getBundleContext",
"(",
")",
";",
"else",
"return",
"... | no need for an updatedJdbcDriver because changes will not impact the mbean | [
"no",
"need",
"for",
"an",
"updatedJdbcDriver",
"because",
"changes",
"will",
"not",
"impact",
"the",
"mbean"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jdbc.management.j2ee/src/com/ibm/ws/jdbc/management/j2ee/internal/JDBCMBeanRuntime.java#L350-L360 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/renderkit/ErrorPageWriter.java | ErrorPageWriter.debugHtml | public static void debugHtml(Writer writer, FacesContext faces, Throwable e) throws IOException
{
debugHtml(writer, faces, faces.getViewRoot(), null, e);
} | java | public static void debugHtml(Writer writer, FacesContext faces, Throwable e) throws IOException
{
debugHtml(writer, faces, faces.getViewRoot(), null, e);
} | [
"public",
"static",
"void",
"debugHtml",
"(",
"Writer",
"writer",
",",
"FacesContext",
"faces",
",",
"Throwable",
"e",
")",
"throws",
"IOException",
"{",
"debugHtml",
"(",
"writer",
",",
"faces",
",",
"faces",
".",
"getViewRoot",
"(",
")",
",",
"null",
","... | Generates the HTML error page for the given Throwable
and writes it to the given writer.
@param writer
@param faces
@param e
@throws IOException | [
"Generates",
"the",
"HTML",
"error",
"page",
"for",
"the",
"given",
"Throwable",
"and",
"writes",
"it",
"to",
"the",
"given",
"writer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/renderkit/ErrorPageWriter.java#L264-L267 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/renderkit/ErrorPageWriter.java | ErrorPageWriter.debugHtml | public static void debugHtml(Writer writer, FacesContext faces) throws IOException
{
_init(faces);
Date now = new Date();
for (int i = 0; i < debugParts.length; i++)
{
if ("message".equals(debugParts[i]))
{
writer.write(faces.getViewRoot().getV... | java | public static void debugHtml(Writer writer, FacesContext faces) throws IOException
{
_init(faces);
Date now = new Date();
for (int i = 0; i < debugParts.length; i++)
{
if ("message".equals(debugParts[i]))
{
writer.write(faces.getViewRoot().getV... | [
"public",
"static",
"void",
"debugHtml",
"(",
"Writer",
"writer",
",",
"FacesContext",
"faces",
")",
"throws",
"IOException",
"{",
"_init",
"(",
"faces",
")",
";",
"Date",
"now",
"=",
"new",
"Date",
"(",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";... | Generates the HTML debug page for the current view
and writes it to the given writer.
@param writer
@param faces
@throws IOException | [
"Generates",
"the",
"HTML",
"debug",
"page",
"for",
"the",
"current",
"view",
"and",
"writes",
"it",
"to",
"the",
"given",
"writer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/renderkit/ErrorPageWriter.java#L399-L430 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/SchemaSet.java | SchemaSet.hashToTable | private int hashToTable(Long id, Entry[] table) {
int posVal = id.intValue() & Integer.MAX_VALUE;
return (posVal % table.length);
} | java | private int hashToTable(Long id, Entry[] table) {
int posVal = id.intValue() & Integer.MAX_VALUE;
return (posVal % table.length);
} | [
"private",
"int",
"hashToTable",
"(",
"Long",
"id",
",",
"Entry",
"[",
"]",
"table",
")",
"{",
"int",
"posVal",
"=",
"id",
".",
"intValue",
"(",
")",
"&",
"Integer",
".",
"MAX_VALUE",
";",
"return",
"(",
"posVal",
"%",
"table",
".",
"length",
")",
... | The Long Id is already effectively a hashcode for the Schema and should
be unique. All we should need to do is get a positive integer version of it
& divide by the table size. | [
"The",
"Long",
"Id",
"is",
"already",
"effectively",
"a",
"hashcode",
"for",
"the",
"Schema",
"and",
"should",
"be",
"unique",
".",
"All",
"we",
"should",
"need",
"to",
"do",
"is",
"get",
"a",
"positive",
"integer",
"version",
"of",
"it",
"&",
"divide",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/SchemaSet.java#L289-L292 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/SchemaSet.java | SchemaSet.resize | private void resize() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "resize", table.length);
Entry[] newTable = new Entry[table.length + (table.length / 2)];
/* We have to walk the entire SchemaSet, rehashing each Entry and putting */
/* it in its new home. A... | java | private void resize() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "resize", table.length);
Entry[] newTable = new Entry[table.length + (table.length / 2)];
/* We have to walk the entire SchemaSet, rehashing each Entry and putting */
/* it in its new home. A... | [
"private",
"void",
"resize",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"resize\"",
",",
"table",
".",
"lengt... | Resize the SchemaSet, adding 50% to the size.
This method must only be called from add() which is synchronized. | [
"Resize",
"the",
"SchemaSet",
"adding",
"50%",
"to",
"the",
"size",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/SchemaSet.java#L300-L324 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/SchemaSet.java | SchemaSet.toVerboseString | public String toVerboseString() {
/* Take a local reference to the table in case a resize happens. */
Entry[] tempTable = table;
StringBuffer buf = new StringBuffer();
/* Include the SchemaSet hashcode just in case we need to distinguish them */
buf.append("SchemaSet ");
buf.append(this.hashC... | java | public String toVerboseString() {
/* Take a local reference to the table in case a resize happens. */
Entry[] tempTable = table;
StringBuffer buf = new StringBuffer();
/* Include the SchemaSet hashcode just in case we need to distinguish them */
buf.append("SchemaSet ");
buf.append(this.hashC... | [
"public",
"String",
"toVerboseString",
"(",
")",
"{",
"/* Take a local reference to the table in case a resize happens. */",
"Entry",
"[",
"]",
"tempTable",
"=",
"table",
";",
"StringBuffer",
"buf",
"=",
"new",
"StringBuffer",
"(",
")",
";",
"/* Include the SchemaSet hash... | Returns a printable view of the SchemaSet and contents for use in
debugging and Unit Tests.
@return String Printable view of the SchemaSet and contents | [
"Returns",
"a",
"printable",
"view",
"of",
"the",
"SchemaSet",
"and",
"contents",
"for",
"use",
"in",
"debugging",
"and",
"Unit",
"Tests",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/SchemaSet.java#L333-L363 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/SchemaSet.java | SchemaSet.debugId | private static final String debugId(Object o) {
Long id = (Long)o;
byte[] buf = new byte[8];
ArrayUtil.writeLong(buf, 0, id.longValue());
return HexUtil.toString(buf);
} | java | private static final String debugId(Object o) {
Long id = (Long)o;
byte[] buf = new byte[8];
ArrayUtil.writeLong(buf, 0, id.longValue());
return HexUtil.toString(buf);
} | [
"private",
"static",
"final",
"String",
"debugId",
"(",
"Object",
"o",
")",
"{",
"Long",
"id",
"=",
"(",
"Long",
")",
"o",
";",
"byte",
"[",
"]",
"buf",
"=",
"new",
"byte",
"[",
"8",
"]",
";",
"ArrayUtil",
".",
"writeLong",
"(",
"buf",
",",
"0",
... | Write a Schema Id out as a hex string.
@param o The SchemaId
@return String A hex string representaion of the SchemaId's long value. | [
"Write",
"a",
"Schema",
"Id",
"out",
"as",
"a",
"hex",
"string",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/SchemaSet.java#L373-L378 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca.utils/src/com/ibm/ws/jca/utils/xml/ra/RaAuthenticationMechanism.java | RaAuthenticationMechanism.setAuthenticationMechanismType | @XmlElement(name = "authentication-mechanism-type", required = true)
public void setAuthenticationMechanismType(String authMech) {
AuthenticationMechanismType type = AuthenticationMechanismType.valueOf(authMech);
authenticationMechanismType = type.name();
} | java | @XmlElement(name = "authentication-mechanism-type", required = true)
public void setAuthenticationMechanismType(String authMech) {
AuthenticationMechanismType type = AuthenticationMechanismType.valueOf(authMech);
authenticationMechanismType = type.name();
} | [
"@",
"XmlElement",
"(",
"name",
"=",
"\"authentication-mechanism-type\"",
",",
"required",
"=",
"true",
")",
"public",
"void",
"setAuthenticationMechanismType",
"(",
"String",
"authMech",
")",
"{",
"AuthenticationMechanismType",
"type",
"=",
"AuthenticationMechanismType",... | Set the authentication mechanism type
@param the authentication mechanism type | [
"Set",
"the",
"authentication",
"mechanism",
"type"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca.utils/src/com/ibm/ws/jca/utils/xml/ra/RaAuthenticationMechanism.java#L85-L89 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jndi/src/com/ibm/ws/jndi/internal/ContextNode.java | ContextNode.autoBind | @FFDCIgnore(ClassCastException.class)
void autoBind(WSName subname, Object obj) throws InvalidNameException, NotContextException, NameAlreadyBoundException {
ContextNode target = this, parent = this;
int i = 0;
try {
for (/* int i = 0 */; i < subname.size() - 1; i++) {
... | java | @FFDCIgnore(ClassCastException.class)
void autoBind(WSName subname, Object obj) throws InvalidNameException, NotContextException, NameAlreadyBoundException {
ContextNode target = this, parent = this;
int i = 0;
try {
for (/* int i = 0 */; i < subname.size() - 1; i++) {
... | [
"@",
"FFDCIgnore",
"(",
"ClassCastException",
".",
"class",
")",
"void",
"autoBind",
"(",
"WSName",
"subname",
",",
"Object",
"obj",
")",
"throws",
"InvalidNameException",
",",
"NotContextException",
",",
"NameAlreadyBoundException",
"{",
"ContextNode",
"target",
"=... | Works like bind but automatically creates intermediate contexts if
they do not exist. Any automatically created contexts will be
cleaned up automatically when their last child is unbound. | [
"Works",
"like",
"bind",
"but",
"automatically",
"creates",
"intermediate",
"contexts",
"if",
"they",
"do",
"not",
"exist",
".",
"Any",
"automatically",
"created",
"contexts",
"will",
"be",
"cleaned",
"up",
"automatically",
"when",
"their",
"last",
"child",
"is"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jndi/src/com/ibm/ws/jndi/internal/ContextNode.java#L158-L206 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeAtEntryMethodAdapter.java | ProbeAtEntryMethodAdapter.onMethodEntry | @Override
protected void onMethodEntry() {
if (enabledListeners.isEmpty())
return;
String probeKey = createKey();
ProbeImpl probe = getProbe(probeKey);
long probeId = probe.getIdentifier();
setProbeInProgress(true);
visitLdcInsn(Long.valueOf(probeId)); /... | java | @Override
protected void onMethodEntry() {
if (enabledListeners.isEmpty())
return;
String probeKey = createKey();
ProbeImpl probe = getProbe(probeKey);
long probeId = probe.getIdentifier();
setProbeInProgress(true);
visitLdcInsn(Long.valueOf(probeId)); /... | [
"@",
"Override",
"protected",
"void",
"onMethodEntry",
"(",
")",
"{",
"if",
"(",
"enabledListeners",
".",
"isEmpty",
"(",
")",
")",
"return",
";",
"String",
"probeKey",
"=",
"createKey",
"(",
")",
";",
"ProbeImpl",
"probe",
"=",
"getProbe",
"(",
"probeKey"... | Inject the byte code required to fire a method entry probe. | [
"Inject",
"the",
"byte",
"code",
"required",
"to",
"fire",
"a",
"method",
"entry",
"probe",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeAtEntryMethodAdapter.java#L57-L79 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/io/async/AbstractAsyncChannel.java | AbstractAsyncChannel.getBufAddress | static long getBufAddress(ByteBuffer theBuffer) {
/*
* This only works for DIRECT byte buffers. Direct ByteBuffers have a field called "address" which
* holds the physical address of the start of the buffer contents in native memory.
* This method obtains the value of the address fiel... | java | static long getBufAddress(ByteBuffer theBuffer) {
/*
* This only works for DIRECT byte buffers. Direct ByteBuffers have a field called "address" which
* holds the physical address of the start of the buffer contents in native memory.
* This method obtains the value of the address fiel... | [
"static",
"long",
"getBufAddress",
"(",
"ByteBuffer",
"theBuffer",
")",
"{",
"/*\n * This only works for DIRECT byte buffers. Direct ByteBuffers have a field called \"address\" which\n * holds the physical address of the start of the buffer contents in native memory.\n * This... | Returns the address of the start of the given direct byte buffer in
OS memory.
@param theBuffer
the direct byte buffer.
@return the OS address as a <code>long</code>.
@throws IllegalArgumentException
if the buffer is not direct. | [
"Returns",
"the",
"address",
"of",
"the",
"start",
"of",
"the",
"given",
"direct",
"byte",
"buffer",
"in",
"OS",
"memory",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/io/async/AbstractAsyncChannel.java#L137-L156 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/io/async/AbstractAsyncChannel.java | AbstractAsyncChannel.getFutureFromIndex | public AsyncFuture getFutureFromIndex(int theIndex) {
if (theIndex == READ_FUTURE_INDEX || theIndex == SYNC_READ_FUTURE_INDEX) {
return this.readFuture;
}
if (theIndex == WRITE_FUTURE_INDEX || theIndex == SYNC_WRITE_FUTURE_INDEX) {
return this.writeFuture;
}
... | java | public AsyncFuture getFutureFromIndex(int theIndex) {
if (theIndex == READ_FUTURE_INDEX || theIndex == SYNC_READ_FUTURE_INDEX) {
return this.readFuture;
}
if (theIndex == WRITE_FUTURE_INDEX || theIndex == SYNC_WRITE_FUTURE_INDEX) {
return this.writeFuture;
}
... | [
"public",
"AsyncFuture",
"getFutureFromIndex",
"(",
"int",
"theIndex",
")",
"{",
"if",
"(",
"theIndex",
"==",
"READ_FUTURE_INDEX",
"||",
"theIndex",
"==",
"SYNC_READ_FUTURE_INDEX",
")",
"{",
"return",
"this",
".",
"readFuture",
";",
"}",
"if",
"(",
"theIndex",
... | Gets the Future corresponding to a supplied index value.
@param theIndex the index value of the Future
@return the Future corresponding to the index number. null if there is no Future which
corresponds to the supplied Index | [
"Gets",
"the",
"Future",
"corresponding",
"to",
"a",
"supplied",
"index",
"value",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/io/async/AbstractAsyncChannel.java#L206-L214 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/io/async/AbstractAsyncChannel.java | AbstractAsyncChannel.cancel | void cancel(AsyncChannelFuture future, Exception reason) throws ClosedChannelException, IOException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "cancel");
}
if (!isOpen()) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnable... | java | void cancel(AsyncChannelFuture future, Exception reason) throws ClosedChannelException, IOException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "cancel");
}
if (!isOpen()) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnable... | [
"void",
"cancel",
"(",
"AsyncChannelFuture",
"future",
",",
"Exception",
"reason",
")",
"throws",
"ClosedChannelException",
",",
"IOException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
"... | Package private version of cancel, which takes an exception as an
additional parameter. The exception is applied to the future on
cancellation.
@param future
@param reason
@throws ClosedChannelException
@throws IOException | [
"Package",
"private",
"version",
"of",
"cancel",
"which",
"takes",
"an",
"exception",
"as",
"an",
"additional",
"parameter",
".",
"The",
"exception",
"is",
"applied",
"to",
"the",
"future",
"on",
"cancellation",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/io/async/AbstractAsyncChannel.java#L226-L276 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.monitor/src/com/ibm/ws/pmi/server/data/SpdDataImpl.java | SpdDataImpl.enable | public void enable(int level) {
if (level >= PmiConstants.LEVEL_HIGH)
sync = true;
else
sync = false;
if (!enabled) {
enabled = true;
reset();
}
} | java | public void enable(int level) {
if (level >= PmiConstants.LEVEL_HIGH)
sync = true;
else
sync = false;
if (!enabled) {
enabled = true;
reset();
}
} | [
"public",
"void",
"enable",
"(",
"int",
"level",
")",
"{",
"if",
"(",
"level",
">=",
"PmiConstants",
".",
"LEVEL_HIGH",
")",
"sync",
"=",
"true",
";",
"else",
"sync",
"=",
"false",
";",
"if",
"(",
"!",
"enabled",
")",
"{",
"enabled",
"=",
"true",
"... | mark the data enabled and reset the value and createTime | [
"mark",
"the",
"data",
"enabled",
"and",
"reset",
"the",
"value",
"and",
"createTime"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/pmi/server/data/SpdDataImpl.java#L57-L67 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.container.service.compat/src/com/ibm/ejs/util/FastHashtable.java | FastHashtable.getBucketForKey | protected final Bucket<K, V> getBucketForKey(K key) {
int bucket_index = (key.hashCode() & 0x7FFFFFFF) % buckets.length;
Bucket<K, V> thebucket = buckets[bucket_index];
if (thebucket == null) {
synchronized (this) {
thebucket = buckets[bucket_index];
i... | java | protected final Bucket<K, V> getBucketForKey(K key) {
int bucket_index = (key.hashCode() & 0x7FFFFFFF) % buckets.length;
Bucket<K, V> thebucket = buckets[bucket_index];
if (thebucket == null) {
synchronized (this) {
thebucket = buckets[bucket_index];
i... | [
"protected",
"final",
"Bucket",
"<",
"K",
",",
"V",
">",
"getBucketForKey",
"(",
"K",
"key",
")",
"{",
"int",
"bucket_index",
"=",
"(",
"key",
".",
"hashCode",
"(",
")",
"&",
"0x7FFFFFFF",
")",
"%",
"buckets",
".",
"length",
";",
"Bucket",
"<",
"K",
... | Returns the bucket which the specified key hashes to | [
"Returns",
"the",
"bucket",
"which",
"the",
"specified",
"key",
"hashes",
"to"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.container.service.compat/src/com/ibm/ejs/util/FastHashtable.java#L140-L153 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.diagnostics/src/com/ibm/ws/diagnostics/AbstractMBeanIntrospector.java | AbstractMBeanIntrospector.introspect | protected void introspect(ObjectName objectName, QueryExp query, PrintWriter writer) {
// Iterate over the mbean servers, query for the beans, introspect
for (MBeanServer mbeanServer : getMBeanServers()) {
for (ObjectName mbean : mbeanServer.queryNames(objectName, query)) {
i... | java | protected void introspect(ObjectName objectName, QueryExp query, PrintWriter writer) {
// Iterate over the mbean servers, query for the beans, introspect
for (MBeanServer mbeanServer : getMBeanServers()) {
for (ObjectName mbean : mbeanServer.queryNames(objectName, query)) {
i... | [
"protected",
"void",
"introspect",
"(",
"ObjectName",
"objectName",
",",
"QueryExp",
"query",
",",
"PrintWriter",
"writer",
")",
"{",
"// Iterate over the mbean servers, query for the beans, introspect",
"for",
"(",
"MBeanServer",
"mbeanServer",
":",
"getMBeanServers",
"(",... | GIven a JMX object name and a filter, introspect all matching
MBeans that are found associated with registered MBean servers.
@param objectName the object name pattern to provide
to {@link javax.management.MBeanServer#queryNames(ObjectName, QueryExp)
queryNames}
@param query the query expression to provide to {@code q... | [
"GIven",
"a",
"JMX",
"object",
"name",
"and",
"a",
"filter",
"introspect",
"all",
"matching",
"MBeans",
"that",
"are",
"found",
"associated",
"with",
"registered",
"MBean",
"servers",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.diagnostics/src/com/ibm/ws/diagnostics/AbstractMBeanIntrospector.java#L56-L63 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.diagnostics/src/com/ibm/ws/diagnostics/AbstractMBeanIntrospector.java | AbstractMBeanIntrospector.getFormattedArray | String getFormattedArray(Object attribute, String indent) {
int arrayLength = Array.getLength(attribute);
if (arrayLength == 0) {
return "[]";
}
Class<?> componentType = attribute.getClass().getComponentType();
// For the 8 primitive types, a cast is necessary when ... | java | String getFormattedArray(Object attribute, String indent) {
int arrayLength = Array.getLength(attribute);
if (arrayLength == 0) {
return "[]";
}
Class<?> componentType = attribute.getClass().getComponentType();
// For the 8 primitive types, a cast is necessary when ... | [
"String",
"getFormattedArray",
"(",
"Object",
"attribute",
",",
"String",
"indent",
")",
"{",
"int",
"arrayLength",
"=",
"Array",
".",
"getLength",
"(",
"attribute",
")",
";",
"if",
"(",
"arrayLength",
"==",
"0",
")",
"{",
"return",
"\"[]\"",
";",
"}",
"... | Format an array.
Note: This doesn't properly format arrays of composite types.
@param attribute the mbean attribute to format
@param the current indent level of the formatted report
@return the formatted array | [
"Format",
"an",
"array",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.diagnostics/src/com/ibm/ws/diagnostics/AbstractMBeanIntrospector.java#L171-L210 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.diagnostics/src/com/ibm/ws/diagnostics/AbstractMBeanIntrospector.java | AbstractMBeanIntrospector.getFormattedCompositeData | String getFormattedCompositeData(CompositeData cd, String indent) {
StringBuilder sb = new StringBuilder();
indent += INDENT;
CompositeType type = cd.getCompositeType();
for (String key : type.keySet()) {
sb.append("\n").append(indent);
sb.append(key).append(": ")... | java | String getFormattedCompositeData(CompositeData cd, String indent) {
StringBuilder sb = new StringBuilder();
indent += INDENT;
CompositeType type = cd.getCompositeType();
for (String key : type.keySet()) {
sb.append("\n").append(indent);
sb.append(key).append(": ")... | [
"String",
"getFormattedCompositeData",
"(",
"CompositeData",
"cd",
",",
"String",
"indent",
")",
"{",
"StringBuilder",
"sb",
"=",
"new",
"StringBuilder",
"(",
")",
";",
"indent",
"+=",
"INDENT",
";",
"CompositeType",
"type",
"=",
"cd",
".",
"getCompositeType",
... | Format an open MBean composite data attribute.
@param cd the composite data attribute
@param indent the current indent level of the formatted report
@return the formatted composite data | [
"Format",
"an",
"open",
"MBean",
"composite",
"data",
"attribute",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.diagnostics/src/com/ibm/ws/diagnostics/AbstractMBeanIntrospector.java#L242-L261 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.diagnostics/src/com/ibm/ws/diagnostics/AbstractMBeanIntrospector.java | AbstractMBeanIntrospector.getFormattedTabularData | @SuppressWarnings("unchecked")
String getFormattedTabularData(TabularData td, String indent) {
StringBuilder sb = new StringBuilder();
indent += INDENT;
sb.append("{");
Collection<CompositeData> values = (Collection<CompositeData>) td.values();
int valuesRemaining = values.s... | java | @SuppressWarnings("unchecked")
String getFormattedTabularData(TabularData td, String indent) {
StringBuilder sb = new StringBuilder();
indent += INDENT;
sb.append("{");
Collection<CompositeData> values = (Collection<CompositeData>) td.values();
int valuesRemaining = values.s... | [
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"String",
"getFormattedTabularData",
"(",
"TabularData",
"td",
",",
"String",
"indent",
")",
"{",
"StringBuilder",
"sb",
"=",
"new",
"StringBuilder",
"(",
")",
";",
"indent",
"+=",
"INDENT",
";",
"sb",
".",
... | Format an open MBean tabular data attribute.
@param td the tabular data attribute
@param indent the current indent level of the formatted report
@return the formatted composite data | [
"Format",
"an",
"open",
"MBean",
"tabular",
"data",
"attribute",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.diagnostics/src/com/ibm/ws/diagnostics/AbstractMBeanIntrospector.java#L271-L288 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca.inbound.security/src/com/ibm/ws/jca/security/internal/J2CSecurityCallbackHandler.java | J2CSecurityCallbackHandler.handle | @Override
public void handle(Callback[] callbacks) throws IOException,
UnsupportedCallbackException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "handle");
}
if (callbacks == null || callbacks.length == 0) {
if ... | java | @Override
public void handle(Callback[] callbacks) throws IOException,
UnsupportedCallbackException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "handle");
}
if (callbacks == null || callbacks.length == 0) {
if ... | [
"@",
"Override",
"public",
"void",
"handle",
"(",
"Callback",
"[",
"]",
"callbacks",
")",
"throws",
"IOException",
",",
"UnsupportedCallbackException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"("... | This method is invoked by the resource adapter after passing the list
of callbacks that it needs the application server to handle. The behaviour
of the handler for each of the callbacks is given below
1) CallerPrincipalCallback: The handler gets the caller principal that
this callback returns and sets it on the subjec... | [
"This",
"method",
"is",
"invoked",
"by",
"the",
"resource",
"adapter",
"after",
"passing",
"the",
"list",
"of",
"callbacks",
"that",
"it",
"needs",
"the",
"application",
"server",
"to",
"handle",
".",
"The",
"behaviour",
"of",
"the",
"handler",
"for",
"each"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca.inbound.security/src/com/ibm/ws/jca/security/internal/J2CSecurityCallbackHandler.java#L107-L165 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca.inbound.security/src/com/ibm/ws/jca/security/internal/J2CSecurityCallbackHandler.java | J2CSecurityCallbackHandler.arrangeCallbacks | private void arrangeCallbacks(Callback[] callbacks) {
if (callbacks[0] instanceof CallerPrincipalCallback)
return;
int length = callbacks.length;
for (int i = 0; i < length; i++) {
if (callbacks[i] instanceof CallerPrincipalCallback) {
Callback callback =... | java | private void arrangeCallbacks(Callback[] callbacks) {
if (callbacks[0] instanceof CallerPrincipalCallback)
return;
int length = callbacks.length;
for (int i = 0; i < length; i++) {
if (callbacks[i] instanceof CallerPrincipalCallback) {
Callback callback =... | [
"private",
"void",
"arrangeCallbacks",
"(",
"Callback",
"[",
"]",
"callbacks",
")",
"{",
"if",
"(",
"callbacks",
"[",
"0",
"]",
"instanceof",
"CallerPrincipalCallback",
")",
"return",
";",
"int",
"length",
"=",
"callbacks",
".",
"length",
";",
"for",
"(",
... | This method is called to ensure that the first callback is always a CallerPrincipalCallback
irrespective of the order in which the callbacks are passed in by the resource adapter.
If we need to return false to the PasswordValidationCallback when the name passed in by the
CallerPrincipalCallback is different from the on... | [
"This",
"method",
"is",
"called",
"to",
"ensure",
"that",
"the",
"first",
"callback",
"is",
"always",
"a",
"CallerPrincipalCallback",
"irrespective",
"of",
"the",
"order",
"in",
"which",
"the",
"callbacks",
"are",
"passed",
"in",
"by",
"the",
"resource",
"adap... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca.inbound.security/src/com/ibm/ws/jca/security/internal/J2CSecurityCallbackHandler.java#L188-L201 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/Queue.java | Queue.makeEmptyAndClean | public final void makeEmptyAndClean()
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "makeEmptyAndClean");
makeEmpty();
for (int i=0;i<m_array.length;++i) m_array[i]=null;
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "makeEmptyAndClean");
} | java | public final void makeEmptyAndClean()
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "makeEmptyAndClean");
makeEmpty();
for (int i=0;i<m_array.length;++i) m_array[i]=null;
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "makeEmptyAndClean");
} | [
"public",
"final",
"void",
"makeEmptyAndClean",
"(",
")",
"{",
"// if (tc.isEntryEnabled())",
"// SibTr.entry(tc, \"makeEmptyAndClean\");",
"makeEmpty",
"(",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"m_array",
".",
"length",
";",
"++",
... | Empty the queue, and also set every element of the internal
array to "null" so that the removed elements can be GC'd. | [
"Empty",
"the",
"queue",
"and",
"also",
"set",
"every",
"element",
"of",
"the",
"internal",
"array",
"to",
"null",
"so",
"that",
"the",
"removed",
"elements",
"can",
"be",
"GC",
"d",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/Queue.java#L88-L96 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/Queue.java | Queue.size | public final int size()
{
if (tc.isEntryEnabled())
SibTr.entry(tc, "size");
int result = (m_tail >= m_head) ? (m_tail - m_head) : (m_array.length - m_head + m_tail);
if (tc.isEntryEnabled())
SibTr.exit(tc, "size", new Integer(result));
return result;
} | java | public final int size()
{
if (tc.isEntryEnabled())
SibTr.entry(tc, "size");
int result = (m_tail >= m_head) ? (m_tail - m_head) : (m_array.length - m_head + m_tail);
if (tc.isEntryEnabled())
SibTr.exit(tc, "size", new Integer(result));
return result;
} | [
"public",
"final",
"int",
"size",
"(",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"\"size\"",
")",
";",
"int",
"result",
"=",
"(",
"m_tail",
">=",
"m_head",
")",
"?",
"(",
"m_tail",
"-"... | Return the number of elements in the queue.
@return the number of elements in the queue. | [
"Return",
"the",
"number",
"of",
"elements",
"in",
"the",
"queue",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/Queue.java#L103-L111 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/Queue.java | Queue.enqueue | public final void enqueue(Object obj)
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "enqueue", obj);
// m_array has at least one position in it that is free.
m_array[m_tail++] = obj;
if (m_tail == m_array.length)
m_tail = 0;
if (m_head == m_tail)
expand_array();
// if (tc.isE... | java | public final void enqueue(Object obj)
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "enqueue", obj);
// m_array has at least one position in it that is free.
m_array[m_tail++] = obj;
if (m_tail == m_array.length)
m_tail = 0;
if (m_head == m_tail)
expand_array();
// if (tc.isE... | [
"public",
"final",
"void",
"enqueue",
"(",
"Object",
"obj",
")",
"{",
"// if (tc.isEntryEnabled())",
"// SibTr.entry(tc, \"enqueue\", obj);",
"// m_array has at least one position in it that is free.",
"m_array",
"[",
"m_tail",
"++",
"]",
"=",
"obj",
";",
"if",
"(",... | Store an object in the queue.
@param obj the object to be stored. | [
"Store",
"an",
"object",
"in",
"the",
"queue",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/Queue.java#L118-L130 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/Queue.java | Queue.dequeue | public final Object dequeue()
throws NoSuchElementException
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "dequeue");
if (m_head == m_tail)
throw new NoSuchElementException();
Object obj = m_array[m_head];
m_array[m_head++] = null;
if (m_head == m_array.length)
m_head = 0;
... | java | public final Object dequeue()
throws NoSuchElementException
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "dequeue");
if (m_head == m_tail)
throw new NoSuchElementException();
Object obj = m_array[m_head];
m_array[m_head++] = null;
if (m_head == m_array.length)
m_head = 0;
... | [
"public",
"final",
"Object",
"dequeue",
"(",
")",
"throws",
"NoSuchElementException",
"{",
"// if (tc.isEntryEnabled())",
"// SibTr.entry(tc, \"dequeue\");",
"if",
"(",
"m_head",
"==",
"m_tail",
")",
"throw",
"new",
"NoSuchElementException",
"(",
")",
";",
"Obje... | Return the first element on the queue.
@return the first element on the queue.
@throws NoSuchElementException if the queue is empty. | [
"Return",
"the",
"first",
"element",
"on",
"the",
"queue",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/Queue.java#L138-L154 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/Queue.java | Queue.expand_array | private final void expand_array()
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "expand_array");
int length = m_array.length;
Object[] m_new = new Object[length*2];
System.arraycopy(m_array, m_head, m_new, m_head, length-m_head);
System.arraycopy(m_array, 0, m_new, length, m_tail);
m_t... | java | private final void expand_array()
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "expand_array");
int length = m_array.length;
Object[] m_new = new Object[length*2];
System.arraycopy(m_array, m_head, m_new, m_head, length-m_head);
System.arraycopy(m_array, 0, m_new, length, m_tail);
m_t... | [
"private",
"final",
"void",
"expand_array",
"(",
")",
"{",
"// if (tc.isEntryEnabled())",
"// SibTr.entry(tc, \"expand_array\");",
"int",
"length",
"=",
"m_array",
".",
"length",
";",
"Object",
"[",
"]",
"m_new",
"=",
"new",
"Object",
"[",
"length",
"*",
"... | Increase the size of the internal array to accomodate more
queue elements. | [
"Increase",
"the",
"size",
"of",
"the",
"internal",
"array",
"to",
"accomodate",
"more",
"queue",
"elements",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/Queue.java#L180-L194 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca.cm/src/com/ibm/ejs/j2c/CMConfigDataImpl.java | CMConfigDataImpl.getConfigDump | @Override
public LinkedHashMap<String, Object> getConfigDump(String aLocalId, boolean aRegisteredOnly) { // 327843 removed unused parameter
if (TC.isEntryEnabled()) {
Tr.entry(this, TC, "getConfigDump");
}
LinkedHashMap<String, Object> cp = new LinkedHashMap<String, Object>();
... | java | @Override
public LinkedHashMap<String, Object> getConfigDump(String aLocalId, boolean aRegisteredOnly) { // 327843 removed unused parameter
if (TC.isEntryEnabled()) {
Tr.entry(this, TC, "getConfigDump");
}
LinkedHashMap<String, Object> cp = new LinkedHashMap<String, Object>();
... | [
"@",
"Override",
"public",
"LinkedHashMap",
"<",
"String",
",",
"Object",
">",
"getConfigDump",
"(",
"String",
"aLocalId",
",",
"boolean",
"aRegisteredOnly",
")",
"{",
"// 327843 removed unused parameter",
"if",
"(",
"TC",
".",
"isEntryEnabled",
"(",
")",
")",
"... | Generate a config dump containing all the attributes which match the regular expression.
@param aLocalId The regular expression which will be used to determine which attributes to display. Ie, .* will enable everything,
current-resourceAdapterDD-transactionSupport enables just the transactionSupport level.
@param aReg... | [
"Generate",
"a",
"config",
"dump",
"containing",
"all",
"the",
"attributes",
"which",
"match",
"the",
"regular",
"expression",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca.cm/src/com/ibm/ejs/j2c/CMConfigDataImpl.java#L626-L640 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.transaction.cdi/src/com/ibm/tx/jta/cdi/interceptors/TransactionalInterceptor.java | TransactionalInterceptor.findInterceptorFromStereotype | private Transactional findInterceptorFromStereotype(Annotation[] anns) {
if (tc.isEntryEnabled())
Tr.entry(tc, "findInterceptorFromStereotype", new Object[] { anns, this });
Transactional ret = null;
for (Annotation ann : anns) {
if (tc.isDebugEnabled())
... | java | private Transactional findInterceptorFromStereotype(Annotation[] anns) {
if (tc.isEntryEnabled())
Tr.entry(tc, "findInterceptorFromStereotype", new Object[] { anns, this });
Transactional ret = null;
for (Annotation ann : anns) {
if (tc.isDebugEnabled())
... | [
"private",
"Transactional",
"findInterceptorFromStereotype",
"(",
"Annotation",
"[",
"]",
"anns",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"findInterceptorFromStereotype\"",
",",
"new",
"Object",
"[... | it here. | [
"it",
"here",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.transaction.cdi/src/com/ibm/tx/jta/cdi/interceptors/TransactionalInterceptor.java#L89-L116 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jpa.container.core/src/com/ibm/ws/jpa/management/JPATxEntityManager.java | JPATxEntityManager.writeObject | private void writeObject(java.io.ObjectOutputStream out) throws IOException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(tc, "writeObject : " + this); // d468174
out.writeObject(ivPuRefId);
out.writeObject(ivJ2eeName); // d510184
out.writeO... | java | private void writeObject(java.io.ObjectOutputStream out) throws IOException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(tc, "writeObject : " + this); // d468174
out.writeObject(ivPuRefId);
out.writeObject(ivJ2eeName); // d510184
out.writeO... | [
"private",
"void",
"writeObject",
"(",
"java",
".",
"io",
".",
"ObjectOutputStream",
"out",
")",
"throws",
"IOException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"... | Instance serialization. | [
"Instance",
"serialization",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jpa.container.core/src/com/ibm/ws/jpa/management/JPATxEntityManager.java#L408-L421 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jpa.container.core/src/com/ibm/ws/jpa/management/JPATxEntityManager.java | JPATxEntityManager.registerEmInvocation | protected void registerEmInvocation(UOWCoordinator uowCoord, Synchronization emInvocation)
{
try {
ivAbstractJPAComponent.getEmbeddableWebSphereTransactionManager().registerSynchronization(uowCoord,
... | java | protected void registerEmInvocation(UOWCoordinator uowCoord, Synchronization emInvocation)
{
try {
ivAbstractJPAComponent.getEmbeddableWebSphereTransactionManager().registerSynchronization(uowCoord,
... | [
"protected",
"void",
"registerEmInvocation",
"(",
"UOWCoordinator",
"uowCoord",
",",
"Synchronization",
"emInvocation",
")",
"{",
"try",
"{",
"ivAbstractJPAComponent",
".",
"getEmbeddableWebSphereTransactionManager",
"(",
")",
".",
"registerSynchronization",
"(",
"uowCoord"... | d638095.4 | [
"d638095",
".",
"4"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jpa.container.core/src/com/ibm/ws/jpa/management/JPATxEntityManager.java#L467-L481 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java | DiscriminationProcessImpl.buildDiscriminatorNodes | private void buildDiscriminatorNodes(DiscriminatorNode node) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "buildDiscriminatorNodes: " + node);
}
DiscriminatorNode dn = node;
if (dn == null) {
return;
}
Discrimin... | java | private void buildDiscriminatorNodes(DiscriminatorNode node) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "buildDiscriminatorNodes: " + node);
}
DiscriminatorNode dn = node;
if (dn == null) {
return;
}
Discrimin... | [
"private",
"void",
"buildDiscriminatorNodes",
"(",
"DiscriminatorNode",
"node",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"debug",
"(",
"tc",
",",
"\"buildDi... | Copy this DiscriminatorNode list.
@param node | [
"Copy",
"this",
"DiscriminatorNode",
"list",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java#L162-L186 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java | DiscriminationProcessImpl.addDiscriminator | @Override
public void addDiscriminator(Discriminator d, int weight) throws DiscriminationProcessException {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "addDiscriminator: " + d + " weight=" + weight);
}
if (status == STARTED) {
Disc... | java | @Override
public void addDiscriminator(Discriminator d, int weight) throws DiscriminationProcessException {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "addDiscriminator: " + d + " weight=" + weight);
}
if (status == STARTED) {
Disc... | [
"@",
"Override",
"public",
"void",
"addDiscriminator",
"(",
"Discriminator",
"d",
",",
"int",
"weight",
")",
"throws",
"DiscriminationProcessException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",... | Adds a discriminator to the group. Attempts to add the same discriminator
more than once are ignored. It is an error to attempt to add a
discriminator which is not able to deal with the groups type of
discriminatory data. A class cast exception is thrown if this is
attempted.
@param d
The discriminator to add.
@param ... | [
"Adds",
"a",
"discriminator",
"to",
"the",
"group",
".",
"Attempts",
"to",
"add",
"the",
"same",
"discriminator",
"more",
"than",
"once",
"are",
"ignored",
".",
"It",
"is",
"an",
"error",
"to",
"attempt",
"to",
"add",
"a",
"discriminator",
"which",
"is",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java#L268-L308 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java | DiscriminationProcessImpl.addDiscriminatorNode | private void addDiscriminatorNode(DiscriminatorNode dn) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "addDiscriminatorNode, weight=" + dn.weight);
}
if (discriminators == null) {
// add it as the first node
discriminators =... | java | private void addDiscriminatorNode(DiscriminatorNode dn) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "addDiscriminatorNode, weight=" + dn.weight);
}
if (discriminators == null) {
// add it as the first node
discriminators =... | [
"private",
"void",
"addDiscriminatorNode",
"(",
"DiscriminatorNode",
"dn",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"addDiscrimin... | add a discriminatorNode to the linked list.
@param dn | [
"add",
"a",
"discriminatorNode",
"to",
"the",
"linked",
"list",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java#L343-L395 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java | DiscriminationProcessImpl.removeDiscriminatorNode | private void removeDiscriminatorNode(Discriminator d) throws DiscriminationProcessException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "removeDiscriminatorNode: " + d);
}
if (d == null) {
DiscriminationProcessException e = new Discri... | java | private void removeDiscriminatorNode(Discriminator d) throws DiscriminationProcessException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "removeDiscriminatorNode: " + d);
}
if (d == null) {
DiscriminationProcessException e = new Discri... | [
"private",
"void",
"removeDiscriminatorNode",
"(",
"Discriminator",
"d",
")",
"throws",
"DiscriminationProcessException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"e... | remove the discriminatorNode from the linkedList.
@param d
@throws DiscriminationProcessException | [
"remove",
"the",
"discriminatorNode",
"from",
"the",
"linkedList",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java#L452-L503 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java | DiscriminationProcessImpl.start | @Override
public void start() {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "Started discriminator list " + discAL + "with size" + discAL.size());
}
if (discAL.size() > 1) {
rebuildDiscriminatorList();
discriminationAlgo... | java | @Override
public void start() {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "Started discriminator list " + discAL + "with size" + discAL.size());
}
if (discAL.size() > 1) {
rebuildDiscriminatorList();
discriminationAlgo... | [
"@",
"Override",
"public",
"void",
"start",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"debug",
"(",
"tc",
",",
"\"Started discriminator list \"",
"+",... | Start this DiscriminatorProcess. | [
"Start",
"this",
"DiscriminatorProcess",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java#L547-L561 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java | DiscriminationProcessImpl.rebuildDiscriminatorList | private void rebuildDiscriminatorList() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "rebuildDiscriminatorList");
}
discAL.clear();
DiscriminatorNode dn = discriminators;
discAL.add(dn.disc);
dn = dn.next;
while (dn... | java | private void rebuildDiscriminatorList() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "rebuildDiscriminatorList");
}
discAL.clear();
DiscriminatorNode dn = discriminators;
discAL.add(dn.disc);
dn = dn.next;
while (dn... | [
"private",
"void",
"rebuildDiscriminatorList",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"rebuildDiscriminatorList\"",
")",
"... | Rebuild the array list from the linked list. | [
"Rebuild",
"the",
"array",
"list",
"from",
"the",
"linked",
"list",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java#L575-L590 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java | DiscriminationProcessImpl.addChannel | private void addChannel(Channel chan) {
if (channelList == null) {
channelList = new Channel[1];
channelList[0] = chan;
} else {
Channel[] oldList = channelList;
channelList = new Channel[oldList.length + 1];
System.arraycopy(oldList, 0, channe... | java | private void addChannel(Channel chan) {
if (channelList == null) {
channelList = new Channel[1];
channelList[0] = chan;
} else {
Channel[] oldList = channelList;
channelList = new Channel[oldList.length + 1];
System.arraycopy(oldList, 0, channe... | [
"private",
"void",
"addChannel",
"(",
"Channel",
"chan",
")",
"{",
"if",
"(",
"channelList",
"==",
"null",
")",
"{",
"channelList",
"=",
"new",
"Channel",
"[",
"1",
"]",
";",
"channelList",
"[",
"0",
"]",
"=",
"chan",
";",
"}",
"else",
"{",
"Channel"... | Add a channel to the channel list to be searched.
@param chan | [
"Add",
"a",
"channel",
"to",
"the",
"channel",
"list",
"to",
"be",
"searched",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/discrim/DiscriminationProcessImpl.java#L639-L649 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jndi/src/com/ibm/ws/jndi/internal/WSContext.java | WSContext.resolveObject | @FFDCIgnore({ NamingException.class })
@Sensitive
Object resolveObject(Object o, WSName subname) throws NamingException {
ServiceReference<?> ref = null;
try {
if (o instanceof ContextNode)
return new WSContext(userContext, (ContextNode) o, env);
if (tc.i... | java | @FFDCIgnore({ NamingException.class })
@Sensitive
Object resolveObject(Object o, WSName subname) throws NamingException {
ServiceReference<?> ref = null;
try {
if (o instanceof ContextNode)
return new WSContext(userContext, (ContextNode) o, env);
if (tc.i... | [
"@",
"FFDCIgnore",
"(",
"{",
"NamingException",
".",
"class",
"}",
")",
"@",
"Sensitive",
"Object",
"resolveObject",
"(",
"Object",
"o",
",",
"WSName",
"subname",
")",
"throws",
"NamingException",
"{",
"ServiceReference",
"<",
"?",
">",
"ref",
"=",
"null",
... | Perform any needed conversions on an object retrieved from the context tree.
@param o the object to be resolved
@return the resolved object
@throws Exception
@throws NamingException | [
"Perform",
"any",
"needed",
"conversions",
"on",
"an",
"object",
"retrieved",
"from",
"the",
"context",
"tree",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jndi/src/com/ibm/ws/jndi/internal/WSContext.java#L102-L173 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security/src/com/ibm/websphere/security/audit/AuditEvent.java | AuditEvent.send | public void send() throws AuditServiceUnavailableException {
AuditService auditService = SecurityUtils.getAuditService();
if (auditService != null) {
auditService.sendEvent(this);
} else {
throw new AuditServiceUnavailableException();
}
} | java | public void send() throws AuditServiceUnavailableException {
AuditService auditService = SecurityUtils.getAuditService();
if (auditService != null) {
auditService.sendEvent(this);
} else {
throw new AuditServiceUnavailableException();
}
} | [
"public",
"void",
"send",
"(",
")",
"throws",
"AuditServiceUnavailableException",
"{",
"AuditService",
"auditService",
"=",
"SecurityUtils",
".",
"getAuditService",
"(",
")",
";",
"if",
"(",
"auditService",
"!=",
"null",
")",
"{",
"auditService",
".",
"sendEvent",... | Send this event to the audit service for logging.
@throws AuditServiceUnavailableException | [
"Send",
"this",
"event",
"to",
"the",
"audit",
"service",
"for",
"logging",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security/src/com/ibm/websphere/security/audit/AuditEvent.java#L564-L571 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security/src/com/ibm/websphere/security/audit/AuditEvent.java | AuditEvent.isAuditRequired | public static boolean isAuditRequired(String eventType, String outcome) throws AuditServiceUnavailableException {
AuditService auditService = SecurityUtils.getAuditService();
if (auditService != null) {
return auditService.isAuditRequired(eventType, outcome);
} else {
thr... | java | public static boolean isAuditRequired(String eventType, String outcome) throws AuditServiceUnavailableException {
AuditService auditService = SecurityUtils.getAuditService();
if (auditService != null) {
return auditService.isAuditRequired(eventType, outcome);
} else {
thr... | [
"public",
"static",
"boolean",
"isAuditRequired",
"(",
"String",
"eventType",
",",
"String",
"outcome",
")",
"throws",
"AuditServiceUnavailableException",
"{",
"AuditService",
"auditService",
"=",
"SecurityUtils",
".",
"getAuditService",
"(",
")",
";",
"if",
"(",
"a... | Check to see if auditing is required for an event type and outcome.
@param eventType SECURITY_AUTHN, SECURITY_AUTHZ, etc
@param outcome OUTCOME_SUCCESS, OUTCOME_DENIED, etc.
@return true - events with the type/outcome should be audited
false - events with the type/outcome should not be audited
@throws AuditServiceUna... | [
"Check",
"to",
"see",
"if",
"auditing",
"is",
"required",
"for",
"an",
"event",
"type",
"and",
"outcome",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security/src/com/ibm/websphere/security/audit/AuditEvent.java#L595-L602 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security/src/com/ibm/websphere/security/audit/AuditEvent.java | AuditEvent.removeEntriesStartingWith | private void removeEntriesStartingWith(String key) {
synchronized (eventMap) {
Iterator<String> iter = eventMap.keySet().iterator();
while (iter.hasNext()) {
String str = iter.next();
if (str.startsWith(key)) {
iter.remove();
... | java | private void removeEntriesStartingWith(String key) {
synchronized (eventMap) {
Iterator<String> iter = eventMap.keySet().iterator();
while (iter.hasNext()) {
String str = iter.next();
if (str.startsWith(key)) {
iter.remove();
... | [
"private",
"void",
"removeEntriesStartingWith",
"(",
"String",
"key",
")",
"{",
"synchronized",
"(",
"eventMap",
")",
"{",
"Iterator",
"<",
"String",
">",
"iter",
"=",
"eventMap",
".",
"keySet",
"(",
")",
".",
"iterator",
"(",
")",
";",
"while",
"(",
"it... | Remove all entries starting with the given key
@param key | [
"Remove",
"all",
"entries",
"starting",
"with",
"the",
"given",
"key"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security/src/com/ibm/websphere/security/audit/AuditEvent.java#L609-L619 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/linkedlist/SimpleLinkedList.java | SimpleLinkedList.put | public void put(SimpleEntry simpleEntry)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "put", simpleEntry);
simpleEntry.previous = last;
simpleEntry.list = this;
if(last != null)
last.next = simpleEntry;
else
first = simpleEntr... | java | public void put(SimpleEntry simpleEntry)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "put", simpleEntry);
simpleEntry.previous = last;
simpleEntry.list = this;
if(last != null)
last.next = simpleEntry;
else
first = simpleEntr... | [
"public",
"void",
"put",
"(",
"SimpleEntry",
"simpleEntry",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"put\"",
",",... | Add an entry to the list
@param simpleEntry | [
"Add",
"an",
"entry",
"to",
"the",
"list"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/linkedlist/SimpleLinkedList.java#L49-L66 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/linkedlist/SimpleLinkedList.java | SimpleLinkedList.printList | protected String printList()
{
String output = "[";
SimpleEntry pointer = first;
int counter = 0;
while((pointer != null) && (counter < 3))
{
output += "@"+Integer.toHexString(pointer.hashCode());
pointer = pointer.next;
if(pointer != null)
output += ", ";
cou... | java | protected String printList()
{
String output = "[";
SimpleEntry pointer = first;
int counter = 0;
while((pointer != null) && (counter < 3))
{
output += "@"+Integer.toHexString(pointer.hashCode());
pointer = pointer.next;
if(pointer != null)
output += ", ";
cou... | [
"protected",
"String",
"printList",
"(",
")",
"{",
"String",
"output",
"=",
"\"[\"",
";",
"SimpleEntry",
"pointer",
"=",
"first",
";",
"int",
"counter",
"=",
"0",
";",
"while",
"(",
"(",
"pointer",
"!=",
"null",
")",
"&&",
"(",
"counter",
"<",
"3",
"... | Return the first and last entries in the list | [
"Return",
"the",
"first",
"and",
"last",
"entries",
"in",
"the",
"list"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/linkedlist/SimpleLinkedList.java#L85-L107 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/tcpchannel/internal/TCPChannel.java | TCPChannel.initializePort | private void initializePort() throws ChannelException {
try {
this.endPoint.initServerSocket();
} catch (IOException ioe) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) {
Tr.event(tc, "TCP Channel: " + getExternalName() + "- Problem occurred wh... | java | private void initializePort() throws ChannelException {
try {
this.endPoint.initServerSocket();
} catch (IOException ioe) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) {
Tr.event(tc, "TCP Channel: " + getExternalName() + "- Problem occurred wh... | [
"private",
"void",
"initializePort",
"(",
")",
"throws",
"ChannelException",
"{",
"try",
"{",
"this",
".",
"endPoint",
".",
"initServerSocket",
"(",
")",
";",
"}",
"catch",
"(",
"IOException",
"ioe",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingE... | Initialize the endpoint listening socket.
@throws ChannelException | [
"Initialize",
"the",
"endpoint",
"listening",
"socket",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/tcpchannel/internal/TCPChannel.java#L325-L343 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/tcpchannel/internal/TCPChannel.java | TCPChannel.destroyConnLinks | private synchronized void destroyConnLinks() {
// inUse queue is still open to modification
// during this time. Returned iterator is a "weakly consistent"
// I don't believe this has (yet) caused any issues.
for (Queue<TCPConnLink> queue : this.inUse) {
try {
... | java | private synchronized void destroyConnLinks() {
// inUse queue is still open to modification
// during this time. Returned iterator is a "weakly consistent"
// I don't believe this has (yet) caused any issues.
for (Queue<TCPConnLink> queue : this.inUse) {
try {
... | [
"private",
"synchronized",
"void",
"destroyConnLinks",
"(",
")",
"{",
"// inUse queue is still open to modification",
"// during this time. Returned iterator is a \"weakly consistent\"",
"// I don't believe this has (yet) caused any issues.",
"for",
"(",
"Queue",
"<",
"TCPConnLink",
">... | call the destroy on all the TCPConnLink objects related to
this TCPChannel which are currently "in use". | [
"call",
"the",
"destroy",
"on",
"all",
"the",
"TCPConnLink",
"objects",
"related",
"to",
"this",
"TCPChannel",
"which",
"are",
"currently",
"in",
"use",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/tcpchannel/internal/TCPChannel.java#L521-L541 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.microprofile.config.1.1/src/com/ibm/ws/microprofile/config/impl/AbstractConfig.java | AbstractConfig.getValue | protected Object getValue(String propertyName, Type propertyType, boolean optional, String defaultString) {
Object value = null;
assertNotClosed();
SourcedValue sourced = getSourcedValue(propertyName, propertyType);
if (sourced != null) {
value = sourced.getValue();
... | java | protected Object getValue(String propertyName, Type propertyType, boolean optional, String defaultString) {
Object value = null;
assertNotClosed();
SourcedValue sourced = getSourcedValue(propertyName, propertyType);
if (sourced != null) {
value = sourced.getValue();
... | [
"protected",
"Object",
"getValue",
"(",
"String",
"propertyName",
",",
"Type",
"propertyType",
",",
"boolean",
"optional",
",",
"String",
"defaultString",
")",
"{",
"Object",
"value",
"=",
"null",
";",
"assertNotClosed",
"(",
")",
";",
"SourcedValue",
"sourced",... | Get the converted value of the given property.
If the property is not found and optional is true then use the default string to create a value to return.
If the property is not found and optional is false then throw an exception.
@param propertyName the property to get
@param propertyType the type to convert to
@par... | [
"Get",
"the",
"converted",
"value",
"of",
"the",
"given",
"property",
".",
"If",
"the",
"property",
"is",
"not",
"found",
"and",
"optional",
"is",
"true",
"then",
"use",
"the",
"default",
"string",
"to",
"create",
"a",
"value",
"to",
"return",
".",
"If",... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.microprofile.config.1.1/src/com/ibm/ws/microprofile/config/impl/AbstractConfig.java#L164-L179 | train |
OpenLiberty/open-liberty | dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/ws/JoblogUtil.java | JoblogUtil.logToJobLogAndTraceOnly | @Trivial
public static void logToJobLogAndTraceOnly(Level level, String msg, Object[] params, Logger traceLogger){
String formattedMsg = getFormattedMessage(msg, params, "Job event.");
logRawMsgToJobLogAndTraceOnly(level, formattedMsg, traceLogger);
} | java | @Trivial
public static void logToJobLogAndTraceOnly(Level level, String msg, Object[] params, Logger traceLogger){
String formattedMsg = getFormattedMessage(msg, params, "Job event.");
logRawMsgToJobLogAndTraceOnly(level, formattedMsg, traceLogger);
} | [
"@",
"Trivial",
"public",
"static",
"void",
"logToJobLogAndTraceOnly",
"(",
"Level",
"level",
",",
"String",
"msg",
",",
"Object",
"[",
"]",
"params",
",",
"Logger",
"traceLogger",
")",
"{",
"String",
"formattedMsg",
"=",
"getFormattedMessage",
"(",
"msg",
","... | Logs the message to joblog and trace.
If level > FINE, this method will reduce the level to FINE while logging to trace
to prevent the message to be logged in console.log and messages.log file
Joblog messages will be logged as per original logging level
Use this method when you don't want a very verbose stack in mes... | [
"Logs",
"the",
"message",
"to",
"joblog",
"and",
"trace",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/ws/JoblogUtil.java#L50-L54 | train |
OpenLiberty/open-liberty | dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/ws/JoblogUtil.java | JoblogUtil.logRawMsgToJobLogAndTraceOnly | @Trivial
public static void logRawMsgToJobLogAndTraceOnly(Level level, String msg, Logger traceLogger){
if(level.intValue() > Level.FINE.intValue()){
traceLogger.log(Level.FINE, msg);
logToJoblogIfNotTraceLoggable(Level.FINE, msg, traceLogger);
}
else{
traceLogger.log(level, msg);
logToJoblogIfNotTra... | java | @Trivial
public static void logRawMsgToJobLogAndTraceOnly(Level level, String msg, Logger traceLogger){
if(level.intValue() > Level.FINE.intValue()){
traceLogger.log(Level.FINE, msg);
logToJoblogIfNotTraceLoggable(Level.FINE, msg, traceLogger);
}
else{
traceLogger.log(level, msg);
logToJoblogIfNotTra... | [
"@",
"Trivial",
"public",
"static",
"void",
"logRawMsgToJobLogAndTraceOnly",
"(",
"Level",
"level",
",",
"String",
"msg",
",",
"Logger",
"traceLogger",
")",
"{",
"if",
"(",
"level",
".",
"intValue",
"(",
")",
">",
"Level",
".",
"FINE",
".",
"intValue",
"("... | logs the message to joblog and trace.
If Level > FINE, this method will reduce the level to FINE while logging to trace.log
to prevent the message to be logged in console.log and messages.log file
Joblog messages will be logged as per supplied logging level
Use this method when you don't want a very verbose stack in... | [
"logs",
"the",
"message",
"to",
"joblog",
"and",
"trace",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/ws/JoblogUtil.java#L72-L83 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java | CompatibilityMap.toEncodedForm | public byte[] toEncodedForm() {
if (encodedForm == null) {
encodedForm = new byte[encodedSize()];
ArrayUtil.writeLong(encodedForm, 0, accessSchemaId);
encode(encodedForm, new int[] { 8, encodedForm.length });
}
return encodedForm;
} | java | public byte[] toEncodedForm() {
if (encodedForm == null) {
encodedForm = new byte[encodedSize()];
ArrayUtil.writeLong(encodedForm, 0, accessSchemaId);
encode(encodedForm, new int[] { 8, encodedForm.length });
}
return encodedForm;
} | [
"public",
"byte",
"[",
"]",
"toEncodedForm",
"(",
")",
"{",
"if",
"(",
"encodedForm",
"==",
"null",
")",
"{",
"encodedForm",
"=",
"new",
"byte",
"[",
"encodedSize",
"(",
")",
"]",
";",
"ArrayUtil",
".",
"writeLong",
"(",
"encodedForm",
",",
"0",
",",
... | Turn an CompatibilityMap into its encoded form
@return the encoded form as a byte array | [
"Turn",
"an",
"CompatibilityMap",
"into",
"its",
"encoded",
"form"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java#L131-L138 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java | CompatibilityMap.encode | private void encode(byte[] frame, int[] limits) {
JSType.setCount(frame, limits, indices.length);
for (int i = 0; i < indices.length; i++)
JSType.setCount(frame, limits, indices[i]);
JSType.setCount(frame, limits, varBias);
JSType.setCount(frame, limits, setCases.length);
for (int i = 0; i < s... | java | private void encode(byte[] frame, int[] limits) {
JSType.setCount(frame, limits, indices.length);
for (int i = 0; i < indices.length; i++)
JSType.setCount(frame, limits, indices[i]);
JSType.setCount(frame, limits, varBias);
JSType.setCount(frame, limits, setCases.length);
for (int i = 0; i < s... | [
"private",
"void",
"encode",
"(",
"byte",
"[",
"]",
"frame",
",",
"int",
"[",
"]",
"limits",
")",
"{",
"JSType",
".",
"setCount",
"(",
"frame",
",",
"limits",
",",
"indices",
".",
"length",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
... | Encode subroutine used by toEncodedForm | [
"Encode",
"subroutine",
"used",
"by",
"toEncodedForm"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java#L141-L168 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java | CompatibilityMap.encodedSize | private int encodedSize() {
int ans =
16 /* for accessSchemaID, indices.length, varBias, setCases.length,
and getCases.length */
+ 2*indices.length; // for the elements in indices
for (int i = 0; i < setCases.length; i++) {
int[] cases = setCases[i];
ans += 2; /... | java | private int encodedSize() {
int ans =
16 /* for accessSchemaID, indices.length, varBias, setCases.length,
and getCases.length */
+ 2*indices.length; // for the elements in indices
for (int i = 0; i < setCases.length; i++) {
int[] cases = setCases[i];
ans += 2; /... | [
"private",
"int",
"encodedSize",
"(",
")",
"{",
"int",
"ans",
"=",
"16",
"/* for accessSchemaID, indices.length, varBias, setCases.length,\n and getCases.length */",
"+",
"2",
"*",
"indices",
".",
"length",
";",
"// for the elements in indices",
"for",
... | Find the number of bytes it takes to encode this CompatibilityMap | [
"Find",
"the",
"number",
"of",
"bytes",
"it",
"takes",
"to",
"encode",
"this",
"CompatibilityMap"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java#L171-L189 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java | CompatibilityMap.violation | private static void violation(JMFType from, JMFType to) throws JMFSchemaViolationException {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) JmfTr.debug(tc, "Violation:"
+ " from = " + from.getFeatureName() + " : " + from
... | java | private static void violation(JMFType from, JMFType to) throws JMFSchemaViolationException {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) JmfTr.debug(tc, "Violation:"
+ " from = " + from.getFeatureName() + " : " + from
... | [
"private",
"static",
"void",
"violation",
"(",
"JMFType",
"from",
",",
"JMFType",
"to",
")",
"throws",
"JMFSchemaViolationException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"Jmf... | Handle violation of the compatibility rules by throwing an informative exception | [
"Handle",
"violation",
"of",
"the",
"compatibility",
"rules",
"by",
"throwing",
"an",
"informative",
"exception"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java#L229-L235 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java | CompatibilityMap.recordOnePair | private void recordOnePair(JSField access, JSchema accSchema, JSField encoding,
JSchema encSchema)
{
int acc = access.getAccessor(accSchema);
if (acc >= indices.length)
return;
indices[acc] = encoding.getAccessor(encSchema);
} | java | private void recordOnePair(JSField access, JSchema accSchema, JSField encoding,
JSchema encSchema)
{
int acc = access.getAccessor(accSchema);
if (acc >= indices.length)
return;
indices[acc] = encoding.getAccessor(encSchema);
} | [
"private",
"void",
"recordOnePair",
"(",
"JSField",
"access",
",",
"JSchema",
"accSchema",
",",
"JSField",
"encoding",
",",
"JSchema",
"encSchema",
")",
"{",
"int",
"acc",
"=",
"access",
".",
"getAccessor",
"(",
"accSchema",
")",
";",
"if",
"(",
"acc",
">=... | later when maps are built for variant box schemas. | [
"later",
"when",
"maps",
"are",
"built",
"for",
"variant",
"box",
"schemas",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java#L340-L347 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java | CompatibilityMap.checkForDeletingVariant | private void checkForDeletingVariant(JMFType nonVar, JSVariant var, boolean varIsAccess,
JSchema accSchema, JSchema encSchema) throws JMFSchemaViolationException
{
// Deleting variant always has exactly two cases
if (var.getCaseCount() != 2) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebug... | java | private void checkForDeletingVariant(JMFType nonVar, JSVariant var, boolean varIsAccess,
JSchema accSchema, JSchema encSchema) throws JMFSchemaViolationException
{
// Deleting variant always has exactly two cases
if (var.getCaseCount() != 2) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebug... | [
"private",
"void",
"checkForDeletingVariant",
"(",
"JMFType",
"nonVar",
",",
"JSVariant",
"var",
",",
"boolean",
"varIsAccess",
",",
"JSchema",
"accSchema",
",",
"JSchema",
"encSchema",
")",
"throws",
"JMFSchemaViolationException",
"{",
"// Deleting variant always has exa... | info stripping off the deleting variant. | [
"info",
"stripping",
"off",
"the",
"deleting",
"variant",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java#L357-L393 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java | CompatibilityMap.checkExtraFields | private static void checkExtraFields(JSTuple tuple, int startCol, int count) throws JMFSchemaViolationException {
for (int i = startCol; i < count; i++) {
JMFType field = tuple.getField(i);
if (field instanceof JSVariant) {
JMFType firstCase = ((JSVariant)field).getCase(0);
if (firstCase... | java | private static void checkExtraFields(JSTuple tuple, int startCol, int count) throws JMFSchemaViolationException {
for (int i = startCol; i < count; i++) {
JMFType field = tuple.getField(i);
if (field instanceof JSVariant) {
JMFType firstCase = ((JSVariant)field).getCase(0);
if (firstCase... | [
"private",
"static",
"void",
"checkExtraFields",
"(",
"JSTuple",
"tuple",
",",
"int",
"startCol",
",",
"int",
"count",
")",
"throws",
"JMFSchemaViolationException",
"{",
"for",
"(",
"int",
"i",
"=",
"startCol",
";",
"i",
"<",
"count",
";",
"i",
"++",
")",
... | Check the extra columns in a tuple to make sure they are all defaultable | [
"Check",
"the",
"extra",
"columns",
"in",
"a",
"tuple",
"to",
"make",
"sure",
"they",
"are",
"all",
"defaultable"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/CompatibilityMap.java#L476-L487 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.microprofile.config.1.1/src/com/ibm/ws/microprofile/config/archaius/cache/TypeContainer.java | TypeContainer.asType | public StampedValue asType(final Type type) {
StampedValue cachedValue = null;
//looping around a list is probably quicker than having a map since there are probably only one or two different
//types in use at any one time
for (StampedValue value : typeCache) {
if (value.ge... | java | public StampedValue asType(final Type type) {
StampedValue cachedValue = null;
//looping around a list is probably quicker than having a map since there are probably only one or two different
//types in use at any one time
for (StampedValue value : typeCache) {
if (value.ge... | [
"public",
"StampedValue",
"asType",
"(",
"final",
"Type",
"type",
")",
"{",
"StampedValue",
"cachedValue",
"=",
"null",
";",
"//looping around a list is probably quicker than having a map since there are probably only one or two different",
"//types in use at any one time",
"for",
... | Check if a StampedValue already exists for the type, if it does, return it,
otherwise create a new one and add it
@param type
@return | [
"Check",
"if",
"a",
"StampedValue",
"already",
"exists",
"for",
"the",
"type",
"if",
"it",
"does",
"return",
"it",
"otherwise",
"create",
"a",
"new",
"one",
"and",
"add",
"it"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.microprofile.config.1.1/src/com/ibm/ws/microprofile/config/archaius/cache/TypeContainer.java#L74-L93 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java | ComponentSupport.finalizeForDeletion | @Deprecated
public static void finalizeForDeletion(UIComponent component)
{
// remove any existing marks of deletion
component.getAttributes().remove(MARK_DELETED);
// finally remove any children marked as deleted
if (component.getChildCount() > 0)
{
for (Ite... | java | @Deprecated
public static void finalizeForDeletion(UIComponent component)
{
// remove any existing marks of deletion
component.getAttributes().remove(MARK_DELETED);
// finally remove any children marked as deleted
if (component.getChildCount() > 0)
{
for (Ite... | [
"@",
"Deprecated",
"public",
"static",
"void",
"finalizeForDeletion",
"(",
"UIComponent",
"component",
")",
"{",
"// remove any existing marks of deletion",
"component",
".",
"getAttributes",
"(",
")",
".",
"remove",
"(",
"MARK_DELETED",
")",
";",
"// finally remove any... | Used in conjunction with markForDeletion where any UIComponent marked will be removed.
@deprecated use FaceletCompositionContext.finalizeForDeletion
@param component
UIComponent to finalize | [
"Used",
"in",
"conjunction",
"with",
"markForDeletion",
"where",
"any",
"UIComponent",
"marked",
"will",
"be",
"removed",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java#L108-L141 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java | ComponentSupport.findChild | public static UIComponent findChild(UIComponent parent, String id)
{
int childCount = parent.getChildCount();
if (childCount > 0)
{
for (int i = 0; i < childCount; i++)
{
UIComponent child = parent.getChildren().get(i);
if (id.equals(ch... | java | public static UIComponent findChild(UIComponent parent, String id)
{
int childCount = parent.getChildCount();
if (childCount > 0)
{
for (int i = 0; i < childCount; i++)
{
UIComponent child = parent.getChildren().get(i);
if (id.equals(ch... | [
"public",
"static",
"UIComponent",
"findChild",
"(",
"UIComponent",
"parent",
",",
"String",
"id",
")",
"{",
"int",
"childCount",
"=",
"parent",
".",
"getChildCount",
"(",
")",
";",
"if",
"(",
"childCount",
">",
"0",
")",
"{",
"for",
"(",
"int",
"i",
"... | A lighter-weight version of UIComponent's findChild.
@param parent
parent to start searching from
@param id
to match to
@return UIComponent found or null | [
"A",
"lighter",
"-",
"weight",
"version",
"of",
"UIComponent",
"s",
"findChild",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java#L152-L167 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java | ComponentSupport.findChildByTagId | public static UIComponent findChildByTagId(UIComponent parent, String id)
{
Iterator<UIComponent> itr = null;
if (parent.getChildCount() > 0)
{
for (int i = 0, childCount = parent.getChildCount(); i < childCount; i ++)
{
UIComponent child = parent.getC... | java | public static UIComponent findChildByTagId(UIComponent parent, String id)
{
Iterator<UIComponent> itr = null;
if (parent.getChildCount() > 0)
{
for (int i = 0, childCount = parent.getChildCount(); i < childCount; i ++)
{
UIComponent child = parent.getC... | [
"public",
"static",
"UIComponent",
"findChildByTagId",
"(",
"UIComponent",
"parent",
",",
"String",
"id",
")",
"{",
"Iterator",
"<",
"UIComponent",
">",
"itr",
"=",
"null",
";",
"if",
"(",
"parent",
".",
"getChildCount",
"(",
")",
">",
"0",
")",
"{",
"fo... | By TagId, find Child
@param parent
@param id
@return | [
"By",
"TagId",
"find",
"Child"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java#L286-L343 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java | ComponentSupport.getLocale | public static Locale getLocale(FaceletContext ctx, TagAttribute attr) throws TagAttributeException
{
Object obj = attr.getObject(ctx);
if (obj instanceof Locale)
{
return (Locale) obj;
}
if (obj instanceof String)
{
String s = (String) obj;
... | java | public static Locale getLocale(FaceletContext ctx, TagAttribute attr) throws TagAttributeException
{
Object obj = attr.getObject(ctx);
if (obj instanceof Locale)
{
return (Locale) obj;
}
if (obj instanceof String)
{
String s = (String) obj;
... | [
"public",
"static",
"Locale",
"getLocale",
"(",
"FaceletContext",
"ctx",
",",
"TagAttribute",
"attr",
")",
"throws",
"TagAttributeException",
"{",
"Object",
"obj",
"=",
"attr",
".",
"getObject",
"(",
"ctx",
")",
";",
"if",
"(",
"obj",
"instanceof",
"Locale",
... | According to JSF 1.2 tag specs, this helper method will use the TagAttribute passed in determining the Locale
intended.
@param ctx
FaceletContext to evaluate from
@param attr
TagAttribute representing a Locale
@return Locale found
@throws TagAttributeException
if the Locale cannot be determined | [
"According",
"to",
"JSF",
"1",
".",
"2",
"tag",
"specs",
"this",
"helper",
"method",
"will",
"use",
"the",
"TagAttribute",
"passed",
"in",
"determining",
"the",
"Locale",
"intended",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java#L405-L436 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java | ComponentSupport.getViewRoot | public static UIViewRoot getViewRoot(FaceletContext ctx, UIComponent parent)
{
UIComponent c = parent;
do
{
if (c instanceof UIViewRoot)
{
return (UIViewRoot) c;
}
else
{
c = c.getParent();
... | java | public static UIViewRoot getViewRoot(FaceletContext ctx, UIComponent parent)
{
UIComponent c = parent;
do
{
if (c instanceof UIViewRoot)
{
return (UIViewRoot) c;
}
else
{
c = c.getParent();
... | [
"public",
"static",
"UIViewRoot",
"getViewRoot",
"(",
"FaceletContext",
"ctx",
",",
"UIComponent",
"parent",
")",
"{",
"UIComponent",
"c",
"=",
"parent",
";",
"do",
"{",
"if",
"(",
"c",
"instanceof",
"UIViewRoot",
")",
"{",
"return",
"(",
"UIViewRoot",
")",
... | Tries to walk up the parent to find the UIViewRoot, if not found, then go to FaceletContext's FacesContext for
the view root.
@param ctx
FaceletContext
@param parent
UIComponent to search from
@return UIViewRoot instance for this evaluation | [
"Tries",
"to",
"walk",
"up",
"the",
"parent",
"to",
"find",
"the",
"UIViewRoot",
"if",
"not",
"found",
"then",
"go",
"to",
"FaceletContext",
"s",
"FacesContext",
"for",
"the",
"view",
"root",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java#L448-L469 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java | ComponentSupport.markForDeletion | @Deprecated
public static void markForDeletion(UIComponent component)
{
// flag this component as deleted
component.getAttributes().put(MARK_DELETED, Boolean.TRUE);
Iterator<UIComponent> iter = component.getFacetsAndChildren();
while (iter.hasNext())
{
UIComp... | java | @Deprecated
public static void markForDeletion(UIComponent component)
{
// flag this component as deleted
component.getAttributes().put(MARK_DELETED, Boolean.TRUE);
Iterator<UIComponent> iter = component.getFacetsAndChildren();
while (iter.hasNext())
{
UIComp... | [
"@",
"Deprecated",
"public",
"static",
"void",
"markForDeletion",
"(",
"UIComponent",
"component",
")",
"{",
"// flag this component as deleted",
"component",
".",
"getAttributes",
"(",
")",
".",
"put",
"(",
"MARK_DELETED",
",",
"Boolean",
".",
"TRUE",
")",
";",
... | Marks all direct children and Facets with an attribute for deletion.
@deprecated use FaceletCompositionContext.markForDeletion
@see #finalizeForDeletion(UIComponent)
@param component
UIComponent to mark | [
"Marks",
"all",
"direct",
"children",
"and",
"Facets",
"with",
"an",
"attribute",
"for",
"deletion",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java#L479-L494 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java | ComponentSupport.createFacetUIPanel | private static UIComponent createFacetUIPanel(FaceletContext ctx, UIComponent parent, String facetName)
{
FacesContext facesContext = ctx.getFacesContext();
UIComponent panel = facesContext.getApplication().createComponent(facesContext, UIPanel.COMPONENT_TYPE, null);
// The panel cr... | java | private static UIComponent createFacetUIPanel(FaceletContext ctx, UIComponent parent, String facetName)
{
FacesContext facesContext = ctx.getFacesContext();
UIComponent panel = facesContext.getApplication().createComponent(facesContext, UIPanel.COMPONENT_TYPE, null);
// The panel cr... | [
"private",
"static",
"UIComponent",
"createFacetUIPanel",
"(",
"FaceletContext",
"ctx",
",",
"UIComponent",
"parent",
",",
"String",
"facetName",
")",
"{",
"FacesContext",
"facesContext",
"=",
"ctx",
".",
"getFacesContext",
"(",
")",
";",
"UIComponent",
"panel",
"... | Create a new UIPanel for the use as a dynamically
created container for multiple children in a facet.
Duplicate in javax.faces.webapp.UIComponentClassicTagBase.
@param facesContext
@return | [
"Create",
"a",
"new",
"UIPanel",
"for",
"the",
"use",
"as",
"a",
"dynamically",
"created",
"container",
"for",
"multiple",
"children",
"in",
"a",
"facet",
".",
"Duplicate",
"in",
"javax",
".",
"faces",
".",
"webapp",
".",
"UIComponentClassicTagBase",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/jsf/ComponentSupport.java#L577-L618 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.threading/src/com/ibm/ws/threading/PolicyExecutorProvider.java | PolicyExecutorProvider.create | public PolicyExecutor create(Map<String, Object> props) {
PolicyExecutor executor = new PolicyExecutorImpl((ExecutorServiceImpl) globalExecutor, (String) props.get("config.displayId"), null, policyExecutors);
executor.updateConfig(props);
return executor;
} | java | public PolicyExecutor create(Map<String, Object> props) {
PolicyExecutor executor = new PolicyExecutorImpl((ExecutorServiceImpl) globalExecutor, (String) props.get("config.displayId"), null, policyExecutors);
executor.updateConfig(props);
return executor;
} | [
"public",
"PolicyExecutor",
"create",
"(",
"Map",
"<",
"String",
",",
"Object",
">",
"props",
")",
"{",
"PolicyExecutor",
"executor",
"=",
"new",
"PolicyExecutorImpl",
"(",
"(",
"ExecutorServiceImpl",
")",
"globalExecutor",
",",
"(",
"String",
")",
"props",
".... | Creates a new policy executor instance and initializes it per the specified OSGi service component properties.
The config.displayId of the OSGi service component properties is used as the unique identifier.
@param props properties for a configuration-based OSGi service component instance. For example, an instance of c... | [
"Creates",
"a",
"new",
"policy",
"executor",
"instance",
"and",
"initializes",
"it",
"per",
"the",
"specified",
"OSGi",
"service",
"component",
"properties",
".",
"The",
"config",
".",
"displayId",
"of",
"the",
"OSGi",
"service",
"component",
"properties",
"is",... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.threading/src/com/ibm/ws/threading/PolicyExecutorProvider.java#L66-L70 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.threading/src/com/ibm/ws/threading/PolicyExecutorProvider.java | PolicyExecutorProvider.create | public PolicyExecutor create(String identifier) {
return new PolicyExecutorImpl((ExecutorServiceImpl) globalExecutor, "PolicyExecutorProvider-" + identifier, null, policyExecutors);
} | java | public PolicyExecutor create(String identifier) {
return new PolicyExecutorImpl((ExecutorServiceImpl) globalExecutor, "PolicyExecutorProvider-" + identifier, null, policyExecutors);
} | [
"public",
"PolicyExecutor",
"create",
"(",
"String",
"identifier",
")",
"{",
"return",
"new",
"PolicyExecutorImpl",
"(",
"(",
"ExecutorServiceImpl",
")",
"globalExecutor",
",",
"\"PolicyExecutorProvider-\"",
"+",
"identifier",
",",
"null",
",",
"policyExecutors",
")",... | Creates a new policy executor instance.
@param identifier unique identifier for the new instance, to be used for monitoring and problem determination.
Note: The prefix, PolicyExecutorProvider-, is prepended to the identifier.
@return a new policy executor instance.
@throws IllegalStateException if an instance with the... | [
"Creates",
"a",
"new",
"policy",
"executor",
"instance",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.threading/src/com/ibm/ws/threading/PolicyExecutorProvider.java#L81-L83 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.threading/src/com/ibm/ws/threading/PolicyExecutorProvider.java | PolicyExecutorProvider.create | public PolicyExecutor create(String fullIdentifier, String owner) {
return new PolicyExecutorImpl((ExecutorServiceImpl) globalExecutor, fullIdentifier, owner, policyExecutors);
} | java | public PolicyExecutor create(String fullIdentifier, String owner) {
return new PolicyExecutorImpl((ExecutorServiceImpl) globalExecutor, fullIdentifier, owner, policyExecutors);
} | [
"public",
"PolicyExecutor",
"create",
"(",
"String",
"fullIdentifier",
",",
"String",
"owner",
")",
"{",
"return",
"new",
"PolicyExecutorImpl",
"(",
"(",
"ExecutorServiceImpl",
")",
"globalExecutor",
",",
"fullIdentifier",
",",
"owner",
",",
"policyExecutors",
")",
... | Creates a new policy executor instance for use by a single application.
Policy executors owned by this application can be shut down via the shutdownNow method of this class.
@param fullIdentifier unique identifier for the new instance, to be used for monitoring and problem determination.
@param owner name of applicati... | [
"Creates",
"a",
"new",
"policy",
"executor",
"instance",
"for",
"use",
"by",
"a",
"single",
"application",
".",
"Policy",
"executors",
"owned",
"by",
"this",
"application",
"can",
"be",
"shut",
"down",
"via",
"the",
"shutdownNow",
"method",
"of",
"this",
"cl... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.threading/src/com/ibm/ws/threading/PolicyExecutorProvider.java#L95-L97 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/FileBeanStore.java | FileBeanStore.getGZIPOutputStream | public GZIPOutputStream getGZIPOutputStream(BeanId beanId)
throws CSIException
{
final boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "getOutputStream", beanId);
final String fileName = getPortable... | java | public GZIPOutputStream getGZIPOutputStream(BeanId beanId)
throws CSIException
{
final boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "getOutputStream", beanId);
final String fileName = getPortable... | [
"public",
"GZIPOutputStream",
"getGZIPOutputStream",
"(",
"BeanId",
"beanId",
")",
"throws",
"CSIException",
"{",
"final",
"boolean",
"isTraceOn",
"=",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
";",
"if",
"(",
"isTraceOn",
"&&",
"tc",
".",
"isEntryEn... | Get object ouput stream suitable for reading persistent state
associated with given key. | [
"Get",
"object",
"ouput",
"stream",
"suitable",
"for",
"reading",
"persistent",
"state",
"associated",
"with",
"given",
"key",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/FileBeanStore.java#L273-L310 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/FileBeanStore.java | FileBeanStore.getPortableFilename | private String getPortableFilename(BeanId beanId)
{
// Historically, this method returned the equivalent of
// appendPortableFilenameString(beanId.toString()), where BeanId.toString
// returned "BeanId(" + j2eeName + ", " + pkey + ")", which translates to
// "BeanId_" + j2eeName + "_... | java | private String getPortableFilename(BeanId beanId)
{
// Historically, this method returned the equivalent of
// appendPortableFilenameString(beanId.toString()), where BeanId.toString
// returned "BeanId(" + j2eeName + ", " + pkey + ")", which translates to
// "BeanId_" + j2eeName + "_... | [
"private",
"String",
"getPortableFilename",
"(",
"BeanId",
"beanId",
")",
"{",
"// Historically, this method returned the equivalent of",
"// appendPortableFilenameString(beanId.toString()), where BeanId.toString",
"// returned \"BeanId(\" + j2eeName + \", \" + pkey + \")\", which translates to"... | Create a "safe" file name given the BeanId. There are a number of
characters which can cause problems on different platforms. A safe
file name will container only the following characters
a-z, A-Z, _, -, .
All other characters will get converted to a _ | [
"Create",
"a",
"safe",
"file",
"name",
"given",
"the",
"BeanId",
".",
"There",
"are",
"a",
"number",
"of",
"characters",
"which",
"can",
"cause",
"problems",
"on",
"different",
"platforms",
".",
"A",
"safe",
"file",
"name",
"will",
"container",
"only",
"th... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/FileBeanStore.java#L359-L373 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/FileBeanStore.java | FileBeanStore.getOutputStream | public OutputStream getOutputStream(BeanId beanId)
throws CSIException
{
final String fileName = getPortableFilename(beanId);
final boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "getOutputStream: k... | java | public OutputStream getOutputStream(BeanId beanId)
throws CSIException
{
final String fileName = getPortableFilename(beanId);
final boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "getOutputStream: k... | [
"public",
"OutputStream",
"getOutputStream",
"(",
"BeanId",
"beanId",
")",
"throws",
"CSIException",
"{",
"final",
"String",
"fileName",
"=",
"getPortableFilename",
"(",
"beanId",
")",
";",
"final",
"boolean",
"isTraceOn",
"=",
"TraceComponent",
".",
"isAnyTracingEn... | LIDB2018-1
new method for just dumping in the byte array to a file,
byte array in gzip format.
@param key the BeanId for this SFSB
@return an OutputStream | [
"LIDB2018",
"-",
"1",
"new",
"method",
"for",
"just",
"dumping",
"in",
"the",
"byte",
"array",
"to",
"a",
"file",
"byte",
"array",
"in",
"gzip",
"format",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/FileBeanStore.java#L401-L439 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.