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.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/ConversationTable.java | ConversationTable.get | public synchronized ConversationImpl get(int id)
{
if (tc.isEntryEnabled()) SibTr.entry(this, tc, "get", ""+id);
mutableKey.setValue(id);
ConversationImpl retValue = idToConvTable.get(mutableKey);
if (tc.isEntryEnabled()) SibTr.exit(this, tc, "get", retValue);
return retValue;
} | java | public synchronized ConversationImpl get(int id)
{
if (tc.isEntryEnabled()) SibTr.entry(this, tc, "get", ""+id);
mutableKey.setValue(id);
ConversationImpl retValue = idToConvTable.get(mutableKey);
if (tc.isEntryEnabled()) SibTr.exit(this, tc, "get", retValue);
return retValue;
} | [
"public",
"synchronized",
"ConversationImpl",
"get",
"(",
"int",
"id",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"get\"",
",",
"\"\"",
"+",
"id",
")",
";",
"mutableKey",
"."... | Retrieve a conversation from the table by ID
@param id
@return ConversationImpl | [
"Retrieve",
"a",
"conversation",
"from",
"the",
"table",
"by",
"ID"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/ConversationTable.java#L174-L181 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/ConversationTable.java | ConversationTable.remove | public synchronized boolean remove(int id)
{
if (tc.isEntryEnabled()) SibTr.entry(this, tc, "remove", ""+id);
final boolean result = contains(id);
if (result)
{
mutableKey.setValue(id);
idToConvTable.remove(mutableKey);
}
if (tc.isEntryEnabled()) SibTr.exit(th... | java | public synchronized boolean remove(int id)
{
if (tc.isEntryEnabled()) SibTr.entry(this, tc, "remove", ""+id);
final boolean result = contains(id);
if (result)
{
mutableKey.setValue(id);
idToConvTable.remove(mutableKey);
}
if (tc.isEntryEnabled()) SibTr.exit(th... | [
"public",
"synchronized",
"boolean",
"remove",
"(",
"int",
"id",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"remove\"",
",",
"\"\"",
"+",
"id",
")",
";",
"final",
"boolean",
... | Remove a conversation from the table by ID
@param id | [
"Remove",
"a",
"conversation",
"from",
"the",
"table",
"by",
"ID"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/ConversationTable.java#L187-L199 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/ConversationTable.java | ConversationTable.iterator | public synchronized Iterator iterator()
{
if (tc.isEntryEnabled()) SibTr.entry(this, tc, "iterator");
Iterator returnValue = idToConvTable.values().iterator();
if (tc.isEntryEnabled()) SibTr.exit(this, tc, "iterator", returnValue);
return returnValue;
} | java | public synchronized Iterator iterator()
{
if (tc.isEntryEnabled()) SibTr.entry(this, tc, "iterator");
Iterator returnValue = idToConvTable.values().iterator();
if (tc.isEntryEnabled()) SibTr.exit(this, tc, "iterator", returnValue);
return returnValue;
} | [
"public",
"synchronized",
"Iterator",
"iterator",
"(",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"iterator\"",
")",
";",
"Iterator",
"returnValue",
"=",
"idToConvTable",
".",
"v... | Returns an iterator which iterates over the tables
contents. The values returned by this iterator are
objects of type Conversation.
@return Iterator | [
"Returns",
"an",
"iterator",
"which",
"iterates",
"over",
"the",
"tables",
"contents",
".",
"The",
"values",
"returned",
"by",
"this",
"iterator",
"are",
"objects",
"of",
"type",
"Conversation",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/ConversationTable.java#L207-L213 | train |
OpenLiberty/open-liberty | dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TxXATerminator.java | TxXATerminator.instance | public static TxXATerminator instance(String providerId)
{
if (tc.isEntryEnabled()) Tr.entry(tc, "instance", providerId);
final TxXATerminator xat;
synchronized(_txXATerminators)
{
if(_txXATerminators.containsKey(providerId))
{
xat = (TxXATerminator)_txXATerminators.get(providerId);
}
el... | java | public static TxXATerminator instance(String providerId)
{
if (tc.isEntryEnabled()) Tr.entry(tc, "instance", providerId);
final TxXATerminator xat;
synchronized(_txXATerminators)
{
if(_txXATerminators.containsKey(providerId))
{
xat = (TxXATerminator)_txXATerminators.get(providerId);
}
el... | [
"public",
"static",
"TxXATerminator",
"instance",
"(",
"String",
"providerId",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"instance\"",
",",
"providerId",
")",
";",
"final",
"TxXATerminator",
"xat... | Return the TxXATerminator instance specific to the given providerId
@param providerId
@return | [
"Return",
"the",
"TxXATerminator",
"instance",
"specific",
"to",
"the",
"given",
"providerId"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TxXATerminator.java#L63-L84 | train |
OpenLiberty/open-liberty | dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TxXATerminator.java | TxXATerminator.getTxWrapper | protected JCATranWrapper getTxWrapper(Xid xid, boolean addAssociation) throws XAException
{
if (tc.isEntryEnabled()) Tr.entry(tc, "getTxWrapper", xid);
final JCATranWrapper txWrapper = TxExecutionContextHandler.getTxWrapper(xid, addAssociation);
if(txWrapper.getTransaction() == null)
... | java | protected JCATranWrapper getTxWrapper(Xid xid, boolean addAssociation) throws XAException
{
if (tc.isEntryEnabled()) Tr.entry(tc, "getTxWrapper", xid);
final JCATranWrapper txWrapper = TxExecutionContextHandler.getTxWrapper(xid, addAssociation);
if(txWrapper.getTransaction() == null)
... | [
"protected",
"JCATranWrapper",
"getTxWrapper",
"(",
"Xid",
"xid",
",",
"boolean",
"addAssociation",
")",
"throws",
"XAException",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"getTxWrapper\"",
",",
"xid",
... | Gets the Transaction from the TxExecutionContextHandler that imported it
@param xid
@param addAssociation
@return
@throws XAException (XAER_NOTA) - thrown if the specified XID is invalid | [
"Gets",
"the",
"Transaction",
"from",
"the",
"TxExecutionContextHandler",
"that",
"imported",
"it"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TxXATerminator.java#L260-L275 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsp/src/com/ibm/ws/jsp/translator/visitor/validator/FVVisitor.java | FVVisitor.getMethod | private String getMethod(ELNode.Function func) throws JspTranslationException {
FunctionInfo funcInfo = func.getFunctionInfo();
String signature = funcInfo.getFunctionSignature();
int start = signature.indexOf(' ');
if (start < 0) {
throw new JspTranslationException("jsp.err... | java | private String getMethod(ELNode.Function func) throws JspTranslationException {
FunctionInfo funcInfo = func.getFunctionInfo();
String signature = funcInfo.getFunctionSignature();
int start = signature.indexOf(' ');
if (start < 0) {
throw new JspTranslationException("jsp.err... | [
"private",
"String",
"getMethod",
"(",
"ELNode",
".",
"Function",
"func",
")",
"throws",
"JspTranslationException",
"{",
"FunctionInfo",
"funcInfo",
"=",
"func",
".",
"getFunctionInfo",
"(",
")",
";",
"String",
"signature",
"=",
"funcInfo",
".",
"getFunctionSignat... | Get the method name from the signature. | [
"Get",
"the",
"method",
"name",
"from",
"the",
"signature",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsp/src/com/ibm/ws/jsp/translator/visitor/validator/FVVisitor.java#L89-L102 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsp/src/com/ibm/ws/jsp/tsx/tag/DefinedIndexManager.java | DefinedIndexManager.exists | public boolean exists(String index) {
boolean exists = false;
if (indexNames.isEmpty() == false) {
for (i = 0; i < indexNames.size(); i++) {
if (index.equals((String) indexNames.elementAt(i))) {
exists = true;
break;
}
... | java | public boolean exists(String index) {
boolean exists = false;
if (indexNames.isEmpty() == false) {
for (i = 0; i < indexNames.size(); i++) {
if (index.equals((String) indexNames.elementAt(i))) {
exists = true;
break;
}
... | [
"public",
"boolean",
"exists",
"(",
"String",
"index",
")",
"{",
"boolean",
"exists",
"=",
"false",
";",
"if",
"(",
"indexNames",
".",
"isEmpty",
"(",
")",
"==",
"false",
")",
"{",
"for",
"(",
"i",
"=",
"0",
";",
"i",
"<",
"indexNames",
".",
"size"... | see if the passed in index exists in the vector | [
"see",
"if",
"the",
"passed",
"in",
"index",
"exists",
"in",
"the",
"vector"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsp/src/com/ibm/ws/jsp/tsx/tag/DefinedIndexManager.java#L43-L56 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/webapp/AbstractFacesInitializer.java | AbstractFacesInitializer._createEagerBeans | private void _createEagerBeans(FacesContext facesContext)
{
ExternalContext externalContext = facesContext.getExternalContext();
RuntimeConfig runtimeConfig = RuntimeConfig.getCurrentInstance(externalContext);
List<ManagedBean> eagerBeans = new ArrayList<ManagedBean>();
// c... | java | private void _createEagerBeans(FacesContext facesContext)
{
ExternalContext externalContext = facesContext.getExternalContext();
RuntimeConfig runtimeConfig = RuntimeConfig.getCurrentInstance(externalContext);
List<ManagedBean> eagerBeans = new ArrayList<ManagedBean>();
// c... | [
"private",
"void",
"_createEagerBeans",
"(",
"FacesContext",
"facesContext",
")",
"{",
"ExternalContext",
"externalContext",
"=",
"facesContext",
".",
"getExternalContext",
"(",
")",
";",
"RuntimeConfig",
"runtimeConfig",
"=",
"RuntimeConfig",
".",
"getCurrentInstance",
... | Checks for application scoped managed-beans with eager=true,
creates them and stores them in the application map.
@param facesContext | [
"Checks",
"for",
"application",
"scoped",
"managed",
"-",
"beans",
"with",
"eager",
"=",
"true",
"creates",
"them",
"and",
"stores",
"them",
"in",
"the",
"application",
"map",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/webapp/AbstractFacesInitializer.java#L272-L323 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/webapp/AbstractFacesInitializer.java | AbstractFacesInitializer.loadExpressionFactory | protected static ExpressionFactory loadExpressionFactory(String expressionFactoryClassName)
{
try
{
Class<?> expressionFactoryClass = Class.forName(expressionFactoryClassName);
return (ExpressionFactory) expressionFactoryClass.newInstance();
}
catch (Exception... | java | protected static ExpressionFactory loadExpressionFactory(String expressionFactoryClassName)
{
try
{
Class<?> expressionFactoryClass = Class.forName(expressionFactoryClassName);
return (ExpressionFactory) expressionFactoryClass.newInstance();
}
catch (Exception... | [
"protected",
"static",
"ExpressionFactory",
"loadExpressionFactory",
"(",
"String",
"expressionFactoryClassName",
")",
"{",
"try",
"{",
"Class",
"<",
"?",
">",
"expressionFactoryClass",
"=",
"Class",
".",
"forName",
"(",
"expressionFactoryClassName",
")",
";",
"return... | Loads and instantiates the given ExpressionFactory implementation.
@param expressionFactoryClassName the class name of the ExpressionFactory implementation
@return the newly created ExpressionFactory implementation, or
<code>null</code>, if an error occurred | [
"Loads",
"and",
"instantiates",
"the",
"given",
"ExpressionFactory",
"implementation",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/webapp/AbstractFacesInitializer.java#L493-L510 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/webapp/AbstractFacesInitializer.java | AbstractFacesInitializer.initCDIIntegration | protected void initCDIIntegration(
ServletContext servletContext, ExternalContext externalContext)
{
// Lookup bean manager and put it into an application scope attribute to
// access it later. Remember the trick here is do not call any CDI api
// directly, so if no CDI api is ... | java | protected void initCDIIntegration(
ServletContext servletContext, ExternalContext externalContext)
{
// Lookup bean manager and put it into an application scope attribute to
// access it later. Remember the trick here is do not call any CDI api
// directly, so if no CDI api is ... | [
"protected",
"void",
"initCDIIntegration",
"(",
"ServletContext",
"servletContext",
",",
"ExternalContext",
"externalContext",
")",
"{",
"// Lookup bean manager and put it into an application scope attribute to ",
"// access it later. Remember the trick here is do not call any CDI api ",
"... | The intention of this method is provide a point where CDI integration is done.
Faces Flow and javax.faces.view.ViewScope requires CDI in order to work, so
this method should set a BeanManager instance on application map under
the key "oam.cdi.BEAN_MANAGER_INSTANCE". The default implementation look on
ServletContext fir... | [
"The",
"intention",
"of",
"this",
"method",
"is",
"provide",
"a",
"point",
"where",
"CDI",
"integration",
"is",
"done",
".",
"Faces",
"Flow",
"and",
"javax",
".",
"faces",
".",
"view",
".",
"ViewScope",
"requires",
"CDI",
"in",
"order",
"to",
"work",
"so... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/webapp/AbstractFacesInitializer.java#L579-L652 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.concurrent/src/com/ibm/ws/concurrent/internal/ThreadGroupTracker.java | ThreadGroupTracker.getThreadGroup | ThreadGroup getThreadGroup(String identifier, String threadFactoryName, ThreadGroup parentGroup) {
ConcurrentHashMap<String, ThreadGroup> threadFactoryToThreadGroup = metadataIdentifierToThreadGroups.get(identifier);
if (threadFactoryToThreadGroup == null)
if (metadataIdentifierService.isMet... | java | ThreadGroup getThreadGroup(String identifier, String threadFactoryName, ThreadGroup parentGroup) {
ConcurrentHashMap<String, ThreadGroup> threadFactoryToThreadGroup = metadataIdentifierToThreadGroups.get(identifier);
if (threadFactoryToThreadGroup == null)
if (metadataIdentifierService.isMet... | [
"ThreadGroup",
"getThreadGroup",
"(",
"String",
"identifier",
",",
"String",
"threadFactoryName",
",",
"ThreadGroup",
"parentGroup",
")",
"{",
"ConcurrentHashMap",
"<",
"String",
",",
"ThreadGroup",
">",
"threadFactoryToThreadGroup",
"=",
"metadataIdentifierToThreadGroups",... | Returns the thread group to use for the specified application component.
@param jeeName name of the application component
@param threadFactoryName unique identifier for the thread factory
@param parentGroup parent thread group
@return child thread group for the application component. Null if the application component ... | [
"Returns",
"the",
"thread",
"group",
"to",
"use",
"for",
"the",
"specified",
"application",
"component",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.concurrent/src/com/ibm/ws/concurrent/internal/ThreadGroupTracker.java#L107-L123 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.concurrent/src/com/ibm/ws/concurrent/internal/ThreadGroupTracker.java | ThreadGroupTracker.threadFactoryDestroyed | void threadFactoryDestroyed(String threadFactoryName, ThreadGroup parentGroup) {
Collection<ThreadGroup> groupsToDestroy = new LinkedList<ThreadGroup>();
for (ConcurrentHashMap<String, ThreadGroup> threadFactoryToThreadGroup : metadataIdentifierToThreadGroups.values()) {
ThreadGroup group = ... | java | void threadFactoryDestroyed(String threadFactoryName, ThreadGroup parentGroup) {
Collection<ThreadGroup> groupsToDestroy = new LinkedList<ThreadGroup>();
for (ConcurrentHashMap<String, ThreadGroup> threadFactoryToThreadGroup : metadataIdentifierToThreadGroups.values()) {
ThreadGroup group = ... | [
"void",
"threadFactoryDestroyed",
"(",
"String",
"threadFactoryName",
",",
"ThreadGroup",
"parentGroup",
")",
"{",
"Collection",
"<",
"ThreadGroup",
">",
"groupsToDestroy",
"=",
"new",
"LinkedList",
"<",
"ThreadGroup",
">",
"(",
")",
";",
"for",
"(",
"ConcurrentHa... | Invoke this method when destroying a ManagedThreadFactory in order to interrupt all managed threads
that it created.
@param threadFactoryName unique identifier for the managed thread factory. | [
"Invoke",
"this",
"method",
"when",
"destroying",
"a",
"ManagedThreadFactory",
"in",
"order",
"to",
"interrupt",
"all",
"managed",
"threads",
"that",
"it",
"created",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.concurrent/src/com/ibm/ws/concurrent/internal/ThreadGroupTracker.java#L149-L158 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/impl/LinkHandler.java | LinkHandler.createRealizationAndState | protected void createRealizationAndState(
MessageProcessor messageProcessor,
TransactionCommon transaction)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(
tc,
"createRealizationAndState",
new Object[] {
messageProcessor,
tr... | java | protected void createRealizationAndState(
MessageProcessor messageProcessor,
TransactionCommon transaction)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(
tc,
"createRealizationAndState",
new Object[] {
messageProcessor,
tr... | [
"protected",
"void",
"createRealizationAndState",
"(",
"MessageProcessor",
"messageProcessor",
",",
"TransactionCommon",
"transaction",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Si... | Cold start version of State Handler creation.
@param messageProcessor
@throws SIResourceException | [
"Cold",
"start",
"version",
"of",
"State",
"Handler",
"creation",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/impl/LinkHandler.java#L168-L192 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/impl/LinkHandler.java | LinkHandler.reconstitute | protected void reconstitute(
MessageProcessor processor,
HashMap durableSubscriptionsTable,
int startMode) throws SIResourceException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "reconstitute", new Object[] { processor,
durableSubscriptionsT... | java | protected void reconstitute(
MessageProcessor processor,
HashMap durableSubscriptionsTable,
int startMode) throws SIResourceException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "reconstitute", new Object[] { processor,
durableSubscriptionsT... | [
"protected",
"void",
"reconstitute",
"(",
"MessageProcessor",
"processor",
",",
"HashMap",
"durableSubscriptionsTable",
",",
"int",
"startMode",
")",
"throws",
"SIResourceException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
... | Overide the reconstitute method so we can set the
message processor instance as this will have been done by the
cursor.next method. | [
"Overide",
"the",
"reconstitute",
"method",
"so",
"we",
"can",
"set",
"the",
"message",
"processor",
"instance",
"as",
"this",
"will",
"have",
"been",
"done",
"by",
"the",
"cursor",
".",
"next",
"method",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/impl/LinkHandler.java#L901-L916 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/renderkit/html/HtmlRenderKitImpl.java | HtmlRenderKitImpl._put | synchronized private void _put(String componentFamily, String rendererType, Renderer renderer)
{
Map <String,Renderer> familyRendererMap = _renderers.get(componentFamily);
if (familyRendererMap == null)
{
familyRendererMap = new ConcurrentHashMap<String, Renderer>(8, 0.75f, 1);
... | java | synchronized private void _put(String componentFamily, String rendererType, Renderer renderer)
{
Map <String,Renderer> familyRendererMap = _renderers.get(componentFamily);
if (familyRendererMap == null)
{
familyRendererMap = new ConcurrentHashMap<String, Renderer>(8, 0.75f, 1);
... | [
"synchronized",
"private",
"void",
"_put",
"(",
"String",
"componentFamily",
",",
"String",
"rendererType",
",",
"Renderer",
"renderer",
")",
"{",
"Map",
"<",
"String",
",",
"Renderer",
">",
"familyRendererMap",
"=",
"_renderers",
".",
"get",
"(",
"componentFami... | Put the renderer on the double map
@param componentFamily
@param rendererType
@param renderer | [
"Put",
"the",
"renderer",
"on",
"the",
"double",
"map"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/renderkit/html/HtmlRenderKitImpl.java#L202-L223 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/NonSyncHashtable.java | NonSyncHashtable.get | public Object get(Object key) {
NonSyncHashtableEntry tab[] = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
for (NonSyncHashtableEntry e = tab[index]; e != null; e = e.next) {
if ((e.hash == hash) && e.key.equals(key)) {
return e.value;
... | java | public Object get(Object key) {
NonSyncHashtableEntry tab[] = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
for (NonSyncHashtableEntry e = tab[index]; e != null; e = e.next) {
if ((e.hash == hash) && e.key.equals(key)) {
return e.value;
... | [
"public",
"Object",
"get",
"(",
"Object",
"key",
")",
"{",
"NonSyncHashtableEntry",
"tab",
"[",
"]",
"=",
"table",
";",
"int",
"hash",
"=",
"key",
".",
"hashCode",
"(",
")",
";",
"int",
"index",
"=",
"(",
"hash",
"&",
"0x7FFFFFFF",
")",
"%",
"tab",
... | Returns the value to which the specified key is mapped in this hashtable.
@param key a key in the hashtable.
@return The value to which the key is mapped in this hashtable;
<code>null</code> if the key is not mapped to any value in
this hashtable. | [
"Returns",
"the",
"value",
"to",
"which",
"the",
"specified",
"key",
"is",
"mapped",
"in",
"this",
"hashtable",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/NonSyncHashtable.java#L156-L166 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/el/ELText.java | ELText.write | public void write(Writer out, ELContext ctx) throws ELException, IOException
{
out.write(this.literal);
} | java | public void write(Writer out, ELContext ctx) throws ELException, IOException
{
out.write(this.literal);
} | [
"public",
"void",
"write",
"(",
"Writer",
"out",
",",
"ELContext",
"ctx",
")",
"throws",
"ELException",
",",
"IOException",
"{",
"out",
".",
"write",
"(",
"this",
".",
"literal",
")",
";",
"}"
] | Allow this instance to write to the passed Writer, given the ELContext state
@param out
Writer to write to
@param ctx
current ELContext state
@throws ELException
@throws IOException | [
"Allow",
"this",
"instance",
"to",
"write",
"to",
"the",
"passed",
"Writer",
"given",
"the",
"ELContext",
"state"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/el/ELText.java#L409-L412 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/impl/CacheingSearchResults.java | CacheingSearchResults.provideCacheable | public Object provideCacheable(Object key)
{
if (tc.isDebugEnabled())
tc.debug(this,cclass, "provideCacheable", key);
return null;
} | java | public Object provideCacheable(Object key)
{
if (tc.isDebugEnabled())
tc.debug(this,cclass, "provideCacheable", key);
return null;
} | [
"public",
"Object",
"provideCacheable",
"(",
"Object",
"key",
")",
"{",
"if",
"(",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"tc",
".",
"debug",
"(",
"this",
",",
"cclass",
",",
"\"provideCacheable\"",
",",
"key",
")",
";",
"return",
"null",
";",
"}"... | Cache methods do nothing for this type | [
"Cache",
"methods",
"do",
"nothing",
"for",
"this",
"type"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/impl/CacheingSearchResults.java#L67-L72 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/impl/CacheingSearchResults.java | CacheingSearchResults.setMatcher | void setMatcher(ContentMatcher m)
{
if (tc.isEntryEnabled())
tc.entry(
this,cclass,
"setMatcher",
"matcher: " + m + ", hasContent: " + new Boolean(hasContent));
wildMatchers.add(m);
this.hasContent |= m.hasTests();
if (tc.isEntryEnabled())
tc.exit(this,cclass, "s... | java | void setMatcher(ContentMatcher m)
{
if (tc.isEntryEnabled())
tc.entry(
this,cclass,
"setMatcher",
"matcher: " + m + ", hasContent: " + new Boolean(hasContent));
wildMatchers.add(m);
this.hasContent |= m.hasTests();
if (tc.isEntryEnabled())
tc.exit(this,cclass, "s... | [
"void",
"setMatcher",
"(",
"ContentMatcher",
"m",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"tc",
".",
"entry",
"(",
"this",
",",
"cclass",
",",
"\"setMatcher\"",
",",
"\"matcher: \"",
"+",
"m",
"+",
"\", hasContent: \"",
"+",
"new... | Caches a matcher | [
"Caches",
"a",
"matcher"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/impl/CacheingSearchResults.java#L82-L96 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/impl/CacheingSearchResults.java | CacheingSearchResults.getMatchers | ContentMatcher[] getMatchers()
{
if (tc.isEntryEnabled())
tc.entry(this,cclass, "getMatchers");
// ans removed as it is never used !
// Matcher[] ans = new Matcher[wildMatchers.size()];
if (tc.isEntryEnabled())
tc.exit(this,cclass, "getMatchers");
return (ContentMatcher[]) wildMa... | java | ContentMatcher[] getMatchers()
{
if (tc.isEntryEnabled())
tc.entry(this,cclass, "getMatchers");
// ans removed as it is never used !
// Matcher[] ans = new Matcher[wildMatchers.size()];
if (tc.isEntryEnabled())
tc.exit(this,cclass, "getMatchers");
return (ContentMatcher[]) wildMa... | [
"ContentMatcher",
"[",
"]",
"getMatchers",
"(",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"tc",
".",
"entry",
"(",
"this",
",",
"cclass",
",",
"\"getMatchers\"",
")",
";",
"// ans removed as it is never used !",
"// Matcher[] ans = new... | Returns the Matcher cache as an array | [
"Returns",
"the",
"Matcher",
"cache",
"as",
"an",
"array"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/impl/CacheingSearchResults.java#L107-L119 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/DummyFileObjectStore.java | DummyFileObjectStore.get | public ManagedObject get(Token token)
throws ObjectManagerException
{
final String methodName = "get";
if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) {
trace.entry(this,
cclass,
methodName,
... | java | public ManagedObject get(Token token)
throws ObjectManagerException
{
final String methodName = "get";
if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) {
trace.entry(this,
cclass,
methodName,
... | [
"public",
"ManagedObject",
"get",
"(",
"Token",
"token",
")",
"throws",
"ObjectManagerException",
"{",
"final",
"String",
"methodName",
"=",
"\"get\"",
";",
"if",
"(",
"Tracing",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"trace",
".",
"isEntryEnabled",
"(",
... | Always throws InMemoryObjectNotAvailableException.
@throws InMemoryObjectNotAvailableException because all ManagedObjects are unavailable.
@see com.ibm.ws.objectManager.ObjectStore#get(com.ibm.ws.objectManager.Token) | [
"Always",
"throws",
"InMemoryObjectNotAvailableException",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/DummyFileObjectStore.java#L93-L108 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.transport.http/src/com/ibm/wsspi/http/logging/LogUtils.java | LogUtils.convertNCSAFormat | public static AccessLog.Format convertNCSAFormat(String name) {
if (null == name) {
return AccessLog.Format.COMMON;
}
AccessLog.Format format = AccessLog.Format.COMMON;
String test = name.trim().toLowerCase();
if ("combined".equals(test)) {
format = Access... | java | public static AccessLog.Format convertNCSAFormat(String name) {
if (null == name) {
return AccessLog.Format.COMMON;
}
AccessLog.Format format = AccessLog.Format.COMMON;
String test = name.trim().toLowerCase();
if ("combined".equals(test)) {
format = Access... | [
"public",
"static",
"AccessLog",
".",
"Format",
"convertNCSAFormat",
"(",
"String",
"name",
")",
"{",
"if",
"(",
"null",
"==",
"name",
")",
"{",
"return",
"AccessLog",
".",
"Format",
".",
"COMMON",
";",
"}",
"AccessLog",
".",
"Format",
"format",
"=",
"Ac... | Convert the input string into the appropriate Format setting.
@param name
@return AccessLog.Format | [
"Convert",
"the",
"input",
"string",
"into",
"the",
"appropriate",
"Format",
"setting",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.transport.http/src/com/ibm/wsspi/http/logging/LogUtils.java#L33-L43 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.transport.http/src/com/ibm/wsspi/http/logging/LogUtils.java | LogUtils.convertDebugLevel | public static DebugLog.Level convertDebugLevel(String name) {
if (null == name) {
return DebugLog.Level.NONE;
}
// WAS panels have expanded names for some of these so we're doing
// a series of checks instead of the enum.valueOf() option
// default to the WARNING lev... | java | public static DebugLog.Level convertDebugLevel(String name) {
if (null == name) {
return DebugLog.Level.NONE;
}
// WAS panels have expanded names for some of these so we're doing
// a series of checks instead of the enum.valueOf() option
// default to the WARNING lev... | [
"public",
"static",
"DebugLog",
".",
"Level",
"convertDebugLevel",
"(",
"String",
"name",
")",
"{",
"if",
"(",
"null",
"==",
"name",
")",
"{",
"return",
"DebugLog",
".",
"Level",
".",
"NONE",
";",
"}",
"// WAS panels have expanded names for some of these so we're ... | Convert the input string into the appropriate debug log level setting.
@param name
@return DebugLog.Level | [
"Convert",
"the",
"input",
"string",
"into",
"the",
"appropriate",
"debug",
"log",
"level",
"setting",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.transport.http/src/com/ibm/wsspi/http/logging/LogUtils.java#L51-L73 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jpa.container.core/src/com/ibm/ws/jpa/management/JaxbUnmarshaller.java | JaxbUnmarshaller.findRootCause | private static Throwable findRootCause(Throwable t) {
Throwable root = t;
Throwable cause = root.getCause();
while (cause != null) {
root = cause;
cause = root.getCause();
}
return root;
} | java | private static Throwable findRootCause(Throwable t) {
Throwable root = t;
Throwable cause = root.getCause();
while (cause != null) {
root = cause;
cause = root.getCause();
}
return root;
} | [
"private",
"static",
"Throwable",
"findRootCause",
"(",
"Throwable",
"t",
")",
"{",
"Throwable",
"root",
"=",
"t",
";",
"Throwable",
"cause",
"=",
"root",
".",
"getCause",
"(",
")",
";",
"while",
"(",
"cause",
"!=",
"null",
")",
"{",
"root",
"=",
"caus... | Find root cause of a specified Throwable object.
@param t is the Throwable object.
@return the root cause object. | [
"Find",
"root",
"cause",
"of",
"a",
"specified",
"Throwable",
"object",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jpa.container.core/src/com/ibm/ws/jpa/management/JaxbUnmarshaller.java#L188-L196 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.setCheckConfig | public void setCheckConfig(boolean checkConfig) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "setCheckConfig: " + checkConfig);
ivCheckConfig = checkConfig;
} | java | public void setCheckConfig(boolean checkConfig) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "setCheckConfig: " + checkConfig);
ivCheckConfig = checkConfig;
} | [
"public",
"void",
"setCheckConfig",
"(",
"boolean",
"checkConfig",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"Tr",
".",
"debug",
"(",
"tc",
",",
"\"setCheckConfig: \"",
"+",... | F743-33178 | [
"F743",
"-",
"33178"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L367-L371 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.addSingleton | public void addSingleton(BeanMetaData bmd, boolean startup, Set<String> dependsOnLinks) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "addSingleton: " + bmd.j2eeName + " (startup=" + startup + ", dependsOn=" + (dependsOnLinks != null) + ")");
if (startup) {... | java | public void addSingleton(BeanMetaData bmd, boolean startup, Set<String> dependsOnLinks) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "addSingleton: " + bmd.j2eeName + " (startup=" + startup + ", dependsOn=" + (dependsOnLinks != null) + ")");
if (startup) {... | [
"public",
"void",
"addSingleton",
"(",
"BeanMetaData",
"bmd",
",",
"boolean",
"startup",
",",
"Set",
"<",
"String",
">",
"dependsOnLinks",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")... | Adds a singleton bean belonging to this application.
@param bmd
the bean metadata
@param startup
true if this is a startup singleton bean
@param dependsOnLinks
list of dependency EJB links | [
"Adds",
"a",
"singleton",
"bean",
"belonging",
"to",
"this",
"application",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L408-L425 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.checkIfCreateNonPersistentTimerAllowed | public synchronized void checkIfCreateNonPersistentTimerAllowed(EJBModuleMetaDataImpl mmd) {
if (ivStopping) {
throw new EJBStoppedException(ivName);
}
if (mmd != null && mmd.ivStopping) {
throw new EJBStoppedException(mmd.getJ2EEName().toString());
}
} | java | public synchronized void checkIfCreateNonPersistentTimerAllowed(EJBModuleMetaDataImpl mmd) {
if (ivStopping) {
throw new EJBStoppedException(ivName);
}
if (mmd != null && mmd.ivStopping) {
throw new EJBStoppedException(mmd.getJ2EEName().toString());
}
} | [
"public",
"synchronized",
"void",
"checkIfCreateNonPersistentTimerAllowed",
"(",
"EJBModuleMetaDataImpl",
"mmd",
")",
"{",
"if",
"(",
"ivStopping",
")",
"{",
"throw",
"new",
"EJBStoppedException",
"(",
"ivName",
")",
";",
"}",
"if",
"(",
"mmd",
"!=",
"null",
"&&... | Prevent non-persistent timers from being created after the application or module has
begun stopping.
@throws EJBStoppedException
if the application or module is stopping | [
"Prevent",
"non",
"-",
"persistent",
"timers",
"from",
"being",
"created",
"after",
"the",
"application",
"or",
"module",
"has",
"begun",
"stopping",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L570-L578 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.finishStarting | private void finishStarting() throws RuntimeWarning {
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "finishStarting: " + ivName);
// NOTE - Any state that is cleared here should also be cleared in
// stoppingModu... | java | private void finishStarting() throws RuntimeWarning {
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "finishStarting: " + ivName);
// NOTE - Any state that is cleared here should also be cleared in
// stoppingModu... | [
"private",
"void",
"finishStarting",
"(",
")",
"throws",
"RuntimeWarning",
"{",
"boolean",
"isTraceOn",
"=",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
";",
"if",
"(",
"isTraceOn",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"en... | Notification that the application is about to finish starting. Performs processing of
singletons after all modules have been started but before the application has
finished starting. Module references are resolved, and startup singletons are
started.
@throws RuntimeWarning
if a dependency reference cannot be resolved ... | [
"Notification",
"that",
"the",
"application",
"is",
"about",
"to",
"finish",
"starting",
".",
"Performs",
"processing",
"of",
"singletons",
"after",
"all",
"modules",
"have",
"been",
"started",
"but",
"before",
"the",
"application",
"has",
"finished",
"starting",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L621-L647 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.resolveEJBLink | private HomeRecord resolveEJBLink(J2EEName source, String link) throws RuntimeWarning {
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "resolveEJBLink: " + link);
String module = source.getModule();
String compone... | java | private HomeRecord resolveEJBLink(J2EEName source, String link) throws RuntimeWarning {
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "resolveEJBLink: " + link);
String module = source.getModule();
String compone... | [
"private",
"HomeRecord",
"resolveEJBLink",
"(",
"J2EEName",
"source",
",",
"String",
"link",
")",
"throws",
"RuntimeWarning",
"{",
"boolean",
"isTraceOn",
"=",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
";",
"if",
"(",
"isTraceOn",
"&&",
"tc",
".",
... | Resolves a dependency reference link to another EJB.
@param source
the dependent bean
@param link
the dependency bean using EJB link syntax
@return the resulting home record
@throws RuntimeWarning
if the link cannot be resolved | [
"Resolves",
"a",
"dependency",
"reference",
"link",
"to",
"another",
"EJB",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L732-L763 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.resolveDependencies | private void resolveDependencies() throws RuntimeWarning {
// d684950
if (EJSPlatformHelper.isZOSCRA()) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "resolveDependencies: skipped in adjunct process");
return;
}
/... | java | private void resolveDependencies() throws RuntimeWarning {
// d684950
if (EJSPlatformHelper.isZOSCRA()) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "resolveDependencies: skipped in adjunct process");
return;
}
/... | [
"private",
"void",
"resolveDependencies",
"(",
")",
"throws",
"RuntimeWarning",
"{",
"// d684950",
"if",
"(",
"EJSPlatformHelper",
".",
"isZOSCRA",
"(",
")",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebug... | Resolves and verifies the singleton dependency links.
@throws RuntimeWarning
if verification fails | [
"Resolves",
"and",
"verifies",
"the",
"singleton",
"dependency",
"links",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L771-L797 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.resolveBeanDependencies | private void resolveBeanDependencies(BeanMetaData bmd, Set<BeanMetaData> used) throws RuntimeWarning {
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "resolveBeanDependencies: " + bmd.j2eeName);
// F7434950.CodRev - If an... | java | private void resolveBeanDependencies(BeanMetaData bmd, Set<BeanMetaData> used) throws RuntimeWarning {
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "resolveBeanDependencies: " + bmd.j2eeName);
// F7434950.CodRev - If an... | [
"private",
"void",
"resolveBeanDependencies",
"(",
"BeanMetaData",
"bmd",
",",
"Set",
"<",
"BeanMetaData",
">",
"used",
")",
"throws",
"RuntimeWarning",
"{",
"boolean",
"isTraceOn",
"=",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
";",
"if",
"(",
"is... | Verifies that the specified bean only depends on other singletons and that it does
not depend on itself. This method calls itself recursively to process all
dependencies.
@param bmd
the bean to check
@param used
the set of dependent beans that are already being processed
@param checked
the set of beans that have alrea... | [
"Verifies",
"that",
"the",
"specified",
"bean",
"only",
"depends",
"on",
"other",
"singletons",
"and",
"that",
"it",
"does",
"not",
"depend",
"on",
"itself",
".",
"This",
"method",
"calls",
"itself",
"recursively",
"to",
"process",
"all",
"dependencies",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L813-L866 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.createStartupBeans | private void createStartupBeans() throws RuntimeWarning {
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
// d684950
if (EJSPlatformHelper.isZOSCRA()) {
if (isTraceOn && tc.isDebugEnabled())
Tr.debug(tc, "createStartupBeans: skipped in adjunct process");
... | java | private void createStartupBeans() throws RuntimeWarning {
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
// d684950
if (EJSPlatformHelper.isZOSCRA()) {
if (isTraceOn && tc.isDebugEnabled())
Tr.debug(tc, "createStartupBeans: skipped in adjunct process");
... | [
"private",
"void",
"createStartupBeans",
"(",
")",
"throws",
"RuntimeWarning",
"{",
"boolean",
"isTraceOn",
"=",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
";",
"// d684950",
"if",
"(",
"EJSPlatformHelper",
".",
"isZOSCRA",
"(",
")",
")",
"{",
"if",... | Creates all startup singleton beans.
@throws RuntimeWarning
if a bean fails to initialize | [
"Creates",
"all",
"startup",
"singleton",
"beans",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L930-L975 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.notifyApplicationEventListeners | private void notifyApplicationEventListeners(Collection<EJBModuleMetaDataImpl> modules, boolean started) throws RuntimeWarning { // F743-26072
final boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "notifyApplicationEventListeners: ... | java | private void notifyApplicationEventListeners(Collection<EJBModuleMetaDataImpl> modules, boolean started) throws RuntimeWarning { // F743-26072
final boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "notifyApplicationEventListeners: ... | [
"private",
"void",
"notifyApplicationEventListeners",
"(",
"Collection",
"<",
"EJBModuleMetaDataImpl",
">",
"modules",
",",
"boolean",
"started",
")",
"throws",
"RuntimeWarning",
"{",
"// F743-26072",
"final",
"boolean",
"isTraceOn",
"=",
"TraceComponent",
".",
"isAnyTr... | Notifies all application event listeners in the specified modules.
@param modules
the list of modules to notify
@param started
<tt>true</tt> if the application is started, or <tt>false</tt> if the
application is stopping
@throws RuntimeWarning
if any listener throws an exception | [
"Notifies",
"all",
"application",
"event",
"listeners",
"in",
"the",
"specified",
"modules",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L988-L1028 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.addSingletonInitialization | public synchronized void addSingletonInitialization(EJSHome home) {
if (ivStopping) {
throw new EJBStoppedException(home.getJ2EEName().toString());
}
if (ivSingletonInitializations == null) {
ivSingletonInitializations = new LinkedHashSet<EJSHome>();
}
iv... | java | public synchronized void addSingletonInitialization(EJSHome home) {
if (ivStopping) {
throw new EJBStoppedException(home.getJ2EEName().toString());
}
if (ivSingletonInitializations == null) {
ivSingletonInitializations = new LinkedHashSet<EJSHome>();
}
iv... | [
"public",
"synchronized",
"void",
"addSingletonInitialization",
"(",
"EJSHome",
"home",
")",
"{",
"if",
"(",
"ivStopping",
")",
"{",
"throw",
"new",
"EJBStoppedException",
"(",
"home",
".",
"getJ2EEName",
"(",
")",
".",
"toString",
"(",
")",
")",
";",
"}",
... | Record the initialization attempt of a singleton. This method must not be called for
a bean before it is called for each of that bean's dependencies. This method may be
called multiple times for the same bean, but only the first call will have an effect.
@param home
the bean's home
@throws EJBStoppedException
if the a... | [
"Record",
"the",
"initialization",
"attempt",
"of",
"a",
"singleton",
".",
"This",
"method",
"must",
"not",
"be",
"called",
"for",
"a",
"bean",
"before",
"it",
"is",
"called",
"for",
"each",
"of",
"that",
"bean",
"s",
"dependencies",
".",
"This",
"method",... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L1066-L1075 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.queueOrStartNonPersistentTimerAlarm | public synchronized boolean queueOrStartNonPersistentTimerAlarm(TimerNpImpl timer, EJBModuleMetaDataImpl module) {
if (ivStopping) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "not starting timer alarm after application stop: " + timer);
... | java | public synchronized boolean queueOrStartNonPersistentTimerAlarm(TimerNpImpl timer, EJBModuleMetaDataImpl module) {
if (ivStopping) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "not starting timer alarm after application stop: " + timer);
... | [
"public",
"synchronized",
"boolean",
"queueOrStartNonPersistentTimerAlarm",
"(",
"TimerNpImpl",
"timer",
",",
"EJBModuleMetaDataImpl",
"module",
")",
"{",
"if",
"(",
"ivStopping",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc... | Queues or starts a non-persistent timer alarm, returning an indication of whether or
not the operation was successful.
If the application has not yet started, then the timer is queued and its alarm will
be started after the application is fully started.
If the application has previously been started, but now we are l... | [
"Queues",
"or",
"starts",
"a",
"non",
"-",
"persistent",
"timer",
"alarm",
"returning",
"an",
"indication",
"of",
"whether",
"or",
"not",
"the",
"operation",
"was",
"successful",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L1101-L1123 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.beginStopping | private void beginStopping(boolean application, J2EEName j2eeName, Collection<EJBModuleMetaDataImpl> modules) { // F743-26072
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "beginStopping: application=" + application + ", " + j2ee... | java | private void beginStopping(boolean application, J2EEName j2eeName, Collection<EJBModuleMetaDataImpl> modules) { // F743-26072
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "beginStopping: application=" + application + ", " + j2ee... | [
"private",
"void",
"beginStopping",
"(",
"boolean",
"application",
",",
"J2EEName",
"j2eeName",
",",
"Collection",
"<",
"EJBModuleMetaDataImpl",
">",
"modules",
")",
"{",
"// F743-26072",
"boolean",
"isTraceOn",
"=",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
... | Notification that the application or a module within the application will begin
stopping stopping. This method should never throw an exception.
@param application
<tt>true</tt> if the application is stopping
@param j2eeName
the J2EEName of the application or module, or <tt>null</tt> if application
is true and J2EEName... | [
"Notification",
"that",
"the",
"application",
"or",
"a",
"module",
"within",
"the",
"application",
"will",
"begin",
"stopping",
"stopping",
".",
"This",
"method",
"should",
"never",
"throw",
"an",
"exception",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L1137-L1185 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.stoppingModule | public void stoppingModule(EJBModuleMetaDataImpl mmd) { // F743-26072
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "stoppingModule: " + mmd.getJ2EEName());
// If the application is stopping (rather than a single module)... | java | public void stoppingModule(EJBModuleMetaDataImpl mmd) { // F743-26072
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
Tr.entry(tc, "stoppingModule: " + mmd.getJ2EEName());
// If the application is stopping (rather than a single module)... | [
"public",
"void",
"stoppingModule",
"(",
"EJBModuleMetaDataImpl",
"mmd",
")",
"{",
"// F743-26072",
"boolean",
"isTraceOn",
"=",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
";",
"if",
"(",
"isTraceOn",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")"... | Notification that a module within this application will begin stopping. This method
should never throw an exception.
@param mmd
the module | [
"Notification",
"that",
"a",
"module",
"within",
"this",
"application",
"will",
"begin",
"stopping",
".",
"This",
"method",
"should",
"never",
"throw",
"an",
"exception",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L1194-L1218 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.stopping | public void stopping() {
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isDebugEnabled())
Tr.debug(tc, "stopping");
J2EEName j2eeName = ivApplicationMetaData == null ? null : ivApplicationMetaData.getJ2EEName();
beginStopping(true, j2eeName, iv... | java | public void stopping() {
boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isDebugEnabled())
Tr.debug(tc, "stopping");
J2EEName j2eeName = ivApplicationMetaData == null ? null : ivApplicationMetaData.getJ2EEName();
beginStopping(true, j2eeName, iv... | [
"public",
"void",
"stopping",
"(",
")",
"{",
"boolean",
"isTraceOn",
"=",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
";",
"if",
"(",
"isTraceOn",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"Tr",
".",
"debug",
"(",
"tc",
",",
"\"stoppi... | Notification that the application will begin stopping. | [
"Notification",
"that",
"the",
"application",
"will",
"begin",
"stopping",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L1223-L1230 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java | EJBApplicationMetaData.validateVersionedModuleBaseName | void validateVersionedModuleBaseName(String appBaseName, String modBaseName) {
for (EJBModuleMetaDataImpl ejbMMD : ivModules) {
String versionedAppBaseName = ejbMMD.ivVersionedAppBaseName;
if (versionedAppBaseName != null && !versionedAppBaseName.equals(appBaseName)) {
th... | java | void validateVersionedModuleBaseName(String appBaseName, String modBaseName) {
for (EJBModuleMetaDataImpl ejbMMD : ivModules) {
String versionedAppBaseName = ejbMMD.ivVersionedAppBaseName;
if (versionedAppBaseName != null && !versionedAppBaseName.equals(appBaseName)) {
th... | [
"void",
"validateVersionedModuleBaseName",
"(",
"String",
"appBaseName",
",",
"String",
"modBaseName",
")",
"{",
"for",
"(",
"EJBModuleMetaDataImpl",
"ejbMMD",
":",
"ivModules",
")",
"{",
"String",
"versionedAppBaseName",
"=",
"ejbMMD",
".",
"ivVersionedAppBaseName",
... | F54184.1 F54184.2 | [
"F54184",
".",
"1",
"F54184",
".",
"2"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/csi/EJBApplicationMetaData.java#L1266-L1278 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.common/src/com/ibm/ws/sib/ra/impl/SibRaBrowserSession.java | SibRaBrowserSession.next | public SIBusMessage next() throws SISessionDroppedException, SIConnectionDroppedException, SISessionUnavailableException, SIConnectionUnavailableException, SIConnectionLostException, SINotAuthorizedException, SIResourceException, SIErrorException {
checkValid();
return _delegate.next();
} | java | public SIBusMessage next() throws SISessionDroppedException, SIConnectionDroppedException, SISessionUnavailableException, SIConnectionUnavailableException, SIConnectionLostException, SINotAuthorizedException, SIResourceException, SIErrorException {
checkValid();
return _delegate.next();
} | [
"public",
"SIBusMessage",
"next",
"(",
")",
"throws",
"SISessionDroppedException",
",",
"SIConnectionDroppedException",
",",
"SISessionUnavailableException",
",",
"SIConnectionUnavailableException",
",",
"SIConnectionLostException",
",",
"SINotAuthorizedException",
",",
"SIResour... | Browses the next message. Checks that the session is valid and then
delegates.
@throws SIConnectionUnavailableException
if the session is not valid
@throws SIErrorException
if the delegation fails
@throws SIResourceException
if the delegation fails
@throws SINotAuthorizedException
if the delegation fails
@throws SICon... | [
"Browses",
"the",
"next",
"message",
".",
"Checks",
"that",
"the",
"session",
"is",
"valid",
"and",
"then",
"delegates",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.common/src/com/ibm/ws/sib/ra/impl/SibRaBrowserSession.java#L95-L101 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.common/src/com/ibm/ws/sib/ra/impl/SibRaBrowserSession.java | SibRaBrowserSession.reset | public void reset() throws SISessionDroppedException, SIConnectionDroppedException, SISessionUnavailableException, SIConnectionUnavailableException, SIConnectionLostException, SIResourceException, SIErrorException {
checkValid();
_delegate.reset();
} | java | public void reset() throws SISessionDroppedException, SIConnectionDroppedException, SISessionUnavailableException, SIConnectionUnavailableException, SIConnectionLostException, SIResourceException, SIErrorException {
checkValid();
_delegate.reset();
} | [
"public",
"void",
"reset",
"(",
")",
"throws",
"SISessionDroppedException",
",",
"SIConnectionDroppedException",
",",
"SISessionUnavailableException",
",",
"SIConnectionUnavailableException",
",",
"SIConnectionLostException",
",",
"SIResourceException",
",",
"SIErrorException",
... | Resets the browse cursor. Checks that the session is valid and then
delegates.
@throws SIConnectionUnavailableException
if the session is not valid
@throws SIErrorException
if the delegation fails
@throws SIResourceException
if the delegation fails
@throws SIConnectionLostException
if the delegation fails
@throws SISe... | [
"Resets",
"the",
"browse",
"cursor",
".",
"Checks",
"that",
"the",
"session",
"is",
"valid",
"and",
"then",
"delegates",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.common/src/com/ibm/ws/sib/ra/impl/SibRaBrowserSession.java#L122-L128 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.remote.portable.core/src/com/ibm/ws/ejb/portable/EJBMetaDataImpl.java | EJBMetaDataImpl.writeObject | private void writeObject(ObjectOutputStream out) throws IOException
{
try
{
out.defaultWriteObject();
// p113380 - start of change
// write out the header information
out.write(EYECATCHER);
out.writeShort(PLATFORM);
out.writeSh... | java | private void writeObject(ObjectOutputStream out) throws IOException
{
try
{
out.defaultWriteObject();
// p113380 - start of change
// write out the header information
out.write(EYECATCHER);
out.writeShort(PLATFORM);
out.writeSh... | [
"private",
"void",
"writeObject",
"(",
"ObjectOutputStream",
"out",
")",
"throws",
"IOException",
"{",
"try",
"{",
"out",
".",
"defaultWriteObject",
"(",
")",
";",
"// p113380 - start of change",
"// write out the header information",
"out",
".",
"write",
"(",
"EYECAT... | We will implement writeObject in order to controll
the marshalling for this object.
Note, this is overriding the default implementation of
the Serializable interface.
@see java.io.Serializable | [
"We",
"will",
"implement",
"writeObject",
"in",
"order",
"to",
"controll",
"the",
"marshalling",
"for",
"this",
"object",
".",
"Note",
"this",
"is",
"overriding",
"the",
"default",
"implementation",
"of",
"the",
"Serializable",
"interface",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.remote.portable.core/src/com/ibm/ws/ejb/portable/EJBMetaDataImpl.java#L381-L454 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/JFapChannelConstants.java | JFapChannelConstants.segmentToLayout | public static TransmissionLayout segmentToLayout(int segment)
{
TransmissionLayout layout = XMIT_LAYOUT_UNKNOWN;
switch (segment)
{
case 0x00:
layout = XMIT_LAYOUT_UNKNOWN;
break;
case JFapChannelConstants.SEGMENT_HEARTBEAT:
... | java | public static TransmissionLayout segmentToLayout(int segment)
{
TransmissionLayout layout = XMIT_LAYOUT_UNKNOWN;
switch (segment)
{
case 0x00:
layout = XMIT_LAYOUT_UNKNOWN;
break;
case JFapChannelConstants.SEGMENT_HEARTBEAT:
... | [
"public",
"static",
"TransmissionLayout",
"segmentToLayout",
"(",
"int",
"segment",
")",
"{",
"TransmissionLayout",
"layout",
"=",
"XMIT_LAYOUT_UNKNOWN",
";",
"switch",
"(",
"segment",
")",
"{",
"case",
"0x00",
":",
"layout",
"=",
"XMIT_LAYOUT_UNKNOWN",
";",
"brea... | Converts from a segment ID to a layout for the transmission.
@param segment
@return Returns the layout for the segment. | [
"Converts",
"from",
"a",
"segment",
"ID",
"to",
"a",
"layout",
"for",
"the",
"transmission",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/JFapChannelConstants.java#L353-L381 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/JFapChannelConstants.java | JFapChannelConstants.getSegmentName | public static String getSegmentName(int segmentType)
{
String segmentName = "(Unknown segment type)";
segmentName = segValues.get(segmentType);
if (segmentName == null)
segmentName = "(Unknown segment type)";
return segmentName;
} | java | public static String getSegmentName(int segmentType)
{
String segmentName = "(Unknown segment type)";
segmentName = segValues.get(segmentType);
if (segmentName == null)
segmentName = "(Unknown segment type)";
return segmentName;
} | [
"public",
"static",
"String",
"getSegmentName",
"(",
"int",
"segmentType",
")",
"{",
"String",
"segmentName",
"=",
"\"(Unknown segment type)\"",
";",
"segmentName",
"=",
"segValues",
".",
"get",
"(",
"segmentType",
")",
";",
"if",
"(",
"segmentName",
"==",
"null... | This method can be used to return the actual segment
name for a given segment type.
@param segmentType The segment number.
@return Returns the String name of this segment. | [
"This",
"method",
"can",
"be",
"used",
"to",
"return",
"the",
"actual",
"segment",
"name",
"for",
"a",
"given",
"segment",
"type",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/JFapChannelConstants.java#L749-L759 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.config/src/com/ibm/ws/config/xml/internal/ConfigUpdater.java | ConfigUpdater.updateConfiguration | private boolean updateConfiguration(EvaluationResult result, ConfigurationInfo info, Collection<ConfigurationInfo> infos,
boolean encourageUpdates) throws ConfigUpdateException {
//encourageUpdates is overruled by metatype declining nested notifications.
encourag... | java | private boolean updateConfiguration(EvaluationResult result, ConfigurationInfo info, Collection<ConfigurationInfo> infos,
boolean encourageUpdates) throws ConfigUpdateException {
//encourageUpdates is overruled by metatype declining nested notifications.
encourag... | [
"private",
"boolean",
"updateConfiguration",
"(",
"EvaluationResult",
"result",
",",
"ConfigurationInfo",
"info",
",",
"Collection",
"<",
"ConfigurationInfo",
">",
"infos",
",",
"boolean",
"encourageUpdates",
")",
"throws",
"ConfigUpdateException",
"{",
"//encourageUpdate... | Recursively updates the configuration in config admin
@param encourageUpdates whether to update the configuration if not discouraged in metatype even with no nested or property updates.
@return true if there were any updates to this element or any nested, unhidden elements or updates encouraged and not hidden. | [
"Recursively",
"updates",
"the",
"configuration",
"in",
"config",
"admin"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.config/src/com/ibm/ws/config/xml/internal/ConfigUpdater.java#L206-L287 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.config/src/com/ibm/ws/config/xml/internal/ConfigUpdater.java | ConfigUpdater.massageNewConfig | private static Dictionary<String, Object> massageNewConfig(Dictionary<String, Object> oldProps, Dictionary<String, Object> newProps) {
ConfigurationDictionary ret = new ConfigurationDictionary();
if (oldProps != null) {
for (Enumeration<String> keyItr = oldProps.keys(); keyItr.hasMoreElemen... | java | private static Dictionary<String, Object> massageNewConfig(Dictionary<String, Object> oldProps, Dictionary<String, Object> newProps) {
ConfigurationDictionary ret = new ConfigurationDictionary();
if (oldProps != null) {
for (Enumeration<String> keyItr = oldProps.keys(); keyItr.hasMoreElemen... | [
"private",
"static",
"Dictionary",
"<",
"String",
",",
"Object",
">",
"massageNewConfig",
"(",
"Dictionary",
"<",
"String",
",",
"Object",
">",
"oldProps",
",",
"Dictionary",
"<",
"String",
",",
"Object",
">",
"newProps",
")",
"{",
"ConfigurationDictionary",
"... | Return a new config dictionary with initial "hidden" keys and values from
o,
then add all keys and values from n to the new config dictionary and
return.
If returning dictionary is empty, return null instead.
@param o
@param n
@return Dictionary | [
"Return",
"a",
"new",
"config",
"dictionary",
"with",
"initial",
"hidden",
"keys",
"and",
"values",
"from",
"o",
"then",
"add",
"all",
"keys",
"and",
"values",
"from",
"n",
"to",
"the",
"new",
"config",
"dictionary",
"and",
"return",
".",
"If",
"returning"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.config/src/com/ibm/ws/config/xml/internal/ConfigUpdater.java#L300-L328 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/richclient/buffer/impl/RichByteBufferImpl.java | RichByteBufferImpl.reset | void reset(com.ibm.wsspi.bytebuffer.WsByteBuffer buff, RichByteBufferPool p)
{
this.buffer = buff;
this.pool = p;
} | java | void reset(com.ibm.wsspi.bytebuffer.WsByteBuffer buff, RichByteBufferPool p)
{
this.buffer = buff;
this.pool = p;
} | [
"void",
"reset",
"(",
"com",
".",
"ibm",
".",
"wsspi",
".",
"bytebuffer",
".",
"WsByteBuffer",
"buff",
",",
"RichByteBufferPool",
"p",
")",
"{",
"this",
".",
"buffer",
"=",
"buff",
";",
"this",
".",
"pool",
"=",
"p",
";",
"}"
] | Resets the buffer with a new underlying buffer.
@param buff
@param p | [
"Resets",
"the",
"buffer",
"with",
"a",
"new",
"underlying",
"buffer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/richclient/buffer/impl/RichByteBufferImpl.java#L42-L46 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.microprofile.faulttolerance.2.0/src/com/ibm/ws/microprofile/faulttolerance20/impl/FutureShell.java | FutureShell.setDelegate | public synchronized void setDelegate(Future<V> delegate) {
if (delegateHolder.isCancelled()) {
delegate.cancel(mayInterruptWhenCancellingDelegate);
} else {
this.delegate = delegate;
delegateHolder.complete(delegate);
}
} | java | public synchronized void setDelegate(Future<V> delegate) {
if (delegateHolder.isCancelled()) {
delegate.cancel(mayInterruptWhenCancellingDelegate);
} else {
this.delegate = delegate;
delegateHolder.complete(delegate);
}
} | [
"public",
"synchronized",
"void",
"setDelegate",
"(",
"Future",
"<",
"V",
">",
"delegate",
")",
"{",
"if",
"(",
"delegateHolder",
".",
"isCancelled",
"(",
")",
")",
"{",
"delegate",
".",
"cancel",
"(",
"mayInterruptWhenCancellingDelegate",
")",
";",
"}",
"el... | Set the Future to delegate calls to
@param delegate the delegate future | [
"Set",
"the",
"Future",
"to",
"delegate",
"calls",
"to"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.microprofile.faulttolerance.2.0/src/com/ibm/ws/microprofile/faulttolerance20/impl/FutureShell.java#L57-L64 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security/src/com/ibm/ws/security/authentication/utility/SubjectHelper.java | SubjectHelper.isUnauthenticated | public boolean isUnauthenticated(Subject subject) {
if (subject == null) {
return true;
}
WSCredential wsCred = getWSCredential(subject);
if (wsCred == null) {
return true;
} else {
return wsCred.isUnauthenticated();
}
} | java | public boolean isUnauthenticated(Subject subject) {
if (subject == null) {
return true;
}
WSCredential wsCred = getWSCredential(subject);
if (wsCred == null) {
return true;
} else {
return wsCred.isUnauthenticated();
}
} | [
"public",
"boolean",
"isUnauthenticated",
"(",
"Subject",
"subject",
")",
"{",
"if",
"(",
"subject",
"==",
"null",
")",
"{",
"return",
"true",
";",
"}",
"WSCredential",
"wsCred",
"=",
"getWSCredential",
"(",
"subject",
")",
";",
"if",
"(",
"wsCred",
"==",
... | Check whether the subject is un-authenticated or not.
@param subject {@code null} is supported.
@return Returns {@code true} if the Subject is either null
or the UNAUTHENTICATED Subject. {@code false} otherwise. | [
"Check",
"whether",
"the",
"subject",
"is",
"un",
"-",
"authenticated",
"or",
"not",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security/src/com/ibm/ws/security/authentication/utility/SubjectHelper.java#L47-L58 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security/src/com/ibm/ws/security/authentication/utility/SubjectHelper.java | SubjectHelper.getRealm | public String getRealm(Subject subject) throws Exception {
String realm = null;
WSCredential credential = getWSCredential(subject);
if (credential != null) {
realm = credential.getRealmName();
}
return realm;
} | java | public String getRealm(Subject subject) throws Exception {
String realm = null;
WSCredential credential = getWSCredential(subject);
if (credential != null) {
realm = credential.getRealmName();
}
return realm;
} | [
"public",
"String",
"getRealm",
"(",
"Subject",
"subject",
")",
"throws",
"Exception",
"{",
"String",
"realm",
"=",
"null",
";",
"WSCredential",
"credential",
"=",
"getWSCredential",
"(",
"subject",
")",
";",
"if",
"(",
"credential",
"!=",
"null",
")",
"{",
... | Gets the realm from the subjects' WSCredential.
@param subject {@code null} is not supported.
@return | [
"Gets",
"the",
"realm",
"from",
"the",
"subjects",
"WSCredential",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security/src/com/ibm/ws/security/authentication/utility/SubjectHelper.java#L66-L73 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security/src/com/ibm/ws/security/authentication/utility/SubjectHelper.java | SubjectHelper.getGSSCredentialFromSubject | public static GSSCredential getGSSCredentialFromSubject(final Subject subject) {
if (subject == null) {
return null;
}
GSSCredential gssCredential = AccessController.doPrivileged(new PrivilegedAction<GSSCredential>() {
@Override
public GSSCredential run() {
... | java | public static GSSCredential getGSSCredentialFromSubject(final Subject subject) {
if (subject == null) {
return null;
}
GSSCredential gssCredential = AccessController.doPrivileged(new PrivilegedAction<GSSCredential>() {
@Override
public GSSCredential run() {
... | [
"public",
"static",
"GSSCredential",
"getGSSCredentialFromSubject",
"(",
"final",
"Subject",
"subject",
")",
"{",
"if",
"(",
"subject",
"==",
"null",
")",
"{",
"return",
"null",
";",
"}",
"GSSCredential",
"gssCredential",
"=",
"AccessController",
".",
"doPrivilege... | Gets a GSSCredential from a Subject | [
"Gets",
"a",
"GSSCredential",
"from",
"a",
"Subject"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security/src/com/ibm/ws/security/authentication/utility/SubjectHelper.java#L154-L181 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security/src/com/ibm/ws/security/authentication/utility/SubjectHelper.java | SubjectHelper.createNewHashtableInSubject | @Sensitive
public Hashtable<String, Object> createNewHashtableInSubject(@Sensitive final Subject subject) {
return AccessController.doPrivileged(new NewHashtablePrivilegedAction(subject));
} | java | @Sensitive
public Hashtable<String, Object> createNewHashtableInSubject(@Sensitive final Subject subject) {
return AccessController.doPrivileged(new NewHashtablePrivilegedAction(subject));
} | [
"@",
"Sensitive",
"public",
"Hashtable",
"<",
"String",
",",
"Object",
">",
"createNewHashtableInSubject",
"(",
"@",
"Sensitive",
"final",
"Subject",
"subject",
")",
"{",
"return",
"AccessController",
".",
"doPrivileged",
"(",
"new",
"NewHashtablePrivilegedAction",
... | Creates a Hashtable of values in the Subject without tracing the Subject.
@param subject {@code null} is not supported.
@return the hashtable containing the properties. | [
"Creates",
"a",
"Hashtable",
"of",
"values",
"in",
"the",
"Subject",
"without",
"tracing",
"the",
"Subject",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security/src/com/ibm/ws/security/authentication/utility/SubjectHelper.java#L264-L267 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security/src/com/ibm/ws/security/authentication/utility/SubjectHelper.java | SubjectHelper.getSensitiveHashtableFromSubject | @Sensitive
public Hashtable<String, ?> getSensitiveHashtableFromSubject(@Sensitive final Subject subject) {
if (System.getSecurityManager() == null) {
return getHashtableFromSubject(subject);
} else {
return AccessController.doPrivileged(new GetHashtablePrivilegedAction(subje... | java | @Sensitive
public Hashtable<String, ?> getSensitiveHashtableFromSubject(@Sensitive final Subject subject) {
if (System.getSecurityManager() == null) {
return getHashtableFromSubject(subject);
} else {
return AccessController.doPrivileged(new GetHashtablePrivilegedAction(subje... | [
"@",
"Sensitive",
"public",
"Hashtable",
"<",
"String",
",",
"?",
">",
"getSensitiveHashtableFromSubject",
"(",
"@",
"Sensitive",
"final",
"Subject",
"subject",
")",
"{",
"if",
"(",
"System",
".",
"getSecurityManager",
"(",
")",
"==",
"null",
")",
"{",
"retu... | Gets a Hashtable of values from the Subject without tracing the Subject or hashtable.
@param subject {@code null} is not supported.
@return the hashtable containing the properties. | [
"Gets",
"a",
"Hashtable",
"of",
"values",
"from",
"the",
"Subject",
"without",
"tracing",
"the",
"Subject",
"or",
"hashtable",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security/src/com/ibm/ws/security/authentication/utility/SubjectHelper.java#L298-L305 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security/src/com/ibm/ws/security/authentication/utility/SubjectHelper.java | SubjectHelper.getSensitiveHashtableFromSubject | @Sensitive
public Hashtable<String, ?> getSensitiveHashtableFromSubject(@Sensitive final Subject subject, @Sensitive final String[] properties) {
return AccessController.doPrivileged(new PrivilegedAction<Hashtable<String, ?>>() {
@Override
public Hashtable<String, ?> run() {
... | java | @Sensitive
public Hashtable<String, ?> getSensitiveHashtableFromSubject(@Sensitive final Subject subject, @Sensitive final String[] properties) {
return AccessController.doPrivileged(new PrivilegedAction<Hashtable<String, ?>>() {
@Override
public Hashtable<String, ?> run() {
... | [
"@",
"Sensitive",
"public",
"Hashtable",
"<",
"String",
",",
"?",
">",
"getSensitiveHashtableFromSubject",
"(",
"@",
"Sensitive",
"final",
"Subject",
"subject",
",",
"@",
"Sensitive",
"final",
"String",
"[",
"]",
"properties",
")",
"{",
"return",
"AccessControll... | Gets a Hashtable of values from the Subject, but do not trace the hashtable
@param subject {@code null} is not supported.
@param properties The properties to get.
@return the hashtable containing the properties. | [
"Gets",
"a",
"Hashtable",
"of",
"values",
"from",
"the",
"Subject",
"but",
"do",
"not",
"trace",
"the",
"hashtable"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security/src/com/ibm/ws/security/authentication/utility/SubjectHelper.java#L350-L376 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsLightTrace.java | CommsLightTrace.traceMessageIds | public static void traceMessageIds(TraceComponent callersTrace, String action, SIMessageHandle[] messageHandles)
{
if ((light_tc.isDebugEnabled() || callersTrace.isDebugEnabled())
&& messageHandles != null) {
// Build our trace string
StringBuffer trcBuffer = new StringBuffer();
t... | java | public static void traceMessageIds(TraceComponent callersTrace, String action, SIMessageHandle[] messageHandles)
{
if ((light_tc.isDebugEnabled() || callersTrace.isDebugEnabled())
&& messageHandles != null) {
// Build our trace string
StringBuffer trcBuffer = new StringBuffer();
t... | [
"public",
"static",
"void",
"traceMessageIds",
"(",
"TraceComponent",
"callersTrace",
",",
"String",
"action",
",",
"SIMessageHandle",
"[",
"]",
"messageHandles",
")",
"{",
"if",
"(",
"(",
"light_tc",
".",
"isDebugEnabled",
"(",
")",
"||",
"callersTrace",
".",
... | Allow tracing of messages and transaction when deleting
@param callersTrace The trace component of the caller
@param action A string (no spaces) provided by the caller to prefix the keyword included in the trace line
@param messageHandles The messages handles to trace | [
"Allow",
"tracing",
"of",
"messages",
"and",
"transaction",
"when",
"deleting"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsLightTrace.java#L100-L124 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsLightTrace.java | CommsLightTrace.traceTransaction | public static void traceTransaction(TraceComponent callersTrace, String action, Object transaction, int commsId, int commsFlags)
{
if (light_tc.isDebugEnabled() || callersTrace.isDebugEnabled()) {
// Build the trace string
String traceText = action + ": " + transaction +
" CommsId:" + co... | java | public static void traceTransaction(TraceComponent callersTrace, String action, Object transaction, int commsId, int commsFlags)
{
if (light_tc.isDebugEnabled() || callersTrace.isDebugEnabled()) {
// Build the trace string
String traceText = action + ": " + transaction +
" CommsId:" + co... | [
"public",
"static",
"void",
"traceTransaction",
"(",
"TraceComponent",
"callersTrace",
",",
"String",
"action",
",",
"Object",
"transaction",
",",
"int",
"commsId",
",",
"int",
"commsFlags",
")",
"{",
"if",
"(",
"light_tc",
".",
"isDebugEnabled",
"(",
")",
"||... | Trace a transaction associated with an action.
@param callersTrace The trace component of the caller
@param action A string (no spaces) provided by the caller to prefix the keyword included in the trace line
@param transaction An optional transaction associated with the action being performed on the message
@param comm... | [
"Trace",
"a",
"transaction",
"associated",
"with",
"an",
"action",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsLightTrace.java#L135-L150 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsLightTrace.java | CommsLightTrace.traceException | public static void traceException(TraceComponent callersTrace, Throwable ex)
{
if (light_tc.isDebugEnabled() || callersTrace.isDebugEnabled()) {
// Find XA completion code if one exists, as this isn't in a normal dump
String xaErrStr = null;
if (ex instanceof XAException) {
XAExce... | java | public static void traceException(TraceComponent callersTrace, Throwable ex)
{
if (light_tc.isDebugEnabled() || callersTrace.isDebugEnabled()) {
// Find XA completion code if one exists, as this isn't in a normal dump
String xaErrStr = null;
if (ex instanceof XAException) {
XAExce... | [
"public",
"static",
"void",
"traceException",
"(",
"TraceComponent",
"callersTrace",
",",
"Throwable",
"ex",
")",
"{",
"if",
"(",
"light_tc",
".",
"isDebugEnabled",
"(",
")",
"||",
"callersTrace",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"// Find XA completion... | Trace an exception.
@param callersTrace The trace component of the caller
@param ex The exception | [
"Trace",
"an",
"exception",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsLightTrace.java#L157-L178 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsLightTrace.java | CommsLightTrace.minimalToString | public static String minimalToString(Object object)
{
return object.getClass().getName() + "@" + Integer.toHexString(System.identityHashCode(object));
} | java | public static String minimalToString(Object object)
{
return object.getClass().getName() + "@" + Integer.toHexString(System.identityHashCode(object));
} | [
"public",
"static",
"String",
"minimalToString",
"(",
"Object",
"object",
")",
"{",
"return",
"object",
".",
"getClass",
"(",
")",
".",
"getName",
"(",
")",
"+",
"\"@\"",
"+",
"Integer",
".",
"toHexString",
"(",
"System",
".",
"identityHashCode",
"(",
"obj... | Util to prevent full dump of the conversation in this class, as that
will print too much data if trace of this class is turned on to
get transaction and msgid information | [
"Util",
"to",
"prevent",
"full",
"dump",
"of",
"the",
"conversation",
"in",
"this",
"class",
"as",
"that",
"will",
"print",
"too",
"much",
"data",
"if",
"trace",
"of",
"this",
"class",
"is",
"turned",
"on",
"to",
"get",
"transaction",
"and",
"msgid",
"in... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsLightTrace.java#L185-L188 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsLightTrace.java | CommsLightTrace.msgToString | public static String msgToString(SIBusMessage message)
{
if (message == null) return STRING_NULL;
return message + "[" + message.getSystemMessageId() + "]";
} | java | public static String msgToString(SIBusMessage message)
{
if (message == null) return STRING_NULL;
return message + "[" + message.getSystemMessageId() + "]";
} | [
"public",
"static",
"String",
"msgToString",
"(",
"SIBusMessage",
"message",
")",
"{",
"if",
"(",
"message",
"==",
"null",
")",
"return",
"STRING_NULL",
";",
"return",
"message",
"+",
"\"[\"",
"+",
"message",
".",
"getSystemMessageId",
"(",
")",
"+",
"\"]\""... | Util to trace the System Message ID of a message along with the default toString | [
"Util",
"to",
"trace",
"the",
"System",
"Message",
"ID",
"of",
"a",
"message",
"along",
"with",
"the",
"default",
"toString"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsLightTrace.java#L193-L197 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ras.instrument/src/com/ibm/ws/ras/instrument/internal/main/LibertyRuntimeTransformer.java | LibertyRuntimeTransformer.retransformClass | private final static void retransformClass(Class<?> clazz) {
if (detailedTransformTrace && tc.isEntryEnabled())
Tr.entry(tc, "retransformClass", clazz);
try {
instrumentation.retransformClasses(clazz);
} catch (Throwable t) {
Tr.error(tc, "INSTRUMENTATION_TRA... | java | private final static void retransformClass(Class<?> clazz) {
if (detailedTransformTrace && tc.isEntryEnabled())
Tr.entry(tc, "retransformClass", clazz);
try {
instrumentation.retransformClasses(clazz);
} catch (Throwable t) {
Tr.error(tc, "INSTRUMENTATION_TRA... | [
"private",
"final",
"static",
"void",
"retransformClass",
"(",
"Class",
"<",
"?",
">",
"clazz",
")",
"{",
"if",
"(",
"detailedTransformTrace",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"retransformClass\"",
","... | Ask the JVM to retransform the class that has recently been enabled for
trace. This class will explicitly call the class loader to load and
initialize the class to work around an IBM JDK issue with hot code replace
during class initialization.
@param clazz the class that needs to be instrumented with entry/exit trace | [
"Ask",
"the",
"JVM",
"to",
"retransform",
"the",
"class",
"that",
"has",
"recently",
"been",
"enabled",
"for",
"trace",
".",
"This",
"class",
"will",
"explicitly",
"call",
"the",
"class",
"loader",
"to",
"load",
"and",
"initialize",
"the",
"class",
"to",
"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ras.instrument/src/com/ibm/ws/ras/instrument/internal/main/LibertyRuntimeTransformer.java#L245-L257 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.common/src/com/ibm/ws/sib/ra/impl/SibRaProducerSession.java | SibRaProducerSession.send | public void send(final SIBusMessage msg, final SITransaction tran)
throws SISessionDroppedException, SIConnectionDroppedException,
SISessionUnavailableException, SIConnectionUnavailableException,
SIConnectionLostException, SILimitExceededException,
SINotAuthorizedExceptio... | java | public void send(final SIBusMessage msg, final SITransaction tran)
throws SISessionDroppedException, SIConnectionDroppedException,
SISessionUnavailableException, SIConnectionUnavailableException,
SIConnectionLostException, SILimitExceededException,
SINotAuthorizedExceptio... | [
"public",
"void",
"send",
"(",
"final",
"SIBusMessage",
"msg",
",",
"final",
"SITransaction",
"tran",
")",
"throws",
"SISessionDroppedException",
",",
"SIConnectionDroppedException",
",",
"SISessionUnavailableException",
",",
"SIConnectionUnavailableException",
",",
"SIConn... | Sends a message. Checks that the session is valid. Maps the transaction
parameter before delegating.
@param msg
the message to send
@param tran
the transaction to send the message under
@throws SIConnectionUnavailableException
if the connection is not valid
@throws SINotPossibleInCurrentConfigurationException
if the d... | [
"Sends",
"a",
"message",
".",
"Checks",
"that",
"the",
"session",
"is",
"valid",
".",
"Maps",
"the",
"transaction",
"parameter",
"before",
"delegating",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.common/src/com/ibm/ws/sib/ra/impl/SibRaProducerSession.java#L109-L121 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/tcpchannel/internal/SocketIOChannel.java | SocketIOChannel.attemptReadFromSocket | protected IOResult attemptReadFromSocket(TCPBaseRequestContext readReq, boolean fromSelector) throws IOException {
IOResult rc = IOResult.NOT_COMPLETE;
TCPReadRequestContextImpl req = (TCPReadRequestContextImpl) readReq;
TCPConnLink conn = req.getTCPConnLink();
long dataRead = 0;
... | java | protected IOResult attemptReadFromSocket(TCPBaseRequestContext readReq, boolean fromSelector) throws IOException {
IOResult rc = IOResult.NOT_COMPLETE;
TCPReadRequestContextImpl req = (TCPReadRequestContextImpl) readReq;
TCPConnLink conn = req.getTCPConnLink();
long dataRead = 0;
... | [
"protected",
"IOResult",
"attemptReadFromSocket",
"(",
"TCPBaseRequestContext",
"readReq",
",",
"boolean",
"fromSelector",
")",
"throws",
"IOException",
"{",
"IOResult",
"rc",
"=",
"IOResult",
".",
"NOT_COMPLETE",
";",
"TCPReadRequestContextImpl",
"req",
"=",
"(",
"TC... | Attempt to read for the socket.
@param readReq
@param fromSelector
@return IOResult
@throws IOException | [
"Attempt",
"to",
"read",
"for",
"the",
"socket",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/tcpchannel/internal/SocketIOChannel.java#L117-L179 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/tcpchannel/internal/SocketIOChannel.java | SocketIOChannel.attemptWriteToSocket | protected IOResult attemptWriteToSocket(TCPBaseRequestContext req) throws IOException {
IOResult rc = IOResult.NOT_COMPLETE;
WsByteBuffer wsBuffArray[] = req.getBuffers();
long bytesWritten = attemptWriteToSocketUsingNIO(req, wsBuffArray);
req.setLastIOAmt(bytesWritten);
if (... | java | protected IOResult attemptWriteToSocket(TCPBaseRequestContext req) throws IOException {
IOResult rc = IOResult.NOT_COMPLETE;
WsByteBuffer wsBuffArray[] = req.getBuffers();
long bytesWritten = attemptWriteToSocketUsingNIO(req, wsBuffArray);
req.setLastIOAmt(bytesWritten);
if (... | [
"protected",
"IOResult",
"attemptWriteToSocket",
"(",
"TCPBaseRequestContext",
"req",
")",
"throws",
"IOException",
"{",
"IOResult",
"rc",
"=",
"IOResult",
".",
"NOT_COMPLETE",
";",
"WsByteBuffer",
"wsBuffArray",
"[",
"]",
"=",
"req",
".",
"getBuffers",
"(",
")",
... | Attempt to write information stored in the active buffers to the network.
@param req
@return IOResult
@throws IOException | [
"Attempt",
"to",
"write",
"information",
"stored",
"in",
"the",
"active",
"buffers",
"to",
"the",
"network",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/tcpchannel/internal/SocketIOChannel.java#L193-L244 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.jaspic/src/com/ibm/ws/security/jaspi/JaspiServiceImpl.java | JaspiServiceImpl.getServerResourceAbsolutePath | static String getServerResourceAbsolutePath(String resourcePath) {
String path = null;
File f = new File(resourcePath);
if (f.isAbsolute()) {
path = resourcePath;
} else {
WsLocationAdmin wla = locationService.getServiceWithException();
if (wla != null... | java | static String getServerResourceAbsolutePath(String resourcePath) {
String path = null;
File f = new File(resourcePath);
if (f.isAbsolute()) {
path = resourcePath;
} else {
WsLocationAdmin wla = locationService.getServiceWithException();
if (wla != null... | [
"static",
"String",
"getServerResourceAbsolutePath",
"(",
"String",
"resourcePath",
")",
"{",
"String",
"path",
"=",
"null",
";",
"File",
"f",
"=",
"new",
"File",
"(",
"resourcePath",
")",
";",
"if",
"(",
"f",
".",
"isAbsolute",
"(",
")",
")",
"{",
"path... | Return the absolute path of the given resource path relative to the
server config dir. If the given resource path is already absolute
then just return it. If the location admin service is not available
then return null.
@param resourcePath path to resource
@return absolute path or null | [
"Return",
"the",
"absolute",
"path",
"of",
"the",
"given",
"resource",
"path",
"relative",
"to",
"the",
"server",
"config",
"dir",
".",
"If",
"the",
"given",
"resource",
"path",
"is",
"already",
"absolute",
"then",
"just",
"return",
"it",
".",
"If",
"the",... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.jaspic/src/com/ibm/ws/security/jaspi/JaspiServiceImpl.java#L199-L210 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.jaspic/src/com/ibm/ws/security/jaspi/JaspiServiceImpl.java | JaspiServiceImpl.getAuthConfigProvider | private AuthConfigProvider getAuthConfigProvider(String appContext) {
AuthConfigProvider provider = null;
AuthConfigFactory providerFactory = getAuthConfigFactory();
if (providerFactory != null) {
if (providerConfigModified &&
providerFactory instanceof ProviderRegist... | java | private AuthConfigProvider getAuthConfigProvider(String appContext) {
AuthConfigProvider provider = null;
AuthConfigFactory providerFactory = getAuthConfigFactory();
if (providerFactory != null) {
if (providerConfigModified &&
providerFactory instanceof ProviderRegist... | [
"private",
"AuthConfigProvider",
"getAuthConfigProvider",
"(",
"String",
"appContext",
")",
"{",
"AuthConfigProvider",
"provider",
"=",
"null",
";",
"AuthConfigFactory",
"providerFactory",
"=",
"getAuthConfigFactory",
"(",
")",
";",
"if",
"(",
"providerFactory",
"!=",
... | Some comment why we're doing this | [
"Some",
"comment",
"why",
"we",
"re",
"doing",
"this"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.jaspic/src/com/ibm/ws/security/jaspi/JaspiServiceImpl.java#L507-L519 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.jaspic/src/com/ibm/ws/security/jaspi/JaspiServiceImpl.java | JaspiServiceImpl.doHashTableLogin | protected Subject doHashTableLogin(Subject clientSubject, JaspiRequest jaspiRequest) throws WSLoginFailedException {
Subject authenticatedSubject = null;
final Hashtable<String, Object> hashTable = getCustomCredentials(clientSubject);
String unauthenticatedSubjectString = UNAUTHENTICATED_ID;
... | java | protected Subject doHashTableLogin(Subject clientSubject, JaspiRequest jaspiRequest) throws WSLoginFailedException {
Subject authenticatedSubject = null;
final Hashtable<String, Object> hashTable = getCustomCredentials(clientSubject);
String unauthenticatedSubjectString = UNAUTHENTICATED_ID;
... | [
"protected",
"Subject",
"doHashTableLogin",
"(",
"Subject",
"clientSubject",
",",
"JaspiRequest",
"jaspiRequest",
")",
"throws",
"WSLoginFailedException",
"{",
"Subject",
"authenticatedSubject",
"=",
"null",
";",
"final",
"Hashtable",
"<",
"String",
",",
"Object",
">"... | Create a WAS Subject using the HashTable obtained from the JASPI provider
@param clientSubject Subject containing the JASPI HashTable
@param jaspiRequest
@return the WAS Subject
@throws WSLoginFailedException | [
"Create",
"a",
"WAS",
"Subject",
"using",
"the",
"HashTable",
"obtained",
"from",
"the",
"JASPI",
"provider"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.jaspic/src/com/ibm/ws/security/jaspi/JaspiServiceImpl.java#L760-L828 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security.wim.base/src/com/ibm/wsspi/security/wim/model/Root.java | Root.getContexts | public List<com.ibm.wsspi.security.wim.model.Context> getContexts() {
if (contexts == null) {
contexts = new ArrayList<com.ibm.wsspi.security.wim.model.Context>();
}
return this.contexts;
} | java | public List<com.ibm.wsspi.security.wim.model.Context> getContexts() {
if (contexts == null) {
contexts = new ArrayList<com.ibm.wsspi.security.wim.model.Context>();
}
return this.contexts;
} | [
"public",
"List",
"<",
"com",
".",
"ibm",
".",
"wsspi",
".",
"security",
".",
"wim",
".",
"model",
".",
"Context",
">",
"getContexts",
"(",
")",
"{",
"if",
"(",
"contexts",
"==",
"null",
")",
"{",
"contexts",
"=",
"new",
"ArrayList",
"<",
"com",
".... | Gets the value of the contexts property.
<p>
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a <CODE>set</CODE> method for the contexts property.
<p>
For example, to add... | [
"Gets",
"the",
"value",
"of",
"the",
"contexts",
"property",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security.wim.base/src/com/ibm/wsspi/security/wim/model/Root.java#L113-L118 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security.wim.base/src/com/ibm/wsspi/security/wim/model/Root.java | Root.getEntities | public List<com.ibm.wsspi.security.wim.model.Entity> getEntities() {
if (entities == null) {
entities = new ArrayList<com.ibm.wsspi.security.wim.model.Entity>();
}
return this.entities;
} | java | public List<com.ibm.wsspi.security.wim.model.Entity> getEntities() {
if (entities == null) {
entities = new ArrayList<com.ibm.wsspi.security.wim.model.Entity>();
}
return this.entities;
} | [
"public",
"List",
"<",
"com",
".",
"ibm",
".",
"wsspi",
".",
"security",
".",
"wim",
".",
"model",
".",
"Entity",
">",
"getEntities",
"(",
")",
"{",
"if",
"(",
"entities",
"==",
"null",
")",
"{",
"entities",
"=",
"new",
"ArrayList",
"<",
"com",
"."... | Gets the value of the entities property.
<p>
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a <CODE>set</CODE> method for the entities property.
<p>
For example, to add... | [
"Gets",
"the",
"value",
"of",
"the",
"entities",
"property",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security.wim.base/src/com/ibm/wsspi/security/wim/model/Root.java#L150-L155 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security.wim.base/src/com/ibm/wsspi/security/wim/model/Root.java | Root.getControls | public List<com.ibm.wsspi.security.wim.model.Control> getControls() {
if (controls == null) {
controls = new ArrayList<com.ibm.wsspi.security.wim.model.Control>();
}
return this.controls;
} | java | public List<com.ibm.wsspi.security.wim.model.Control> getControls() {
if (controls == null) {
controls = new ArrayList<com.ibm.wsspi.security.wim.model.Control>();
}
return this.controls;
} | [
"public",
"List",
"<",
"com",
".",
"ibm",
".",
"wsspi",
".",
"security",
".",
"wim",
".",
"model",
".",
"Control",
">",
"getControls",
"(",
")",
"{",
"if",
"(",
"controls",
"==",
"null",
")",
"{",
"controls",
"=",
"new",
"ArrayList",
"<",
"com",
".... | Gets the value of the controls property.
<p>
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a <CODE>set</CODE> method for the controls property.
<p>
For example, to add... | [
"Gets",
"the",
"value",
"of",
"the",
"controls",
"property",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security.wim.base/src/com/ibm/wsspi/security/wim/model/Root.java#L187-L192 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/impl/PartialTopicMatch.java | PartialTopicMatch.skipForward | private int skipForward(char[] chars, int start, int length) {
if (tc.isEntryEnabled())
tc.entry(this,cclass, "skipForward", new Object[]{chars,new Integer(start),
new Integer(length)});
int ans = length;
for (int i = 0; i < length; i++)
if (chars[start+i] == MatchSpace.SUBTOPIC_SEPARATO... | java | private int skipForward(char[] chars, int start, int length) {
if (tc.isEntryEnabled())
tc.entry(this,cclass, "skipForward", new Object[]{chars,new Integer(start),
new Integer(length)});
int ans = length;
for (int i = 0; i < length; i++)
if (chars[start+i] == MatchSpace.SUBTOPIC_SEPARATO... | [
"private",
"int",
"skipForward",
"(",
"char",
"[",
"]",
"chars",
",",
"int",
"start",
",",
"int",
"length",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"tc",
".",
"entry",
"(",
"this",
",",
"cclass",
",",
"\"skipForward\"",
",",
... | Skip forward to next separator | [
"Skip",
"forward",
"to",
"next",
"separator"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/impl/PartialTopicMatch.java#L118-L131 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/impl/PartialTopicMatch.java | PartialTopicMatch.get | void get(
char[] chars,
int start,
int length,
boolean invert,
MatchSpaceKey msg,
EvalCache cache,
Object contextValue,
SearchResults result)
throws MatchingException, BadMessageFormatMatchingException {
if (tc.isEntryEnabled())
tc.entry(this,cclass, "get", new Object[]{c... | java | void get(
char[] chars,
int start,
int length,
boolean invert,
MatchSpaceKey msg,
EvalCache cache,
Object contextValue,
SearchResults result)
throws MatchingException, BadMessageFormatMatchingException {
if (tc.isEntryEnabled())
tc.entry(this,cclass, "get", new Object[]{c... | [
"void",
"get",
"(",
"char",
"[",
"]",
"chars",
",",
"int",
"start",
",",
"int",
"length",
",",
"boolean",
"invert",
",",
"MatchSpaceKey",
"msg",
",",
"EvalCache",
"cache",
",",
"Object",
"contextValue",
",",
"SearchResults",
"result",
")",
"throws",
"Match... | Override get to rule out NONWILD_MARKER | [
"Override",
"get",
"to",
"rule",
"out",
"NONWILD_MARKER"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/impl/PartialTopicMatch.java#L150-L167 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.javaeesec_fat/fat/src/com/ibm/ws/security/javaeesec/fat_helper/FATHelper.java | FATHelper.reloadApplications | public static void reloadApplications(LibertyServer server, final Set<String> appIdsToReload) throws Exception {
ServerConfiguration config = server.getServerConfiguration().clone();
/*
* Get the apps to remove.
*/
ConfigElementList<Application> toRemove = new ConfigElementLis... | java | public static void reloadApplications(LibertyServer server, final Set<String> appIdsToReload) throws Exception {
ServerConfiguration config = server.getServerConfiguration().clone();
/*
* Get the apps to remove.
*/
ConfigElementList<Application> toRemove = new ConfigElementLis... | [
"public",
"static",
"void",
"reloadApplications",
"(",
"LibertyServer",
"server",
",",
"final",
"Set",
"<",
"String",
">",
"appIdsToReload",
")",
"throws",
"Exception",
"{",
"ServerConfiguration",
"config",
"=",
"server",
".",
"getServerConfiguration",
"(",
")",
"... | Reload select applications.
@throws Exception If there was an error reloading the applications for some unforeseen reason. | [
"Reload",
"select",
"applications",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.javaeesec_fat/fat/src/com/ibm/ws/security/javaeesec/fat_helper/FATHelper.java#L31-L50 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.javaeesec_fat/fat/src/com/ibm/ws/security/javaeesec/fat_helper/FATHelper.java | FATHelper.updateConfigDynamically | public static void updateConfigDynamically(LibertyServer server, ServerConfiguration config, boolean waitForAppToStart) throws Exception {
resetMarksInLogs(server);
server.updateServerConfiguration(config);
server.waitForStringInLogUsingMark("CWWKG001[7-8]I");
if (waitForAppToStart) {
... | java | public static void updateConfigDynamically(LibertyServer server, ServerConfiguration config, boolean waitForAppToStart) throws Exception {
resetMarksInLogs(server);
server.updateServerConfiguration(config);
server.waitForStringInLogUsingMark("CWWKG001[7-8]I");
if (waitForAppToStart) {
... | [
"public",
"static",
"void",
"updateConfigDynamically",
"(",
"LibertyServer",
"server",
",",
"ServerConfiguration",
"config",
",",
"boolean",
"waitForAppToStart",
")",
"throws",
"Exception",
"{",
"resetMarksInLogs",
"(",
"server",
")",
";",
"server",
".",
"updateServer... | This method will the reset the log and trace marks for log and trace searches, update the
configuration and then wait for the server to re-initialize. Optionally it will then wait for the application to start.
@param server The server to update.
@param config The configuration to use.
@param waitForAppToStart Wait for... | [
"This",
"method",
"will",
"the",
"reset",
"the",
"log",
"and",
"trace",
"marks",
"for",
"log",
"and",
"trace",
"searches",
"update",
"the",
"configuration",
"and",
"then",
"wait",
"for",
"the",
"server",
"to",
"re",
"-",
"initialize",
".",
"Optionally",
"i... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.javaeesec_fat/fat/src/com/ibm/ws/security/javaeesec/fat_helper/FATHelper.java#L61-L68 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.javaeesec_fat/fat/src/com/ibm/ws/security/javaeesec/fat_helper/FATHelper.java | FATHelper.resetMarksInLogs | public static void resetMarksInLogs(LibertyServer server) throws Exception {
server.setMarkToEndOfLog(server.getDefaultLogFile());
server.setMarkToEndOfLog(server.getMostRecentTraceFile());
} | java | public static void resetMarksInLogs(LibertyServer server) throws Exception {
server.setMarkToEndOfLog(server.getDefaultLogFile());
server.setMarkToEndOfLog(server.getMostRecentTraceFile());
} | [
"public",
"static",
"void",
"resetMarksInLogs",
"(",
"LibertyServer",
"server",
")",
"throws",
"Exception",
"{",
"server",
".",
"setMarkToEndOfLog",
"(",
"server",
".",
"getDefaultLogFile",
"(",
")",
")",
";",
"server",
".",
"setMarkToEndOfLog",
"(",
"server",
"... | Reset the marks in all Liberty logs.
@param server The server for the logs to reset the marks.
@throws Exception If there was an error resetting the marks. | [
"Reset",
"the",
"marks",
"in",
"all",
"Liberty",
"logs",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.javaeesec_fat/fat/src/com/ibm/ws/security/javaeesec/fat_helper/FATHelper.java#L76-L79 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeAtCatchMethodAdapter.java | ProbeAtCatchMethodAdapter.onHandlerEntry | private void onHandlerEntry() {
if (enabled) {
Type exceptionType = handlers.get(handlerPendingInstruction);
// Clear the pending instruction flag
handlerPendingInstruction = null;
// Filter the interested down to this exception
Set<ProbeListener> fi... | java | private void onHandlerEntry() {
if (enabled) {
Type exceptionType = handlers.get(handlerPendingInstruction);
// Clear the pending instruction flag
handlerPendingInstruction = null;
// Filter the interested down to this exception
Set<ProbeListener> fi... | [
"private",
"void",
"onHandlerEntry",
"(",
")",
"{",
"if",
"(",
"enabled",
")",
"{",
"Type",
"exceptionType",
"=",
"handlers",
".",
"get",
"(",
"handlerPendingInstruction",
")",
";",
"// Clear the pending instruction flag",
"handlerPendingInstruction",
"=",
"null",
"... | Generate the code required to fire a probe out of an exception
handler. | [
"Generate",
"the",
"code",
"required",
"to",
"fire",
"a",
"probe",
"out",
"of",
"an",
"exception",
"handler",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeAtCatchMethodAdapter.java#L123-L171 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/utils/FileLock.java | FileLock.getFileLock | public static FileLock getFileLock(java.io.RandomAccessFile file, String fileName) throws java.io.IOException
{
return (FileLock) Utils.getImpl("com.ibm.ws.objectManager.utils.FileLockImpl",
new Class[] { java.io.RandomAccessFile.class, String.class },
... | java | public static FileLock getFileLock(java.io.RandomAccessFile file, String fileName) throws java.io.IOException
{
return (FileLock) Utils.getImpl("com.ibm.ws.objectManager.utils.FileLockImpl",
new Class[] { java.io.RandomAccessFile.class, String.class },
... | [
"public",
"static",
"FileLock",
"getFileLock",
"(",
"java",
".",
"io",
".",
"RandomAccessFile",
"file",
",",
"String",
"fileName",
")",
"throws",
"java",
".",
"io",
".",
"IOException",
"{",
"return",
"(",
"FileLock",
")",
"Utils",
".",
"getImpl",
"(",
"\"c... | Create a platform specific FileLock instance.
@param file to be locked. The file must be already open.
@param fileName of the file.
@return FileLock for the file.
@throws java.io.IOException | [
"Create",
"a",
"platform",
"specific",
"FileLock",
"instance",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/utils/FileLock.java#L33-L38 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/ViewPoolProcessor.java | ViewPoolProcessor.initialize | public static void initialize(FacesContext context)
{
if (context.isProjectStage(ProjectStage.Production))
{
boolean initialize = true;
String elMode = WebConfigParamUtils.getStringInitParameter(
context.getExternalContext(),
Fa... | java | public static void initialize(FacesContext context)
{
if (context.isProjectStage(ProjectStage.Production))
{
boolean initialize = true;
String elMode = WebConfigParamUtils.getStringInitParameter(
context.getExternalContext(),
Fa... | [
"public",
"static",
"void",
"initialize",
"(",
"FacesContext",
"context",
")",
"{",
"if",
"(",
"context",
".",
"isProjectStage",
"(",
"ProjectStage",
".",
"Production",
")",
")",
"{",
"boolean",
"initialize",
"=",
"true",
";",
"String",
"elMode",
"=",
"WebCo... | This method should be called at startup to decide if a view processor should be
provided or not to the runtime.
@param context | [
"This",
"method",
"should",
"be",
"called",
"at",
"startup",
"to",
"decide",
"if",
"a",
"view",
"processor",
"should",
"be",
"provided",
"or",
"not",
"to",
"the",
"runtime",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/ViewPoolProcessor.java#L162-L212 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/ViewPoolProcessor.java | ViewPoolProcessor.clearTransientAndNonFaceletComponents | private void clearTransientAndNonFaceletComponents(final FacesContext context, final UIComponent component)
{
//Scan children
int childCount = component.getChildCount();
if (childCount > 0)
{
for (int i = 0; i < childCount; i++)
{
UIComponent c... | java | private void clearTransientAndNonFaceletComponents(final FacesContext context, final UIComponent component)
{
//Scan children
int childCount = component.getChildCount();
if (childCount > 0)
{
for (int i = 0; i < childCount; i++)
{
UIComponent c... | [
"private",
"void",
"clearTransientAndNonFaceletComponents",
"(",
"final",
"FacesContext",
"context",
",",
"final",
"UIComponent",
"component",
")",
"{",
"//Scan children",
"int",
"childCount",
"=",
"component",
".",
"getChildCount",
"(",
")",
";",
"if",
"(",
"childC... | Clear all transient components not created by facelets algorithm. In this way,
we ensure the component tree does not have any changes done after markInitialState.
@param context
@param component | [
"Clear",
"all",
"transient",
"components",
"not",
"created",
"by",
"facelets",
"algorithm",
".",
"In",
"this",
"way",
"we",
"ensure",
"the",
"component",
"tree",
"does",
"not",
"have",
"any",
"changes",
"done",
"after",
"markInitialState",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/ViewPoolProcessor.java#L712-L759 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.transaction.cdi/src/com/ibm/tx/jta/cdi/TransactionContext.java | TransactionContext.destroy | @Override
public void destroy() {
if (tc.isEntryEnabled())
Tr.entry(tc, "destroy", this);
// check the TSR is active - otherwise we can trigger exceptions when we
// try to get data out of it.
if (tsr.getTransactionKey() != null) {
final Map<String, InstanceA... | java | @Override
public void destroy() {
if (tc.isEntryEnabled())
Tr.entry(tc, "destroy", this);
// check the TSR is active - otherwise we can trigger exceptions when we
// try to get data out of it.
if (tsr.getTransactionKey() != null) {
final Map<String, InstanceA... | [
"@",
"Override",
"public",
"void",
"destroy",
"(",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"destroy\"",
",",
"this",
")",
";",
"// check the TSR is active - otherwise we can trigger exceptions when w... | Destroy the entire context. This causes @PreDestroy annotated methods to be
called on all the bean instances that this scope has created. | [
"Destroy",
"the",
"entire",
"context",
".",
"This",
"causes"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.transaction.cdi/src/com/ibm/tx/jta/cdi/TransactionContext.java#L186-L216 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl.doPrePhaseActions | @Override
public void doPrePhaseActions(FacesContext facesContext)
{
if (!_flashScopeDisabled)
{
final PhaseId currentPhaseId = facesContext.getCurrentPhaseId();
if (PhaseId.RESTORE_VIEW.equals(currentPhaseId))
{
// restore the redirec... | java | @Override
public void doPrePhaseActions(FacesContext facesContext)
{
if (!_flashScopeDisabled)
{
final PhaseId currentPhaseId = facesContext.getCurrentPhaseId();
if (PhaseId.RESTORE_VIEW.equals(currentPhaseId))
{
// restore the redirec... | [
"@",
"Override",
"public",
"void",
"doPrePhaseActions",
"(",
"FacesContext",
"facesContext",
")",
"{",
"if",
"(",
"!",
"_flashScopeDisabled",
")",
"{",
"final",
"PhaseId",
"currentPhaseId",
"=",
"facesContext",
".",
"getCurrentPhaseId",
"(",
")",
";",
"if",
"(",... | Used to restore the redirect value and the FacesMessages of the previous
request and to manage the flashMap tokens for this request before phase
restore view starts. | [
"Used",
"to",
"restore",
"the",
"redirect",
"value",
"and",
"the",
"FacesMessages",
"of",
"the",
"previous",
"request",
"and",
"to",
"manage",
"the",
"flashMap",
"tokens",
"for",
"this",
"request",
"before",
"phase",
"restore",
"view",
"starts",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L211-L233 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl.isRedirect | @Override
public boolean isRedirect()
{
FacesContext facesContext = FacesContext.getCurrentInstance();
boolean thisRedirect = _isRedirectTrueOnThisRequest(facesContext);
boolean prevRedirect = _isRedirectTrueOnPreviousRequest(facesContext);
boolean executePhase = !PhaseId.RENDER_... | java | @Override
public boolean isRedirect()
{
FacesContext facesContext = FacesContext.getCurrentInstance();
boolean thisRedirect = _isRedirectTrueOnThisRequest(facesContext);
boolean prevRedirect = _isRedirectTrueOnPreviousRequest(facesContext);
boolean executePhase = !PhaseId.RENDER_... | [
"@",
"Override",
"public",
"boolean",
"isRedirect",
"(",
")",
"{",
"FacesContext",
"facesContext",
"=",
"FacesContext",
".",
"getCurrentInstance",
"(",
")",
";",
"boolean",
"thisRedirect",
"=",
"_isRedirectTrueOnThisRequest",
"(",
"facesContext",
")",
";",
"boolean"... | Return the value of this property for the flash for this session.
This must be false unless:
- setRedirect(boolean) was called for the current lifecycle traversal
with true as the argument.
- The current lifecycle traversal for this session is in the "execute"
phase and the previous traversal had setRedirect(boolean) ... | [
"Return",
"the",
"value",
"of",
"this",
"property",
"for",
"the",
"flash",
"for",
"this",
"session",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L288-L297 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl.keep | @Override
public void keep(String key)
{
_checkFlashScopeDisabled();
FacesContext facesContext = FacesContext.getCurrentInstance();
Map<String, Object> requestMap = facesContext.getExternalContext().getRequestMap();
Object value = requestMap.get(key);
// if the k... | java | @Override
public void keep(String key)
{
_checkFlashScopeDisabled();
FacesContext facesContext = FacesContext.getCurrentInstance();
Map<String, Object> requestMap = facesContext.getExternalContext().getRequestMap();
Object value = requestMap.get(key);
// if the k... | [
"@",
"Override",
"public",
"void",
"keep",
"(",
"String",
"key",
")",
"{",
"_checkFlashScopeDisabled",
"(",
")",
";",
"FacesContext",
"facesContext",
"=",
"FacesContext",
".",
"getCurrentInstance",
"(",
")",
";",
"Map",
"<",
"String",
",",
"Object",
">",
"re... | Take a value from the requestMap, or if it does not exist from the
execute FlashMap, and put it on the render FlashMap, so it is visible on
the next request. | [
"Take",
"a",
"value",
"from",
"the",
"requestMap",
"or",
"if",
"it",
"does",
"not",
"exist",
"from",
"the",
"execute",
"FlashMap",
"and",
"put",
"it",
"on",
"the",
"render",
"FlashMap",
"so",
"it",
"is",
"visible",
"on",
"the",
"next",
"request",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L344-L374 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl.putNow | @Override
public void putNow(String key, Object value)
{
_checkFlashScopeDisabled();
FacesContext.getCurrentInstance().getExternalContext()
.getRequestMap().put(key, value);
} | java | @Override
public void putNow(String key, Object value)
{
_checkFlashScopeDisabled();
FacesContext.getCurrentInstance().getExternalContext()
.getRequestMap().put(key, value);
} | [
"@",
"Override",
"public",
"void",
"putNow",
"(",
"String",
"key",
",",
"Object",
"value",
")",
"{",
"_checkFlashScopeDisabled",
"(",
")",
";",
"FacesContext",
".",
"getCurrentInstance",
"(",
")",
".",
"getExternalContext",
"(",
")",
".",
"getRequestMap",
"(",... | This is just an alias for the request scope map. | [
"This",
"is",
"just",
"an",
"alias",
"for",
"the",
"request",
"scope",
"map",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L379-L385 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl.setKeepMessages | @Override
public void setKeepMessages(boolean keepMessages)
{
FacesContext facesContext = FacesContext.getCurrentInstance();
ExternalContext externalContext = facesContext.getExternalContext();
Map<String, Object> requestMap = externalContext.getRequestMap();
requestMap.put(FLASH... | java | @Override
public void setKeepMessages(boolean keepMessages)
{
FacesContext facesContext = FacesContext.getCurrentInstance();
ExternalContext externalContext = facesContext.getExternalContext();
Map<String, Object> requestMap = externalContext.getRequestMap();
requestMap.put(FLASH... | [
"@",
"Override",
"public",
"void",
"setKeepMessages",
"(",
"boolean",
"keepMessages",
")",
"{",
"FacesContext",
"facesContext",
"=",
"FacesContext",
".",
"getCurrentInstance",
"(",
")",
";",
"ExternalContext",
"externalContext",
"=",
"facesContext",
".",
"getExternalC... | If this property is true, the messages should be kept for the next
request, no matter if it is a normal postback case or a POST-
REDIRECT-GET case.
Note that we don't have to store this value for the next request
(like setRedirect()), because we will know if it was true on the
next request, if we can find any stored m... | [
"If",
"this",
"property",
"is",
"true",
"the",
"messages",
"should",
"be",
"kept",
"for",
"the",
"next",
"request",
"no",
"matter",
"if",
"it",
"is",
"a",
"normal",
"postback",
"case",
"or",
"a",
"POST",
"-",
"REDIRECT",
"-",
"GET",
"case",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L412-L419 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl._restoreMessages | @SuppressWarnings("unchecked")
private void _restoreMessages(FacesContext facesContext)
{
List<MessageEntry> messageList = (List<MessageEntry>)
_getExecuteFlashMap(facesContext).get(FLASH_KEEP_MESSAGES_LIST);
if (messageList != null)
{
Iterator<MessageEntry>... | java | @SuppressWarnings("unchecked")
private void _restoreMessages(FacesContext facesContext)
{
List<MessageEntry> messageList = (List<MessageEntry>)
_getExecuteFlashMap(facesContext).get(FLASH_KEEP_MESSAGES_LIST);
if (messageList != null)
{
Iterator<MessageEntry>... | [
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"private",
"void",
"_restoreMessages",
"(",
"FacesContext",
"facesContext",
")",
"{",
"List",
"<",
"MessageEntry",
">",
"messageList",
"=",
"(",
"List",
"<",
"MessageEntry",
">",
")",
"_getExecuteFlashMap",
"(",
... | Restore any saved FacesMessages from the previous request.
Note that we don't need to save the keepMessages value for this request,
because we just have to check if the value for FLASH_KEEP_MESSAGES_LIST exists.
@param facesContext | [
"Restore",
"any",
"saved",
"FacesMessages",
"from",
"the",
"previous",
"request",
".",
"Note",
"that",
"we",
"don",
"t",
"need",
"to",
"save",
"the",
"keepMessages",
"value",
"for",
"this",
"request",
"because",
"we",
"just",
"have",
"to",
"check",
"if",
"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L725-L744 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl._saveRenderFlashMapTokenForNextRequest | private void _saveRenderFlashMapTokenForNextRequest(FacesContext facesContext)
{
ExternalContext externalContext = facesContext.getExternalContext();
String tokenValue = (String) externalContext.getRequestMap().get(FLASH_RENDER_MAP_TOKEN);
ClientWindow clientWindow = externalContext.getClien... | java | private void _saveRenderFlashMapTokenForNextRequest(FacesContext facesContext)
{
ExternalContext externalContext = facesContext.getExternalContext();
String tokenValue = (String) externalContext.getRequestMap().get(FLASH_RENDER_MAP_TOKEN);
ClientWindow clientWindow = externalContext.getClien... | [
"private",
"void",
"_saveRenderFlashMapTokenForNextRequest",
"(",
"FacesContext",
"facesContext",
")",
"{",
"ExternalContext",
"externalContext",
"=",
"facesContext",
".",
"getExternalContext",
"(",
")",
";",
"String",
"tokenValue",
"=",
"(",
"String",
")",
"externalCon... | Take the render map key and store it as a key for the next request.
On the next request we can get it with _getRenderFlashMapTokenFromPreviousRequest().
@param externalContext | [
"Take",
"the",
"render",
"map",
"key",
"and",
"store",
"it",
"as",
"a",
"key",
"for",
"the",
"next",
"request",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L752-L786 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl._getRenderFlashMapTokenFromPreviousRequest | private String _getRenderFlashMapTokenFromPreviousRequest(FacesContext facesContext)
{
ExternalContext externalContext = facesContext.getExternalContext();
String tokenValue = null;
ClientWindow clientWindow = externalContext.getClientWindow();
if (clientWindow != null)
{
... | java | private String _getRenderFlashMapTokenFromPreviousRequest(FacesContext facesContext)
{
ExternalContext externalContext = facesContext.getExternalContext();
String tokenValue = null;
ClientWindow clientWindow = externalContext.getClientWindow();
if (clientWindow != null)
{
... | [
"private",
"String",
"_getRenderFlashMapTokenFromPreviousRequest",
"(",
"FacesContext",
"facesContext",
")",
"{",
"ExternalContext",
"externalContext",
"=",
"facesContext",
".",
"getExternalContext",
"(",
")",
";",
"String",
"tokenValue",
"=",
"null",
";",
"ClientWindow",... | Retrieve the map token of the render map from the previous request.
Returns the value of _saveRenderFlashMapTokenForNextRequest() from
the previous request.
@param externalContext
@return | [
"Retrieve",
"the",
"map",
"token",
"of",
"the",
"render",
"map",
"from",
"the",
"previous",
"request",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L796-L838 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl._getRenderFlashMap | @SuppressWarnings("unchecked")
private Map<String, Object> _getRenderFlashMap(FacesContext context)
{
// Note that we don't have to synchronize here, because it is no problem
// if we create more SubKeyMaps with the same subkey, because they are
// totally equal and point to the same ent... | java | @SuppressWarnings("unchecked")
private Map<String, Object> _getRenderFlashMap(FacesContext context)
{
// Note that we don't have to synchronize here, because it is no problem
// if we create more SubKeyMaps with the same subkey, because they are
// totally equal and point to the same ent... | [
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"private",
"Map",
"<",
"String",
",",
"Object",
">",
"_getRenderFlashMap",
"(",
"FacesContext",
"context",
")",
"{",
"// Note that we don't have to synchronize here, because it is no problem",
"// if we create more SubKeyMaps ... | Return the flash map created on this traversal.
This FlashMap will be the execute FlashMap of the next traversal.
Note that it is supposed that FLASH_RENDER_MAP_TOKEN is initialized
before restore view phase (see doPrePhaseActions() for details).
@param context
@return | [
"Return",
"the",
"flash",
"map",
"created",
"on",
"this",
"traversal",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L932-L949 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl._getExecuteFlashMap | @SuppressWarnings("unchecked")
private Map<String, Object> _getExecuteFlashMap(FacesContext context)
{
// Note that we don't have to synchronize here, because it is no problem
// if we create more SubKeyMaps with the same subkey, because they are
// totally equal and point to the same en... | java | @SuppressWarnings("unchecked")
private Map<String, Object> _getExecuteFlashMap(FacesContext context)
{
// Note that we don't have to synchronize here, because it is no problem
// if we create more SubKeyMaps with the same subkey, because they are
// totally equal and point to the same en... | [
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"private",
"Map",
"<",
"String",
",",
"Object",
">",
"_getExecuteFlashMap",
"(",
"FacesContext",
"context",
")",
"{",
"// Note that we don't have to synchronize here, because it is no problem",
"// if we create more SubKeyMaps... | Return the execute Flash Map.
This FlashMap was the render FlashMap of the previous traversal.
@param context
@return | [
"Return",
"the",
"execute",
"Flash",
"Map",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L959-L976 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl._clearExecuteFlashMap | private void _clearExecuteFlashMap(FacesContext facesContext)
{
Map<String, Object> map = _getExecuteFlashMap(facesContext);
if (!map.isEmpty()) { //RTC 168417 / JIRA MYFACES-3975
//JSF 2.2 invoke PreClearFlashEvent
facesContext.getApplication().publishEvent(facesContext,
... | java | private void _clearExecuteFlashMap(FacesContext facesContext)
{
Map<String, Object> map = _getExecuteFlashMap(facesContext);
if (!map.isEmpty()) { //RTC 168417 / JIRA MYFACES-3975
//JSF 2.2 invoke PreClearFlashEvent
facesContext.getApplication().publishEvent(facesContext,
... | [
"private",
"void",
"_clearExecuteFlashMap",
"(",
"FacesContext",
"facesContext",
")",
"{",
"Map",
"<",
"String",
",",
"Object",
">",
"map",
"=",
"_getExecuteFlashMap",
"(",
"facesContext",
")",
";",
"if",
"(",
"!",
"map",
".",
"isEmpty",
"(",
")",
")",
"{"... | Destroy the execute FlashMap, because it is not needed anymore.
@param facesContext | [
"Destroy",
"the",
"execute",
"FlashMap",
"because",
"it",
"is",
"not",
"needed",
"anymore",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L1062-L1080 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl._createFlashCookie | private Cookie _createFlashCookie(String name, String value, ExternalContext externalContext)
{
Cookie cookie = new Cookie(name, value);
cookie.setMaxAge(-1);
cookie.setPath(_getCookiePath(externalContext));
cookie.setSecure(externalContext.isSecure());
//cookie.setHttpOnly(... | java | private Cookie _createFlashCookie(String name, String value, ExternalContext externalContext)
{
Cookie cookie = new Cookie(name, value);
cookie.setMaxAge(-1);
cookie.setPath(_getCookiePath(externalContext));
cookie.setSecure(externalContext.isSecure());
//cookie.setHttpOnly(... | [
"private",
"Cookie",
"_createFlashCookie",
"(",
"String",
"name",
",",
"String",
"value",
",",
"ExternalContext",
"externalContext",
")",
"{",
"Cookie",
"cookie",
"=",
"new",
"Cookie",
"(",
"name",
",",
"value",
")",
";",
"cookie",
".",
"setMaxAge",
"(",
"-"... | Creates a Cookie with the given name and value.
In addition, it will be configured with maxAge=-1, the current request path and secure value.
@param name
@param value
@param externalContext
@return | [
"Creates",
"a",
"Cookie",
"with",
"the",
"given",
"name",
"and",
"value",
".",
"In",
"addition",
"it",
"will",
"be",
"configured",
"with",
"maxAge",
"=",
"-",
"1",
"the",
"current",
"request",
"path",
"and",
"secure",
"value",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L1177-L1190 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl._getCookiePath | private String _getCookiePath(ExternalContext externalContext)
{
String contextPath = externalContext.getRequestContextPath();
if (contextPath == null || "".equals(contextPath))
{
contextPath = "/";
}
return contextPath;
} | java | private String _getCookiePath(ExternalContext externalContext)
{
String contextPath = externalContext.getRequestContextPath();
if (contextPath == null || "".equals(contextPath))
{
contextPath = "/";
}
return contextPath;
} | [
"private",
"String",
"_getCookiePath",
"(",
"ExternalContext",
"externalContext",
")",
"{",
"String",
"contextPath",
"=",
"externalContext",
".",
"getRequestContextPath",
"(",
")",
";",
"if",
"(",
"contextPath",
"==",
"null",
"||",
"\"\"",
".",
"equals",
"(",
"c... | Returns the path for the Flash-Cookies.
@param externalContext
@return | [
"Returns",
"the",
"path",
"for",
"the",
"Flash",
"-",
"Cookies",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L1197-L1207 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java | FlashImpl._convertToBoolean | private Boolean _convertToBoolean(Object value)
{
Boolean booleanValue;
if (value instanceof Boolean)
{
booleanValue = (Boolean) value;
}
else
{
booleanValue = Boolean.parseBoolean(value.toString());
}
return booleanValue;
} | java | private Boolean _convertToBoolean(Object value)
{
Boolean booleanValue;
if (value instanceof Boolean)
{
booleanValue = (Boolean) value;
}
else
{
booleanValue = Boolean.parseBoolean(value.toString());
}
return booleanValue;
} | [
"private",
"Boolean",
"_convertToBoolean",
"(",
"Object",
"value",
")",
"{",
"Boolean",
"booleanValue",
";",
"if",
"(",
"value",
"instanceof",
"Boolean",
")",
"{",
"booleanValue",
"=",
"(",
"Boolean",
")",
"value",
";",
"}",
"else",
"{",
"booleanValue",
"=",... | Convert the Object to a Boolean.
@param value
@return | [
"Convert",
"the",
"Object",
"to",
"a",
"Boolean",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/context/flash/FlashImpl.java#L1214-L1226 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.kernel.service/src/com/ibm/wsspi/kernel/service/utils/MetatypeUtils.java | MetatypeUtils.evaluateDuration | @FFDCIgnore(NumberFormatException.class)
public static Long evaluateDuration(String strVal, TimeUnit endUnit) {
// If the value is a number, simply return the numeric value as a long
try {
return Long.valueOf(strVal);
} catch (NumberFormatException ex) {
// ignore
... | java | @FFDCIgnore(NumberFormatException.class)
public static Long evaluateDuration(String strVal, TimeUnit endUnit) {
// If the value is a number, simply return the numeric value as a long
try {
return Long.valueOf(strVal);
} catch (NumberFormatException ex) {
// ignore
... | [
"@",
"FFDCIgnore",
"(",
"NumberFormatException",
".",
"class",
")",
"public",
"static",
"Long",
"evaluateDuration",
"(",
"String",
"strVal",
",",
"TimeUnit",
"endUnit",
")",
"{",
"// If the value is a number, simply return the numeric value as a long",
"try",
"{",
"return... | Converts a string value representing a unit of time into a Long value.
@param strVal
A String representing a unit of time.
@param unit
The unit of time that the string value should be converted into
@return Long The value of the string in the desired time unit | [
"Converts",
"a",
"string",
"value",
"representing",
"a",
"unit",
"of",
"time",
"into",
"a",
"Long",
"value",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.service/src/com/ibm/wsspi/kernel/service/utils/MetatypeUtils.java#L495-L506 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.kernel.service/src/com/ibm/wsspi/kernel/service/utils/MetatypeUtils.java | MetatypeUtils.collapseWhitespace | @Trivial
private static String collapseWhitespace(String value) {
final int length = value.length();
for (int i = 0; i < length; ++i) {
if (isSpace(value.charAt(i))) {
return collapse0(value, i, length);
}
}
return value;
} | java | @Trivial
private static String collapseWhitespace(String value) {
final int length = value.length();
for (int i = 0; i < length; ++i) {
if (isSpace(value.charAt(i))) {
return collapse0(value, i, length);
}
}
return value;
} | [
"@",
"Trivial",
"private",
"static",
"String",
"collapseWhitespace",
"(",
"String",
"value",
")",
"{",
"final",
"int",
"length",
"=",
"value",
".",
"length",
"(",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"length",
";",
"++",
"i",
... | Collapses contiguous sequences of whitespace to a single 0x20.
Leading and trailing whitespace is removed. | [
"Collapses",
"contiguous",
"sequences",
"of",
"whitespace",
"to",
"a",
"single",
"0x20",
".",
"Leading",
"and",
"trailing",
"whitespace",
"is",
"removed",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.service/src/com/ibm/wsspi/kernel/service/utils/MetatypeUtils.java#L557-L566 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/jfap/inbound/channel/CommsInboundChain.java | CommsInboundChain.stop | public void stop() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "CommsInboundChain Stop");
//stopchain() first quiesce's(invokes chainQuiesced) depending on the chainQuiesceTimeOut
//Once the chain is quiesced StopChainTask is initiated.Hence we... | java | public void stop() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "CommsInboundChain Stop");
//stopchain() first quiesce's(invokes chainQuiesced) depending on the chainQuiesceTimeOut
//Once the chain is quiesced StopChainTask is initiated.Hence we... | [
"public",
"void",
"stop",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"\"CommsInboundChain Stop\"",
")",
";",
"//stopchain() first ... | stop will get called only from de-activate. | [
"stop",
"will",
"get",
"called",
"only",
"from",
"de",
"-",
"activate",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/jfap/inbound/channel/CommsInboundChain.java#L139-L162 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.mp.jwt/src/com/ibm/ws/security/mp/jwt/tai/TAIRequestHelper.java | TAIRequestHelper.shouldDeferToJwtSso | private boolean shouldDeferToJwtSso(HttpServletRequest req, MicroProfileJwtConfig config, MicroProfileJwtConfig jwtssoConfig) {
if ((!isJwtSsoFeatureActive(config)) && (jwtssoConfig == null)) {
return false;
}
String hdrValue = req.getHeader(Authorization_Header);
if (tc.isD... | java | private boolean shouldDeferToJwtSso(HttpServletRequest req, MicroProfileJwtConfig config, MicroProfileJwtConfig jwtssoConfig) {
if ((!isJwtSsoFeatureActive(config)) && (jwtssoConfig == null)) {
return false;
}
String hdrValue = req.getHeader(Authorization_Header);
if (tc.isD... | [
"private",
"boolean",
"shouldDeferToJwtSso",
"(",
"HttpServletRequest",
"req",
",",
"MicroProfileJwtConfig",
"config",
",",
"MicroProfileJwtConfig",
"jwtssoConfig",
")",
"{",
"if",
"(",
"(",
"!",
"isJwtSsoFeatureActive",
"(",
"config",
")",
")",
"&&",
"(",
"jwtssoCo... | if we don't have a valid bearer header, and jwtsso is active, we should defer. | [
"if",
"we",
"don",
"t",
"have",
"a",
"valid",
"bearer",
"header",
"and",
"jwtsso",
"is",
"active",
"we",
"should",
"defer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.mp.jwt/src/com/ibm/ws/security/mp/jwt/tai/TAIRequestHelper.java#L106-L118 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.kernel.filemonitor/src/com/ibm/ws/kernel/filemonitor/internal/DirectoryUpdateMonitor.java | DirectoryUpdateMonitor.matches | protected boolean matches(File f, boolean isFile) {
if (fileFilter != null) {
if (isFile && directoriesOnly) {
return false;
} else if (!isFile && filesOnly) {
return false;
} else if (fileNameRegex != null) {
Matcher m = fileNa... | java | protected boolean matches(File f, boolean isFile) {
if (fileFilter != null) {
if (isFile && directoriesOnly) {
return false;
} else if (!isFile && filesOnly) {
return false;
} else if (fileNameRegex != null) {
Matcher m = fileNa... | [
"protected",
"boolean",
"matches",
"(",
"File",
"f",
",",
"boolean",
"isFile",
")",
"{",
"if",
"(",
"fileFilter",
"!=",
"null",
")",
"{",
"if",
"(",
"isFile",
"&&",
"directoriesOnly",
")",
"{",
"return",
"false",
";",
"}",
"else",
"if",
"(",
"!",
"is... | Check to see if this is a resource we're monitoring based
on the filter configuration
@param f File (or directory) to match against configured file filters
@param isFile true if this is a file (instead of a directory). This is looked
up once and passed around.
@return true if no filter is configured, or if the file ma... | [
"Check",
"to",
"see",
"if",
"this",
"is",
"a",
"resource",
"we",
"re",
"monitoring",
"based",
"on",
"the",
"filter",
"configuration"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.filemonitor/src/com/ibm/ws/kernel/filemonitor/internal/DirectoryUpdateMonitor.java#L290-L304 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/util/BiLevelCacheMap.java | BiLevelCacheMap.remove | public Object remove(Object key)
{
synchronized (_cacheL2)
{
if (!_cacheL1.containsKey(key) && !_cacheL2.containsKey(key))
{
// nothing to remove
return null;
}
Object retval;
Map newMap;
synchro... | java | public Object remove(Object key)
{
synchronized (_cacheL2)
{
if (!_cacheL1.containsKey(key) && !_cacheL2.containsKey(key))
{
// nothing to remove
return null;
}
Object retval;
Map newMap;
synchro... | [
"public",
"Object",
"remove",
"(",
"Object",
"key",
")",
"{",
"synchronized",
"(",
"_cacheL2",
")",
"{",
"if",
"(",
"!",
"_cacheL1",
".",
"containsKey",
"(",
"key",
")",
"&&",
"!",
"_cacheL2",
".",
"containsKey",
"(",
"key",
")",
")",
"{",
"// nothing ... | This operation is very expensive. A full copy of the Map is created | [
"This",
"operation",
"is",
"very",
"expensive",
".",
"A",
"full",
"copy",
"of",
"the",
"Map",
"is",
"created"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/util/BiLevelCacheMap.java#L189-L214 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.transport.http/src/com/ibm/ws/http/channel/internal/outbound/HttpOSCWriteCallback.java | HttpOSCWriteCallback.complete | public void complete(VirtualConnection vc, TCPWriteRequestContext wsc) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "complete() called: vc=" + vc);
}
HttpOutboundServiceContextImpl mySC = (HttpOutboundServiceContextImpl) vc.getStateMap().get(Call... | java | public void complete(VirtualConnection vc, TCPWriteRequestContext wsc) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "complete() called: vc=" + vc);
}
HttpOutboundServiceContextImpl mySC = (HttpOutboundServiceContextImpl) vc.getStateMap().get(Call... | [
"public",
"void",
"complete",
"(",
"VirtualConnection",
"vc",
",",
"TCPWriteRequestContext",
"wsc",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"debug",
"(",
... | Called by the TCP channel when the write has finished.
@param vc
@param wsc | [
"Called",
"by",
"the",
"TCP",
"channel",
"when",
"the",
"write",
"has",
"finished",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.transport.http/src/com/ibm/ws/http/channel/internal/outbound/HttpOSCWriteCallback.java#L57-L104 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.