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/comms/common/CommsByteBuffer.java | CommsByteBuffer.putString | public synchronized void putString(String item)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putString", item);
checkValid();
// A String is presented by a BIT16 denoting the length followed by encoded bytes. If the
// String is null, then a leng... | java | public synchronized void putString(String item)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putString", item);
checkValid();
// A String is presented by a BIT16 denoting the length followed by encoded bytes. If the
// String is null, then a leng... | [
"public",
"synchronized",
"void",
"putString",
"(",
"String",
"item",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"pu... | Puts a String into the byte buffer encoded in UTF8.
@param item | [
"Puts",
"a",
"String",
"into",
"the",
"byte",
"buffer",
"encoded",
"in",
"UTF8",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L158-L199 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.putSIDestinationAddress | public synchronized void putSIDestinationAddress(SIDestinationAddress destAddr, short fapLevel)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putSIDestinationAddress", new Object[]{destAddr, Short.valueOf(fapLevel)});
checkValid();
String destName = nul... | java | public synchronized void putSIDestinationAddress(SIDestinationAddress destAddr, short fapLevel)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putSIDestinationAddress", new Object[]{destAddr, Short.valueOf(fapLevel)});
checkValid();
String destName = nul... | [
"public",
"synchronized",
"void",
"putSIDestinationAddress",
"(",
"SIDestinationAddress",
"destAddr",
",",
"short",
"fapLevel",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
... | Puts an SIDestinationAddress into the byte buffer.
@param destAddr
@param fapLevel the FAP level of this connection. Used to decide what information to flow down the wire. | [
"Puts",
"an",
"SIDestinationAddress",
"into",
"the",
"byte",
"buffer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L207-L259 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.putSelectionCriteria | public synchronized void putSelectionCriteria(SelectionCriteria criteria)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putSelectionCriteria", criteria);
checkValid();
String discriminator = null;
String selector = null;
short selectorDomain... | java | public synchronized void putSelectionCriteria(SelectionCriteria criteria)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putSelectionCriteria", criteria);
checkValid();
String discriminator = null;
String selector = null;
short selectorDomain... | [
"public",
"synchronized",
"void",
"putSelectionCriteria",
"(",
"SelectionCriteria",
"criteria",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
"... | Puts a SelectionCriteria object into the byte buffer.
@param criteria | [
"Puts",
"a",
"SelectionCriteria",
"object",
"into",
"the",
"byte",
"buffer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L266-L293 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.putXid | public synchronized void putXid(Xid xid)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "putXid", xid);
putInt(xid.getFormatId());
putInt(xid.getGlobalTransactionId().length);
put(xid.getGlobalTransactionId());
putInt(xid.getBranchQualifier().length)... | java | public synchronized void putXid(Xid xid)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "putXid", xid);
putInt(xid.getFormatId());
putInt(xid.getGlobalTransactionId().length);
put(xid.getGlobalTransactionId());
putInt(xid.getBranchQualifier().length)... | [
"public",
"synchronized",
"void",
"putXid",
"(",
"Xid",
"xid",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"\"putXid\"",
",",
"xid",... | Puts an Xid into the Byte Buffer.
@param xid | [
"Puts",
"an",
"Xid",
"into",
"the",
"Byte",
"Buffer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L300-L311 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.putSITransaction | public synchronized void putSITransaction(SITransaction transaction)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "putSITransaction", transaction);
Transaction commsTx = (Transaction)transaction;
int flags = -1;
if (transaction == null)
{
... | java | public synchronized void putSITransaction(SITransaction transaction)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "putSITransaction", transaction);
Transaction commsTx = (Transaction)transaction;
int flags = -1;
if (transaction == null)
{
... | [
"public",
"synchronized",
"void",
"putSITransaction",
"(",
"SITransaction",
"transaction",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"... | Puts an SITransaction into the buffer
@param transaction transaction to "serialize" | [
"Puts",
"an",
"SITransaction",
"into",
"the",
"buffer"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L318-L407 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.putMessgeWithoutEncode | public int putMessgeWithoutEncode(List<DataSlice> messageParts)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putMessgeWithoutEncode", messageParts);
int messageLength = 0;
// Now we have a list of MessagePart objects. First work out the overall length.
... | java | public int putMessgeWithoutEncode(List<DataSlice> messageParts)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putMessgeWithoutEncode", messageParts);
int messageLength = 0;
// Now we have a list of MessagePart objects. First work out the overall length.
... | [
"public",
"int",
"putMessgeWithoutEncode",
"(",
"List",
"<",
"DataSlice",
">",
"messageParts",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
... | This method is used to put a message into the buffer but assumes that the encode has already
been completed. This may be in the case where we would like to send the message in chunks but
we decide that the message would be better sent as an entire message.
@param messageParts
@return Returns the size of the message th... | [
"This",
"method",
"is",
"used",
"to",
"put",
"a",
"message",
"into",
"the",
"buffer",
"but",
"assumes",
"that",
"the",
"encode",
"has",
"already",
"been",
"completed",
".",
"This",
"may",
"be",
"in",
"the",
"case",
"where",
"we",
"would",
"like",
"to",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L453-L483 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.putDataSlice | public synchronized void putDataSlice(DataSlice slice)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putDataSlice", slice);
// First pump in the length
putInt(slice.getLength());
// Now add in the payload
wrap(slice.getBytes(), slice.getOffs... | java | public synchronized void putDataSlice(DataSlice slice)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putDataSlice", slice);
// First pump in the length
putInt(slice.getLength());
// Now add in the payload
wrap(slice.getBytes(), slice.getOffs... | [
"public",
"synchronized",
"void",
"putDataSlice",
"(",
"DataSlice",
"slice",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
... | This method is used to put a data slice into the buffer. A data slice is usually given to us
by MFP as part of a message and this method can be used to add a single slice into the buffer
so that the message can be sent in multiple transmissions. This is preferable to sending the
message in one job lot because we can al... | [
"This",
"method",
"is",
"used",
"to",
"put",
"a",
"data",
"slice",
"into",
"the",
"buffer",
".",
"A",
"data",
"slice",
"is",
"usually",
"given",
"to",
"us",
"by",
"MFP",
"as",
"part",
"of",
"a",
"message",
"and",
"this",
"method",
"can",
"be",
"used"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L560-L571 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.putSIMessageHandles | public synchronized void putSIMessageHandles(SIMessageHandle[] siMsgHandles)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "putSIMessageHandles", siMsgHandles);
putInt(siMsgHandles.length);
for (int handleIndex = 0; handleIndex < siMsgHandles.length; ++handleI... | java | public synchronized void putSIMessageHandles(SIMessageHandle[] siMsgHandles)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "putSIMessageHandles", siMsgHandles);
putInt(siMsgHandles.length);
for (int handleIndex = 0; handleIndex < siMsgHandles.length; ++handleI... | [
"public",
"synchronized",
"void",
"putSIMessageHandles",
"(",
"SIMessageHandle",
"[",
"]",
"siMsgHandles",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"("... | Puts the array of message handles into the buffer.
@param siMsgHandles | [
"Puts",
"the",
"array",
"of",
"message",
"handles",
"into",
"the",
"buffer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L578-L593 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.putException | public synchronized void putException(Throwable throwable, String probeId, Conversation conversation)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putException",
new Object[]{throwable, probeId, conversation});
Throw... | java | public synchronized void putException(Throwable throwable, String probeId, Conversation conversation)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "putException",
new Object[]{throwable, probeId, conversation});
Throw... | [
"public",
"synchronized",
"void",
"putException",
"(",
"Throwable",
"throwable",
",",
"String",
"probeId",
",",
"Conversation",
"conversation",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
"... | This method will fill a buffer list with WsByteBuffer's that when put together form a
packet describing an exception and it's linked exceptions. It will traverse down the cause
exceptions until one of them is null.
@param throwable The exception to examine.
@param probeId The probe id (if any) associated with the top ... | [
"This",
"method",
"will",
"fill",
"a",
"buffer",
"list",
"with",
"WsByteBuffer",
"s",
"that",
"when",
"put",
"together",
"form",
"a",
"packet",
"describing",
"an",
"exception",
"and",
"it",
"s",
"linked",
"exceptions",
".",
"It",
"will",
"traverse",
"down",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L606-L684 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.getString | public synchronized String getString()
{
checkReleased();
String returningString = null;
// Read the length in
short stringLength = receivedBuffer.getShort();
// Allocate the right amount of space for it
byte[] stringBytes = new byte[stringLength];
// And copy the data in
... | java | public synchronized String getString()
{
checkReleased();
String returningString = null;
// Read the length in
short stringLength = receivedBuffer.getShort();
// Allocate the right amount of space for it
byte[] stringBytes = new byte[stringLength];
// And copy the data in
... | [
"public",
"synchronized",
"String",
"getString",
"(",
")",
"{",
"checkReleased",
"(",
")",
";",
"String",
"returningString",
"=",
"null",
";",
"// Read the length in",
"short",
"stringLength",
"=",
"receivedBuffer",
".",
"getShort",
"(",
")",
";",
"// Allocate the... | Reads a String from the current position in the byte buffer.
@return Returns the String | [
"Reads",
"a",
"String",
"from",
"the",
"current",
"position",
"in",
"the",
"byte",
"buffer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L724-L769 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.getSIDestinationAddress | public synchronized SIDestinationAddress getSIDestinationAddress(short fapLevel)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getSIDestinationAddress", Short.valueOf(fapLevel)); //469395
checkReleased();
boolean isFromMediation = false;
/*******... | java | public synchronized SIDestinationAddress getSIDestinationAddress(short fapLevel)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getSIDestinationAddress", Short.valueOf(fapLevel)); //469395
checkReleased();
boolean isFromMediation = false;
/*******... | [
"public",
"synchronized",
"SIDestinationAddress",
"getSIDestinationAddress",
"(",
"short",
"fapLevel",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"thi... | Reads an SIDestinationAddress from the current position in the byte buffer.
@param fapLevel the FAP level of this connection. Used to decide what information has been flowed down the wire.
@return Returns an SIDestinationAddress | [
"Reads",
"an",
"SIDestinationAddress",
"from",
"the",
"current",
"position",
"in",
"the",
"byte",
"buffer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L778-L873 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.getSelectionCriteria | public synchronized SelectionCriteria getSelectionCriteria()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getSelectionCriteria"); //469395
checkReleased();
SelectorDomain selectorDomain = SelectorDomain.getSelectorDomain(getShort());
if (TraceCom... | java | public synchronized SelectionCriteria getSelectionCriteria()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getSelectionCriteria"); //469395
checkReleased();
SelectorDomain selectorDomain = SelectorDomain.getSelectorDomain(getShort());
if (TraceCom... | [
"public",
"synchronized",
"SelectionCriteria",
"getSelectionCriteria",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"... | Reads a SelectionCriteria from the current position in the byte buffer.
@return Returns a SelectionCriteria | [
"Reads",
"a",
"SelectionCriteria",
"from",
"the",
"current",
"position",
"in",
"the",
"byte",
"buffer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L880-L910 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.getXid | public synchronized Xid getXid()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getXid");
checkReleased();
int formatId = getInt();
int glidLength = getInt();
byte[] globalTransactionId = get(glidLength);
int blqfLength = getInt();
byte... | java | public synchronized Xid getXid()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getXid");
checkReleased();
int formatId = getInt();
int glidLength = getInt();
byte[] globalTransactionId = get(glidLength);
int blqfLength = getInt();
byte... | [
"public",
"synchronized",
"Xid",
"getXid",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"\"getXid\"",
")",
";",
"checkReleased",
... | Reads an Xid from the current position in the buffer.
@return Returns an Xid | [
"Reads",
"an",
"Xid",
"from",
"the",
"current",
"position",
"in",
"the",
"buffer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L917-L933 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.getMessage | public synchronized SIBusMessage getMessage(CommsConnection commsConnection)
throws SIResourceException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getMessage");
checkReleased();
SIBusMessage mess = null;
// Now build a JsMessage from the return... | java | public synchronized SIBusMessage getMessage(CommsConnection commsConnection)
throws SIResourceException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getMessage");
checkReleased();
SIBusMessage mess = null;
// Now build a JsMessage from the return... | [
"public",
"synchronized",
"SIBusMessage",
"getMessage",
"(",
"CommsConnection",
"commsConnection",
")",
"throws",
"SIResourceException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr"... | Reads an SIBusMessage from the current position in the buffer.
@param commsConnection
@return Returns the message, or null if the message length indicated no message.
@throws SIResourceException | [
"Reads",
"an",
"SIBusMessage",
"from",
"the",
"current",
"position",
"in",
"the",
"buffer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L944-L1008 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.getSIMessageHandles | public synchronized SIMessageHandle[] getSIMessageHandles()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getSIMessageHandles");
int arrayCount = getInt(); // BIT32 ArrayCount
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) ... | java | public synchronized SIMessageHandle[] getSIMessageHandles()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getSIMessageHandles");
int arrayCount = getInt(); // BIT32 ArrayCount
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) ... | [
"public",
"synchronized",
"SIMessageHandle",
"[",
"]",
"getSIMessageHandles",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
... | Reads some message handles from the buffer.
@return Returns a array of SIMessageHandle objects | [
"Reads",
"some",
"message",
"handles",
"from",
"the",
"buffer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L1060-L1084 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.peekInt | public synchronized int peekInt()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "peekInt");
checkReleased();
int result = 0;
if (receivedBuffer != null)
{
int currentPosition = receivedBuffer.position();
result = receivedBuf... | java | public synchronized int peekInt()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "peekInt");
checkReleased();
int result = 0;
if (receivedBuffer != null)
{
int currentPosition = receivedBuffer.position();
result = receivedBuf... | [
"public",
"synchronized",
"int",
"peekInt",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"peekInt\"",
")",
";",
... | This method will peek at the next 4 bytes in the buffer and return the result as an int.
The buffer position will be unchanged by calling this method.
@return Returns the next four bytes as an int. | [
"This",
"method",
"will",
"peek",
"at",
"the",
"next",
"4",
"bytes",
"in",
"the",
"buffer",
"and",
"return",
"the",
"result",
"as",
"an",
"int",
".",
"The",
"buffer",
"position",
"will",
"be",
"unchanged",
"by",
"calling",
"this",
"method",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L1420-L1436 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.peekLong | public synchronized long peekLong()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "peekLong");
checkReleased();
long result = 0;
if (receivedBuffer != null)
{
int currentPosition = receivedBuffer.position();
result = receive... | java | public synchronized long peekLong()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "peekLong");
checkReleased();
long result = 0;
if (receivedBuffer != null)
{
int currentPosition = receivedBuffer.position();
result = receive... | [
"public",
"synchronized",
"long",
"peekLong",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"peekLong\"",
")",
";"... | This method will peek at the next 8 bytes in the buffer and return the result as a long.
The buffer position will be unchanged by calling this method.
@return Returns the next eight bytes as a long. | [
"This",
"method",
"will",
"peek",
"at",
"the",
"next",
"8",
"bytes",
"in",
"the",
"buffer",
"and",
"return",
"the",
"result",
"as",
"a",
"long",
".",
"The",
"buffer",
"position",
"will",
"be",
"unchanged",
"by",
"calling",
"this",
"method",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L1444-L1460 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.skip | public synchronized void skip(int lengthToSkip)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "skip", lengthToSkip);
checkReleased();
if (receivedBuffer != null)
{
receivedBuffer.position(receivedBuffer.position() + lengthToSkip);
}
... | java | public synchronized void skip(int lengthToSkip)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "skip", lengthToSkip);
checkReleased();
if (receivedBuffer != null)
{
receivedBuffer.position(receivedBuffer.position() + lengthToSkip);
}
... | [
"public",
"synchronized",
"void",
"skip",
"(",
"int",
"lengthToSkip",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"sk... | Skips over the specified number of bytes in the received byte buffer.
@param lengthToSkip | [
"Skips",
"over",
"the",
"specified",
"number",
"of",
"bytes",
"in",
"the",
"received",
"byte",
"buffer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L1467-L1479 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.rewind | public synchronized void rewind()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "rewind");
checkReleased();
if (receivedBuffer != null)
{
receivedBuffer.rewind();
}
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled... | java | public synchronized void rewind()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "rewind");
checkReleased();
if (receivedBuffer != null)
{
receivedBuffer.rewind();
}
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled... | [
"public",
"synchronized",
"void",
"rewind",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"rewind\"",
")",
";",
... | Rewinds the buffer to the beginning of the received data so that the data can be re-read. | [
"Rewinds",
"the",
"buffer",
"to",
"the",
"beginning",
"of",
"the",
"received",
"data",
"so",
"that",
"the",
"data",
"can",
"be",
"re",
"-",
"read",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L1484-L1496 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.encodeFast | public List<DataSlice> encodeFast(AbstractMessage message, CommsConnection commsConnection, Conversation conversation)
throws MessageEncodeFailedException, SIConnectionDroppedException,
IncorrectMessageTypeException, UnsupportedEncodingException, MessageCopyFailedException
{
if (TraceCompone... | java | public List<DataSlice> encodeFast(AbstractMessage message, CommsConnection commsConnection, Conversation conversation)
throws MessageEncodeFailedException, SIConnectionDroppedException,
IncorrectMessageTypeException, UnsupportedEncodingException, MessageCopyFailedException
{
if (TraceCompone... | [
"public",
"List",
"<",
"DataSlice",
">",
"encodeFast",
"(",
"AbstractMessage",
"message",
",",
"CommsConnection",
"commsConnection",
",",
"Conversation",
"conversation",
")",
"throws",
"MessageEncodeFailedException",
",",
"SIConnectionDroppedException",
",",
"IncorrectMessa... | This method actually does the fast encode on a JsMessage message.
@param message The message to encode
@param commsConnection
@param conversation The conversation that the encoded message will be sent
@return Returns a list of MessagePart objects.
@throws SIConnectionDroppedException if the connection has gone at th... | [
"This",
"method",
"actually",
"does",
"the",
"fast",
"encode",
"on",
"a",
"JsMessage",
"message",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L1569-L1632 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.calculateEncodedStringLength | public static int calculateEncodedStringLength(String s)
{
if(TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "calculateEncodedStringLength", s);
final int length;
if(s == null)
{
length = 3;
}
else
{
try
{
... | java | public static int calculateEncodedStringLength(String s)
{
if(TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "calculateEncodedStringLength", s);
final int length;
if(s == null)
{
length = 3;
}
else
{
try
{
... | [
"public",
"static",
"int",
"calculateEncodedStringLength",
"(",
"String",
"s",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"\"calculateE... | Calculates the length in bytes of a String when it is placed inside a CommsByteBuffer via the putString method.
A null String can be passed into this method.
@param s the String to calculate the length of.
@return the number of bytes that the String will take up when encoded. | [
"Calculates",
"the",
"length",
"in",
"bytes",
"of",
"a",
"String",
"when",
"it",
"is",
"placed",
"inside",
"a",
"CommsByteBuffer",
"via",
"the",
"putString",
"method",
".",
"A",
"null",
"String",
"can",
"be",
"passed",
"into",
"this",
"method",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L2119-L2152 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java | CommsByteBuffer.getBoolean | public synchronized boolean getBoolean()
{
final byte value = get();
if(value == CommsConstants.TRUE_BYTE) return true;
else if(value == CommsConstants.FALSE_BYTE) return false;
else throw new IllegalStateException("Unexpected byte: " + value);
} | java | public synchronized boolean getBoolean()
{
final byte value = get();
if(value == CommsConstants.TRUE_BYTE) return true;
else if(value == CommsConstants.FALSE_BYTE) return false;
else throw new IllegalStateException("Unexpected byte: " + value);
} | [
"public",
"synchronized",
"boolean",
"getBoolean",
"(",
")",
"{",
"final",
"byte",
"value",
"=",
"get",
"(",
")",
";",
"if",
"(",
"value",
"==",
"CommsConstants",
".",
"TRUE_BYTE",
")",
"return",
"true",
";",
"else",
"if",
"(",
"value",
"==",
"CommsConst... | Returns the next value in the buffer interpreted as a boolean. Should only be called when
the next byte in the buffer was written by a call to putBoolean.
@return the next value in the buffer interpreted as a boolean. | [
"Returns",
"the",
"next",
"value",
"in",
"the",
"buffer",
"interpreted",
"as",
"a",
"boolean",
".",
"Should",
"only",
"be",
"called",
"when",
"the",
"next",
"byte",
"in",
"the",
"buffer",
"was",
"written",
"by",
"a",
"call",
"to",
"putBoolean",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsByteBuffer.java#L2170-L2176 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/BootstrapConfig.java | BootstrapConfig.assertDirectory | protected File assertDirectory(String dirName, String locName) {
File d = new File(dirName);
if (d.isFile())
throw new LocationException("Path must reference a directory", MessageFormat.format(BootstrapConstants.messages.getString("error.specifiedLocation"), locName,
... | java | protected File assertDirectory(String dirName, String locName) {
File d = new File(dirName);
if (d.isFile())
throw new LocationException("Path must reference a directory", MessageFormat.format(BootstrapConstants.messages.getString("error.specifiedLocation"), locName,
... | [
"protected",
"File",
"assertDirectory",
"(",
"String",
"dirName",
",",
"String",
"locName",
")",
"{",
"File",
"d",
"=",
"new",
"File",
"(",
"dirName",
")",
";",
"if",
"(",
"d",
".",
"isFile",
"(",
")",
")",
"throw",
"new",
"LocationException",
"(",
"\"... | Ensure that the given directory either does not yet exists,
or exists as a directory.
@param dirName
Name/path to directory
@param locName
Symbol/location associated with directory
@return File for directory location
@throws LocationException
if dirName references an existing File (isFile). | [
"Ensure",
"that",
"the",
"given",
"directory",
"either",
"does",
"not",
"yet",
"exists",
"or",
"exists",
"as",
"a",
"directory",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/BootstrapConfig.java#L372-L378 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/BootstrapConfig.java | BootstrapConfig.substituteSymbols | protected void substituteSymbols(Map<String, String> initProps) {
for (Entry<String, String> entry : initProps.entrySet()) {
Object value = entry.getValue();
if (value instanceof String) {
String strValue = (String) value;
Matcher m = SYMBOL_DEF.matcher(st... | java | protected void substituteSymbols(Map<String, String> initProps) {
for (Entry<String, String> entry : initProps.entrySet()) {
Object value = entry.getValue();
if (value instanceof String) {
String strValue = (String) value;
Matcher m = SYMBOL_DEF.matcher(st... | [
"protected",
"void",
"substituteSymbols",
"(",
"Map",
"<",
"String",
",",
"String",
">",
"initProps",
")",
"{",
"for",
"(",
"Entry",
"<",
"String",
",",
"String",
">",
"entry",
":",
"initProps",
".",
"entrySet",
"(",
")",
")",
"{",
"Object",
"value",
"... | Perform substitution of symbols used in config
@param initProps | [
"Perform",
"substitution",
"of",
"symbols",
"used",
"in",
"config"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/BootstrapConfig.java#L748-L765 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/BootstrapConfig.java | BootstrapConfig.checkCleanStart | public boolean checkCleanStart() {
String fwClean = get(BootstrapConstants.INITPROP_OSGI_CLEAN);
if (fwClean != null && fwClean.equals(BootstrapConstants.OSGI_CLEAN_VALUE)) {
return true;
}
String osgiClean = get(BootstrapConstants.OSGI_CLEAN);
return Boolean.valueOf... | java | public boolean checkCleanStart() {
String fwClean = get(BootstrapConstants.INITPROP_OSGI_CLEAN);
if (fwClean != null && fwClean.equals(BootstrapConstants.OSGI_CLEAN_VALUE)) {
return true;
}
String osgiClean = get(BootstrapConstants.OSGI_CLEAN);
return Boolean.valueOf... | [
"public",
"boolean",
"checkCleanStart",
"(",
")",
"{",
"String",
"fwClean",
"=",
"get",
"(",
"BootstrapConstants",
".",
"INITPROP_OSGI_CLEAN",
")",
";",
"if",
"(",
"fwClean",
"!=",
"null",
"&&",
"fwClean",
".",
"equals",
"(",
"BootstrapConstants",
".",
"OSGI_C... | Check osgi clean start properties, ensure set correctly for clean start
@see forceCleanStart | [
"Check",
"osgi",
"clean",
"start",
"properties",
"ensure",
"set",
"correctly",
"for",
"clean",
"start"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/BootstrapConfig.java#L1065-L1073 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/BootstrapConfig.java | BootstrapConfig.generateServerEnv | protected ReturnCode generateServerEnv(boolean generatePassword) {
double jvmLevel;
String s = null;
try {
s = AccessController.doPrivileged(new java.security.PrivilegedExceptionAction<String>() {
@Override
public String run() throws Exception {
... | java | protected ReturnCode generateServerEnv(boolean generatePassword) {
double jvmLevel;
String s = null;
try {
s = AccessController.doPrivileged(new java.security.PrivilegedExceptionAction<String>() {
@Override
public String run() throws Exception {
... | [
"protected",
"ReturnCode",
"generateServerEnv",
"(",
"boolean",
"generatePassword",
")",
"{",
"double",
"jvmLevel",
";",
"String",
"s",
"=",
"null",
";",
"try",
"{",
"s",
"=",
"AccessController",
".",
"doPrivileged",
"(",
"new",
"java",
".",
"security",
".",
... | For Java 8 and newer JVMs, the PermGen command line parameter is no
longer supported. This method checks the Java level and if it is
less than Java 8, it simply returns OK. If it is Java 8 or higher,
this method will attempt to create a server.env file with
@param bootProps
@return | [
"For",
"Java",
"8",
"and",
"newer",
"JVMs",
"the",
"PermGen",
"command",
"line",
"parameter",
"is",
"no",
"longer",
"supported",
".",
"This",
"method",
"checks",
"the",
"Java",
"level",
"and",
"if",
"it",
"is",
"less",
"than",
"Java",
"8",
"it",
"simply"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/BootstrapConfig.java#L1145-L1198 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeMethodAdapter.java | ProbeMethodAdapter.setProbeListeners | protected void setProbeListeners(ProbeImpl probe, Collection<ProbeListener> listeners) {
Set<ProbeListener> enabled = enabledProbes.get(probe);
if (enabled == null) {
enabled = new HashSet<ProbeListener>();
enabledProbes.put(probe, enabled);
}
enabled.addAll(liste... | java | protected void setProbeListeners(ProbeImpl probe, Collection<ProbeListener> listeners) {
Set<ProbeListener> enabled = enabledProbes.get(probe);
if (enabled == null) {
enabled = new HashSet<ProbeListener>();
enabledProbes.put(probe, enabled);
}
enabled.addAll(liste... | [
"protected",
"void",
"setProbeListeners",
"(",
"ProbeImpl",
"probe",
",",
"Collection",
"<",
"ProbeListener",
">",
"listeners",
")",
"{",
"Set",
"<",
"ProbeListener",
">",
"enabled",
"=",
"enabledProbes",
".",
"get",
"(",
"probe",
")",
";",
"if",
"(",
"enabl... | Associate a collection of listeners with the specified probe.
@param probe the injected probe
@param listeners the listeners that will receive events from the
injected probe | [
"Associate",
"a",
"collection",
"of",
"listeners",
"with",
"the",
"specified",
"probe",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeMethodAdapter.java#L216-L223 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeMethodAdapter.java | ProbeMethodAdapter.getProbeListeners | protected Set<ProbeListener> getProbeListeners(ProbeImpl probe) {
Set<ProbeListener> listeners = enabledProbes.get(probe);
if (listeners == null) {
listeners = Collections.emptySet();
}
return listeners;
} | java | protected Set<ProbeListener> getProbeListeners(ProbeImpl probe) {
Set<ProbeListener> listeners = enabledProbes.get(probe);
if (listeners == null) {
listeners = Collections.emptySet();
}
return listeners;
} | [
"protected",
"Set",
"<",
"ProbeListener",
">",
"getProbeListeners",
"(",
"ProbeImpl",
"probe",
")",
"{",
"Set",
"<",
"ProbeListener",
">",
"listeners",
"=",
"enabledProbes",
".",
"get",
"(",
"probe",
")",
";",
"if",
"(",
"listeners",
"==",
"null",
")",
"{"... | Get the set of probe listeners that have been associated with the
specified probe by this adapter.
@param probe the associated probe
@return the set of listeners associated with {@code probe} | [
"Get",
"the",
"set",
"of",
"probe",
"listeners",
"that",
"have",
"been",
"associated",
"with",
"the",
"specified",
"probe",
"by",
"this",
"adapter",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeMethodAdapter.java#L242-L248 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeMethodAdapter.java | ProbeMethodAdapter.unbox | protected void unbox(final Type type) {
switch (type.getSort()) {
case Type.BOOLEAN:
visitTypeInsn(CHECKCAST, "java/lang/Boolean");
visitMethodInsn(INVOKEVIRTUAL, "java/lang/Boolean", "booleanValue", "()Z", false);
break;
case Type.BYTE:
... | java | protected void unbox(final Type type) {
switch (type.getSort()) {
case Type.BOOLEAN:
visitTypeInsn(CHECKCAST, "java/lang/Boolean");
visitMethodInsn(INVOKEVIRTUAL, "java/lang/Boolean", "booleanValue", "()Z", false);
break;
case Type.BYTE:
... | [
"protected",
"void",
"unbox",
"(",
"final",
"Type",
"type",
")",
"{",
"switch",
"(",
"type",
".",
"getSort",
"(",
")",
")",
"{",
"case",
"Type",
".",
"BOOLEAN",
":",
"visitTypeInsn",
"(",
"CHECKCAST",
",",
"\"java/lang/Boolean\"",
")",
";",
"visitMethodIns... | Generate the instruction sequence needed to "unbox" the boxed data at
the top of stack.
@param type the <code>Type</code> associated with the unboxed data | [
"Generate",
"the",
"instruction",
"sequence",
"needed",
"to",
"unbox",
"the",
"boxed",
"data",
"at",
"the",
"top",
"of",
"stack",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeMethodAdapter.java#L433-L474 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeMethodAdapter.java | ProbeMethodAdapter.replaceArgsWithArray | void replaceArgsWithArray(String desc) {
Type[] methodArgs = Type.getArgumentTypes(desc);
createObjectArray(methodArgs.length); // [target] args... array
for (int i = methodArgs.length - 1; i >= 0; i--) {
if (methodArgs[i].getSize() == 2) {
visitInsn(DUP_X2); // [targ... | java | void replaceArgsWithArray(String desc) {
Type[] methodArgs = Type.getArgumentTypes(desc);
createObjectArray(methodArgs.length); // [target] args... array
for (int i = methodArgs.length - 1; i >= 0; i--) {
if (methodArgs[i].getSize() == 2) {
visitInsn(DUP_X2); // [targ... | [
"void",
"replaceArgsWithArray",
"(",
"String",
"desc",
")",
"{",
"Type",
"[",
"]",
"methodArgs",
"=",
"Type",
".",
"getArgumentTypes",
"(",
"desc",
")",
";",
"createObjectArray",
"(",
"methodArgs",
".",
"length",
")",
";",
"// [target] args... array",
"for",
"... | Create an object array and store the target method arguments in it.
@param desc the target method descriptor | [
"Create",
"an",
"object",
"array",
"and",
"store",
"the",
"target",
"method",
"arguments",
"in",
"it",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeMethodAdapter.java#L510-L528 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeMethodAdapter.java | ProbeMethodAdapter.restoreArgsFromArray | void restoreArgsFromArray(String desc) {
Type[] methodArgs = Type.getArgumentTypes(desc);
for (int i = 0; i < methodArgs.length; i++) { // [target] array
visitInsn(DUP); // [target] args... array array
visitLdcInsn(Integer.valueOf(i)); // [target] args... array array idx
... | java | void restoreArgsFromArray(String desc) {
Type[] methodArgs = Type.getArgumentTypes(desc);
for (int i = 0; i < methodArgs.length; i++) { // [target] array
visitInsn(DUP); // [target] args... array array
visitLdcInsn(Integer.valueOf(i)); // [target] args... array array idx
... | [
"void",
"restoreArgsFromArray",
"(",
"String",
"desc",
")",
"{",
"Type",
"[",
"]",
"methodArgs",
"=",
"Type",
".",
"getArgumentTypes",
"(",
"desc",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"methodArgs",
".",
"length",
";",
"i",
"++"... | Recreate the parameter list for the target method from an Object array
containing the data.
@param desc the target method descriptor | [
"Recreate",
"the",
"parameter",
"list",
"for",
"the",
"target",
"method",
"from",
"an",
"Object",
"array",
"containing",
"the",
"data",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeMethodAdapter.java#L536-L551 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeMethodAdapter.java | ProbeMethodAdapter.setProbeInProgress | protected void setProbeInProgress(boolean inProgress) {
if (inProgress && !this.probeInProgress) {
this.probeInProgress = true;
if (this.probeMethodAdapter != null) {
this.mv = this.visitor;
}
} else if (!inProgress && this.probeInProgress) {
... | java | protected void setProbeInProgress(boolean inProgress) {
if (inProgress && !this.probeInProgress) {
this.probeInProgress = true;
if (this.probeMethodAdapter != null) {
this.mv = this.visitor;
}
} else if (!inProgress && this.probeInProgress) {
... | [
"protected",
"void",
"setProbeInProgress",
"(",
"boolean",
"inProgress",
")",
"{",
"if",
"(",
"inProgress",
"&&",
"!",
"this",
".",
"probeInProgress",
")",
"{",
"this",
".",
"probeInProgress",
"=",
"true",
";",
"if",
"(",
"this",
".",
"probeMethodAdapter",
"... | Called by the project injection adapter to indicate that the probe
instruction stream is being injected. This is used to change the
target of the chain to skip other probe related adapters.
@param inProgress true if the probe injection is starting, false
if ended | [
"Called",
"by",
"the",
"project",
"injection",
"adapter",
"to",
"indicate",
"that",
"the",
"probe",
"instruction",
"stream",
"is",
"being",
"injected",
".",
"This",
"is",
"used",
"to",
"change",
"the",
"target",
"of",
"the",
"chain",
"to",
"skip",
"other",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/bci/ProbeMethodAdapter.java#L571-L581 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaActivationSpecImpl.java | SibRaActivationSpecImpl.setTargetSignificance | public void setTargetSignificance(String targetSignificance) {
if (TraceComponent.isAnyTracingEnabled() && TRACE.isDebugEnabled()) {
SibTr.debug(this, TRACE, "setTargetSignificance", targetSignificance);
}
_targetSignificance = targetSignificance;
} | java | public void setTargetSignificance(String targetSignificance) {
if (TraceComponent.isAnyTracingEnabled() && TRACE.isDebugEnabled()) {
SibTr.debug(this, TRACE, "setTargetSignificance", targetSignificance);
}
_targetSignificance = targetSignificance;
} | [
"public",
"void",
"setTargetSignificance",
"(",
"String",
"targetSignificance",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"TRACE",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"SibTr",
".",
"debug",
"(",
"this",
",",
"T... | Set the target significance property.
@param target significance | [
"Set",
"the",
"target",
"significance",
"property",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaActivationSpecImpl.java#L1039-L1046 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaActivationSpecImpl.java | SibRaActivationSpecImpl.setTargetTransportChain | public void setTargetTransportChain(String targetTransportChain) {
if (TraceComponent.isAnyTracingEnabled() && TRACE.isDebugEnabled()) {
SibTr.debug(this, TRACE, "setTargetTransportChain", targetTransportChain);
}
_targetTransportChain = targetTransportChain;
} | java | public void setTargetTransportChain(String targetTransportChain) {
if (TraceComponent.isAnyTracingEnabled() && TRACE.isDebugEnabled()) {
SibTr.debug(this, TRACE, "setTargetTransportChain", targetTransportChain);
}
_targetTransportChain = targetTransportChain;
} | [
"public",
"void",
"setTargetTransportChain",
"(",
"String",
"targetTransportChain",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"TRACE",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"SibTr",
".",
"debug",
"(",
"this",
",",
... | Set the target transport chain property.
@param target transport chain | [
"Set",
"the",
"target",
"transport",
"chain",
"property",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaActivationSpecImpl.java#L1053-L1060 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaActivationSpecImpl.java | SibRaActivationSpecImpl.setUseServerSubject | public void setUseServerSubject(Boolean useServerSubject) {
if (TraceComponent.isAnyTracingEnabled() && TRACE.isDebugEnabled()) {
SibTr.debug(this, TRACE, "setUseServerSubject", useServerSubject);
}
_useServerSubject = useServerSubject;
} | java | public void setUseServerSubject(Boolean useServerSubject) {
if (TraceComponent.isAnyTracingEnabled() && TRACE.isDebugEnabled()) {
SibTr.debug(this, TRACE, "setUseServerSubject", useServerSubject);
}
_useServerSubject = useServerSubject;
} | [
"public",
"void",
"setUseServerSubject",
"(",
"Boolean",
"useServerSubject",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"TRACE",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"SibTr",
".",
"debug",
"(",
"this",
",",
"TRAC... | Set the useServerSubject property.
@param useServerSubject | [
"Set",
"the",
"useServerSubject",
"property",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaActivationSpecImpl.java#L1089-L1096 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaActivationSpecImpl.java | SibRaActivationSpecImpl.setRetryInterval | public void setRetryInterval(String retryInterval)
{
_retryInterval = (retryInterval == null ? null : Integer.valueOf(retryInterval));
} | java | public void setRetryInterval(String retryInterval)
{
_retryInterval = (retryInterval == null ? null : Integer.valueOf(retryInterval));
} | [
"public",
"void",
"setRetryInterval",
"(",
"String",
"retryInterval",
")",
"{",
"_retryInterval",
"=",
"(",
"retryInterval",
"==",
"null",
"?",
"null",
":",
"Integer",
".",
"valueOf",
"(",
"retryInterval",
")",
")",
";",
"}"
] | Sets the retry interval | [
"Sets",
"the",
"retry",
"interval"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaActivationSpecImpl.java#L1196-L1199 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webservices.javaee.common/src/com/ibm/ws/webservices/javaee/common/internal/JaxWsDDHelper.java | JaxWsDDHelper.getPortComponentByEJBLink | static PortComponent getPortComponentByEJBLink(String ejbLink, Adaptable containerToAdapt) throws UnableToAdaptException {
return getHighLevelElementByServiceImplBean(ejbLink, containerToAdapt, PortComponent.class, LinkType.EJB);
} | java | static PortComponent getPortComponentByEJBLink(String ejbLink, Adaptable containerToAdapt) throws UnableToAdaptException {
return getHighLevelElementByServiceImplBean(ejbLink, containerToAdapt, PortComponent.class, LinkType.EJB);
} | [
"static",
"PortComponent",
"getPortComponentByEJBLink",
"(",
"String",
"ejbLink",
",",
"Adaptable",
"containerToAdapt",
")",
"throws",
"UnableToAdaptException",
"{",
"return",
"getHighLevelElementByServiceImplBean",
"(",
"ejbLink",
",",
"containerToAdapt",
",",
"PortComponent... | Get the PortComponent by ejb-link.
@param ejbLink
@param containerToAdapt
@return
@throws UnableToAdaptException | [
"Get",
"the",
"PortComponent",
"by",
"ejb",
"-",
"link",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webservices.javaee.common/src/com/ibm/ws/webservices/javaee/common/internal/JaxWsDDHelper.java#L44-L46 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webservices.javaee.common/src/com/ibm/ws/webservices/javaee/common/internal/JaxWsDDHelper.java | JaxWsDDHelper.getPortComponentByServletLink | static PortComponent getPortComponentByServletLink(String servletLink, Adaptable containerToAdapt) throws UnableToAdaptException {
return getHighLevelElementByServiceImplBean(servletLink, containerToAdapt, PortComponent.class, LinkType.SERVLET);
} | java | static PortComponent getPortComponentByServletLink(String servletLink, Adaptable containerToAdapt) throws UnableToAdaptException {
return getHighLevelElementByServiceImplBean(servletLink, containerToAdapt, PortComponent.class, LinkType.SERVLET);
} | [
"static",
"PortComponent",
"getPortComponentByServletLink",
"(",
"String",
"servletLink",
",",
"Adaptable",
"containerToAdapt",
")",
"throws",
"UnableToAdaptException",
"{",
"return",
"getHighLevelElementByServiceImplBean",
"(",
"servletLink",
",",
"containerToAdapt",
",",
"P... | Get the PortComponent by servlet-link.
@param servletLink
@param containerToAdapt
@return
@throws UnableToAdaptException | [
"Get",
"the",
"PortComponent",
"by",
"servlet",
"-",
"link",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webservices.javaee.common/src/com/ibm/ws/webservices/javaee/common/internal/JaxWsDDHelper.java#L56-L58 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webservices.javaee.common/src/com/ibm/ws/webservices/javaee/common/internal/JaxWsDDHelper.java | JaxWsDDHelper.getWebserviceDescriptionByEJBLink | static WebserviceDescription getWebserviceDescriptionByEJBLink(String ejbLink, Adaptable containerToAdapt) throws UnableToAdaptException {
return getHighLevelElementByServiceImplBean(ejbLink, containerToAdapt, WebserviceDescription.class, LinkType.EJB);
} | java | static WebserviceDescription getWebserviceDescriptionByEJBLink(String ejbLink, Adaptable containerToAdapt) throws UnableToAdaptException {
return getHighLevelElementByServiceImplBean(ejbLink, containerToAdapt, WebserviceDescription.class, LinkType.EJB);
} | [
"static",
"WebserviceDescription",
"getWebserviceDescriptionByEJBLink",
"(",
"String",
"ejbLink",
",",
"Adaptable",
"containerToAdapt",
")",
"throws",
"UnableToAdaptException",
"{",
"return",
"getHighLevelElementByServiceImplBean",
"(",
"ejbLink",
",",
"containerToAdapt",
",",
... | Get the WebserviceDescription by ejb-link.
@param ejbLink
@param containerToAdapt
@return
@throws UnableToAdaptException | [
"Get",
"the",
"WebserviceDescription",
"by",
"ejb",
"-",
"link",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webservices.javaee.common/src/com/ibm/ws/webservices/javaee/common/internal/JaxWsDDHelper.java#L68-L70 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webservices.javaee.common/src/com/ibm/ws/webservices/javaee/common/internal/JaxWsDDHelper.java | JaxWsDDHelper.getWebserviceDescriptionByServletLink | static WebserviceDescription getWebserviceDescriptionByServletLink(String servletLink, Adaptable containerToAdapt) throws UnableToAdaptException {
return getHighLevelElementByServiceImplBean(servletLink, containerToAdapt, WebserviceDescription.class, LinkType.SERVLET);
} | java | static WebserviceDescription getWebserviceDescriptionByServletLink(String servletLink, Adaptable containerToAdapt) throws UnableToAdaptException {
return getHighLevelElementByServiceImplBean(servletLink, containerToAdapt, WebserviceDescription.class, LinkType.SERVLET);
} | [
"static",
"WebserviceDescription",
"getWebserviceDescriptionByServletLink",
"(",
"String",
"servletLink",
",",
"Adaptable",
"containerToAdapt",
")",
"throws",
"UnableToAdaptException",
"{",
"return",
"getHighLevelElementByServiceImplBean",
"(",
"servletLink",
",",
"containerToAda... | Get the WebserviceDescription by servlet-link.
@param servletLink
@param containerToAdapt
@return
@throws UnableToAdaptException | [
"Get",
"the",
"WebserviceDescription",
"by",
"servlet",
"-",
"link",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webservices.javaee.common/src/com/ibm/ws/webservices/javaee/common/internal/JaxWsDDHelper.java#L80-L82 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webservices.javaee.common/src/com/ibm/ws/webservices/javaee/common/internal/JaxWsDDHelper.java | JaxWsDDHelper.getHighLevelElementByServiceImplBean | @SuppressWarnings("unchecked")
private static <T> T getHighLevelElementByServiceImplBean(String portLink, Adaptable containerToAdapt, Class<T> clazz, LinkType linkType) throws UnableToAdaptException {
if (null == portLink) {
return null;
}
if (PortComponent.class.isAssignableFrom... | java | @SuppressWarnings("unchecked")
private static <T> T getHighLevelElementByServiceImplBean(String portLink, Adaptable containerToAdapt, Class<T> clazz, LinkType linkType) throws UnableToAdaptException {
if (null == portLink) {
return null;
}
if (PortComponent.class.isAssignableFrom... | [
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"private",
"static",
"<",
"T",
">",
"T",
"getHighLevelElementByServiceImplBean",
"(",
"String",
"portLink",
",",
"Adaptable",
"containerToAdapt",
",",
"Class",
"<",
"T",
">",
"clazz",
",",
"LinkType",
"linkType",... | For internal usage. Can only process the PortComponent.class and WebserviceDescription.class.
@param portLink
@param containerToAdapt
@param clazz
@return
@throws UnableToAdaptException | [
"For",
"internal",
"usage",
".",
"Can",
"only",
"process",
"the",
"PortComponent",
".",
"class",
"and",
"WebserviceDescription",
".",
"class",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webservices.javaee.common/src/com/ibm/ws/webservices/javaee/common/internal/JaxWsDDHelper.java#L93-L127 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/runtime/anycast/ReceivedMessageRequestInfo.java | ReceivedMessageRequestInfo.getCompletionTime | public long getCompletionTime()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "getCompletionTime");
long completionTime =-1;
//only calculate if the timeout is not infinite
long timeOut = getTimeout();
if(timeOut != SIMPConstants.INFINITE_TIMEOU... | java | public long getCompletionTime()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "getCompletionTime");
long completionTime =-1;
//only calculate if the timeout is not infinite
long timeOut = getTimeout();
if(timeOut != SIMPConstants.INFINITE_TIMEOU... | [
"public",
"long",
"getCompletionTime",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"\"getCompletionTime\"",
")",
";",
"long",
"co... | Return the completion time for this request.
-1 means infinite | [
"Return",
"the",
"completion",
"time",
"for",
"this",
"request",
".",
"-",
"1",
"means",
"infinite"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/runtime/anycast/ReceivedMessageRequestInfo.java#L109-L127 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jndi/src/com/ibm/ws/jndi/internal/JNDIEntry.java | JNDIEntry.deactivate | protected synchronized void deactivate(ComponentContext context) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "Unregistering JNDIEntry " + serviceRegistration);
}
if (this.serviceRegistration != null) {
this.serviceRegistration.unregis... | java | protected synchronized void deactivate(ComponentContext context) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "Unregistering JNDIEntry " + serviceRegistration);
}
if (this.serviceRegistration != null) {
this.serviceRegistration.unregis... | [
"protected",
"synchronized",
"void",
"deactivate",
"(",
"ComponentContext",
"context",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"debug",
"(",
"tc",
",",
"... | Unregisters a service if one was registered
@param context | [
"Unregisters",
"a",
"service",
"if",
"one",
"was",
"registered"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jndi/src/com/ibm/ws/jndi/internal/JNDIEntry.java#L94-L101 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.social/src/com/ibm/websphere/security/social/UserProfileManager.java | UserProfileManager.getUserProfile | public static UserProfile getUserProfile() {
UserProfile userProfile = null;
Subject subject = getSubject();
Iterator<UserProfile> userProfilesIterator = subject.getPrivateCredentials(UserProfile.class).iterator();
if (userProfilesIterator.hasNext()) {
userProfile = userProfi... | java | public static UserProfile getUserProfile() {
UserProfile userProfile = null;
Subject subject = getSubject();
Iterator<UserProfile> userProfilesIterator = subject.getPrivateCredentials(UserProfile.class).iterator();
if (userProfilesIterator.hasNext()) {
userProfile = userProfi... | [
"public",
"static",
"UserProfile",
"getUserProfile",
"(",
")",
"{",
"UserProfile",
"userProfile",
"=",
"null",
";",
"Subject",
"subject",
"=",
"getSubject",
"(",
")",
";",
"Iterator",
"<",
"UserProfile",
">",
"userProfilesIterator",
"=",
"subject",
".",
"getPriv... | Get UserProfile for the subject on the thread.
@return the user profile for the social media authenticated user. | [
"Get",
"UserProfile",
"for",
"the",
"subject",
"on",
"the",
"thread",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.social/src/com/ibm/websphere/security/social/UserProfileManager.java#L37-L45 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java | ClientAsynchEventThreadPool.dispatchAsynchException | public void dispatchAsynchException(ProxyQueue proxyQueue, Exception exception)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "dispatchAsynchException",
new Object[] { proxyQueue, exception });
// Create a runnable with the ... | java | public void dispatchAsynchException(ProxyQueue proxyQueue, Exception exception)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "dispatchAsynchException",
new Object[] { proxyQueue, exception });
// Create a runnable with the ... | [
"public",
"void",
"dispatchAsynchException",
"(",
"ProxyQueue",
"proxyQueue",
",",
"Exception",
"exception",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"... | Dispatches the exception to the relevant proxy queue.
@param proxyQueue
@param exception | [
"Dispatches",
"the",
"exception",
"to",
"the",
"relevant",
"proxy",
"queue",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java#L132-L142 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java | ClientAsynchEventThreadPool.dispatchAsynchEvent | public void dispatchAsynchEvent(short eventId, Conversation conversation)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "dispatchAsynchEvent",
new Object[] { ""+eventId, conversation });
// Create a runnable with the d... | java | public void dispatchAsynchEvent(short eventId, Conversation conversation)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "dispatchAsynchEvent",
new Object[] { ""+eventId, conversation });
// Create a runnable with the d... | [
"public",
"void",
"dispatchAsynchEvent",
"(",
"short",
"eventId",
",",
"Conversation",
"conversation",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
... | Dispatches the data to be sent to the connection event listeners on a thread.
@param eventId
@param conversation | [
"Dispatches",
"the",
"data",
"to",
"be",
"sent",
"to",
"the",
"connection",
"event",
"listeners",
"on",
"a",
"thread",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java#L150-L160 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java | ClientAsynchEventThreadPool.dispatchCommsException | public void dispatchCommsException(SICoreConnection conn,
ProxyQueueConversationGroup proxyQueueConversationGroup,
SIConnectionLostException exception)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this... | java | public void dispatchCommsException(SICoreConnection conn,
ProxyQueueConversationGroup proxyQueueConversationGroup,
SIConnectionLostException exception)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this... | [
"public",
"void",
"dispatchCommsException",
"(",
"SICoreConnection",
"conn",
",",
"ProxyQueueConversationGroup",
"proxyQueueConversationGroup",
",",
"SIConnectionLostException",
"exception",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
... | Dispatches the exception to be sent to the connection event listeners on a thread.
@param conn
@param exception | [
"Dispatches",
"the",
"exception",
"to",
"be",
"sent",
"to",
"the",
"connection",
"event",
"listeners",
"on",
"a",
"thread",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java#L168-L179 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java | ClientAsynchEventThreadPool.dispatchDestinationListenerEvent | public void dispatchDestinationListenerEvent(SICoreConnection conn, SIDestinationAddress destinationAddress,
DestinationAvailability destinationAvailability, DestinationListener destinationListener)
{
if(TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "dispatchDestin... | java | public void dispatchDestinationListenerEvent(SICoreConnection conn, SIDestinationAddress destinationAddress,
DestinationAvailability destinationAvailability, DestinationListener destinationListener)
{
if(TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "dispatchDestin... | [
"public",
"void",
"dispatchDestinationListenerEvent",
"(",
"SICoreConnection",
"conn",
",",
"SIDestinationAddress",
"destinationAddress",
",",
"DestinationAvailability",
"destinationAvailability",
",",
"DestinationListener",
"destinationListener",
")",
"{",
"if",
"(",
"TraceCom... | Dispatches a thread which will call the destinationAvailable method on the destinationListener passing in the supplied parameters.
@param conn
@param destinationAddress
@param destinationAvailability
@param destinationListener | [
"Dispatches",
"a",
"thread",
"which",
"will",
"call",
"the",
"destinationAvailable",
"method",
"on",
"the",
"destinationListener",
"passing",
"in",
"the",
"supplied",
"parameters",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java#L189-L200 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java | ClientAsynchEventThreadPool.dispatchConsumerSetChangeCallbackEvent | public void dispatchConsumerSetChangeCallbackEvent(ConsumerSetChangeCallback consumerSetChangeCallback,boolean isEmpty)
{
if(TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "dispatchConsumerSetChangeCallbackEvent",
new Object[]{consumerSetChangeCallback, isEmpty})... | java | public void dispatchConsumerSetChangeCallbackEvent(ConsumerSetChangeCallback consumerSetChangeCallback,boolean isEmpty)
{
if(TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "dispatchConsumerSetChangeCallbackEvent",
new Object[]{consumerSetChangeCallback, isEmpty})... | [
"public",
"void",
"dispatchConsumerSetChangeCallbackEvent",
"(",
"ConsumerSetChangeCallback",
"consumerSetChangeCallback",
",",
"boolean",
"isEmpty",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")"... | Dispatches a thread which will call the consumerSetChange method on the ConsumerSetChangeCallback passing in the supplied parameters.
@param consumerSetChangeCallback
@param isEmpty | [
"Dispatches",
"a",
"thread",
"which",
"will",
"call",
"the",
"consumerSetChange",
"method",
"on",
"the",
"ConsumerSetChangeCallback",
"passing",
"in",
"the",
"supplied",
"parameters",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java#L209-L219 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java | ClientAsynchEventThreadPool.dispatchStoppableConsumerSessionStopped | public void dispatchStoppableConsumerSessionStopped(ConsumerSessionProxy consumerSessionProxy)
{
if(TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "dispatchStoppableConsumerSessionStopped", consumerSessionProxy);
//Create a new StoppableAsynchConsumerCallbackThread an... | java | public void dispatchStoppableConsumerSessionStopped(ConsumerSessionProxy consumerSessionProxy)
{
if(TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "dispatchStoppableConsumerSessionStopped", consumerSessionProxy);
//Create a new StoppableAsynchConsumerCallbackThread an... | [
"public",
"void",
"dispatchStoppableConsumerSessionStopped",
"(",
"ConsumerSessionProxy",
"consumerSessionProxy",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(... | Dispatches a thread which will call the stoppableConsumerSessionStopped method on consumerSessionProxy.
@param consumerSessionProxy | [
"Dispatches",
"a",
"thread",
"which",
"will",
"call",
"the",
"stoppableConsumerSessionStopped",
"method",
"on",
"consumerSessionProxy",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java#L227-L236 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java | ClientAsynchEventThreadPool.dispatchThread | private void dispatchThread(Runnable runnable)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "dispatchThread");
try
{
// Get a thread from the pool to excute it
// By only passing the thread we default to wait if the threadpool queue is ... | java | private void dispatchThread(Runnable runnable)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "dispatchThread");
try
{
// Get a thread from the pool to excute it
// By only passing the thread we default to wait if the threadpool queue is ... | [
"private",
"void",
"dispatchThread",
"(",
"Runnable",
"runnable",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"dispatch... | Actually dispatches the thread.
@param runnable | [
"Actually",
"dispatches",
"the",
"thread",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java#L243-L262 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java | ClientAsynchEventThreadPool.invokeCallback | private static void invokeCallback(SICoreConnection conn, ConsumerSession session, // d172528
Exception exception, int eventId)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "invokeCallback",
new Ob... | java | private static void invokeCallback(SICoreConnection conn, ConsumerSession session, // d172528
Exception exception, int eventId)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "invokeCallback",
new Ob... | [
"private",
"static",
"void",
"invokeCallback",
"(",
"SICoreConnection",
"conn",
",",
"ConsumerSession",
"session",
",",
"// d172528",
"Exception",
"exception",
",",
"int",
"eventId",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&"... | This method will send a message to the connection listeners associated
with this connection.
@param conn May be null if invoking an async callback
@param session May be null if invoking a connection callback
@param exception May be null if invoking a connection callback
@param eventId The event Id | [
"This",
"method",
"will",
"send",
"a",
"message",
"to",
"the",
"connection",
"listeners",
"associated",
"with",
"this",
"connection",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/ClientAsynchEventThreadPool.java#L273-L345 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/internal/SRTServletRequestUtils.java | SRTServletRequestUtils.getHeader | @Sensitive
public static String getHeader(HttpServletRequest req, String key) {
HttpServletRequest sr = getWrappedServletRequestObject(req);
return sr.getHeader(key);
} | java | @Sensitive
public static String getHeader(HttpServletRequest req, String key) {
HttpServletRequest sr = getWrappedServletRequestObject(req);
return sr.getHeader(key);
} | [
"@",
"Sensitive",
"public",
"static",
"String",
"getHeader",
"(",
"HttpServletRequest",
"req",
",",
"String",
"key",
")",
"{",
"HttpServletRequest",
"sr",
"=",
"getWrappedServletRequestObject",
"(",
"req",
")",
";",
"return",
"sr",
".",
"getHeader",
"(",
"key",
... | Obtain the value of the specified header.
@param req
@param key
@return The value of the header
@see HttpServletRequest#getHeader(String) | [
"Obtain",
"the",
"value",
"of",
"the",
"specified",
"header",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/internal/SRTServletRequestUtils.java#L95-L99 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.tx.embeddable/src/com/ibm/tx/remote/TransactionWrapper.java | TransactionWrapper.destroy | @Override
public void destroy() // PK20881
{
if (tc.isEntryEnabled())
Tr.entry(tc, "destroy");
// Dummy transactionWrappers may not be in any table and so
// will not have a resourceCallback registered to remove them.
if (_resourceCallback != null)
_resou... | java | @Override
public void destroy() // PK20881
{
if (tc.isEntryEnabled())
Tr.entry(tc, "destroy");
// Dummy transactionWrappers may not be in any table and so
// will not have a resourceCallback registered to remove them.
if (_resourceCallback != null)
_resou... | [
"@",
"Override",
"public",
"void",
"destroy",
"(",
")",
"// PK20881",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"destroy\"",
")",
";",
"// Dummy transactionWrappers may not be in any table and so",
"// will... | as another server tried to rollback the transaction. | [
"as",
"another",
"server",
"tried",
"to",
"rollback",
"the",
"transaction",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.tx.embeddable/src/com/ibm/tx/remote/TransactionWrapper.java#L982-L1009 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java | FileLogOutput.close | protected void close()
throws ObjectManagerException
{
if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled())
trace.entry(this, cclass
, "close"
);
if (flushHelper != null)
flushHelper.shutdown(); ... | java | protected void close()
throws ObjectManagerException
{
if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled())
trace.entry(this, cclass
, "close"
);
if (flushHelper != null)
flushHelper.shutdown(); ... | [
"protected",
"void",
"close",
"(",
")",
"throws",
"ObjectManagerException",
"{",
"if",
"(",
"Tracing",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"trace",
".",
"isEntryEnabled",
"(",
")",
")",
"trace",
".",
"entry",
"(",
"this",
",",
"cclass",
",",
"\"clo... | Prohibits further operations on the LogFile.
@throws ObjectManagerException | [
"Prohibits",
"further",
"operations",
"on",
"the",
"LogFile",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java#L580-L599 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java | FileLogOutput.setFileSpaceLeft | private void setFileSpaceLeft()
throws ObjectManagerException
{
if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled())
trace.entry(this, cclass,
"setFileSpaceLeft",
new Object[] { new Long(fileLogHeader.fileSize), new Long... | java | private void setFileSpaceLeft()
throws ObjectManagerException
{
if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled())
trace.entry(this, cclass,
"setFileSpaceLeft",
new Object[] { new Long(fileLogHeader.fileSize), new Long... | [
"private",
"void",
"setFileSpaceLeft",
"(",
")",
"throws",
"ObjectManagerException",
"{",
"if",
"(",
"Tracing",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"trace",
".",
"isEntryEnabled",
"(",
")",
")",
"trace",
".",
"entry",
"(",
"this",
",",
"cclass",
",",... | Sets the amount of space still left in the log file.
@throws ObjectManagerException | [
"Sets",
"the",
"amount",
"of",
"space",
"still",
"left",
"in",
"the",
"log",
"file",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java#L757-L779 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java | FileLogOutput.flush | final void flush()
throws ObjectManagerException
{
final String methodName = "flush";
if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled())
trace.entry(this,
cclass,
methodName);
int startPage = 0;
... | java | final void flush()
throws ObjectManagerException
{
final String methodName = "flush";
if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled())
trace.entry(this,
cclass,
methodName);
int startPage = 0;
... | [
"final",
"void",
"flush",
"(",
")",
"throws",
"ObjectManagerException",
"{",
"final",
"String",
"methodName",
"=",
"\"flush\"",
";",
"if",
"(",
"Tracing",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"trace",
".",
"isEntryEnabled",
"(",
")",
")",
"trace",
"."... | Writes buffered output to hardened storage. By the time this method returns all
of the data in the logBuffer must have been written to the disk. We mark the
last page as having a thread waiting. If there are no threads currently writing
to any page we wake the flushHelper otherwise we let the writers wake the
flushHelp... | [
"Writes",
"buffered",
"output",
"to",
"hardened",
"storage",
".",
"By",
"the",
"time",
"this",
"method",
"returns",
"all",
"of",
"the",
"data",
"in",
"the",
"logBuffer",
"must",
"have",
"been",
"written",
"to",
"the",
"disk",
".",
"We",
"mark",
"the",
"l... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java#L859-L911 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java | FileLogOutput.reserve | protected void reserve(long reservedDelta)
throws ObjectManagerException
{
if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled())
trace.entry(this, cclass,
"reserve",
new Object[] { new Long(reservedDelta) }
... | java | protected void reserve(long reservedDelta)
throws ObjectManagerException
{
if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled())
trace.entry(this, cclass,
"reserve",
new Object[] { new Long(reservedDelta) }
... | [
"protected",
"void",
"reserve",
"(",
"long",
"reservedDelta",
")",
"throws",
"ObjectManagerException",
"{",
"if",
"(",
"Tracing",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"trace",
".",
"isEntryEnabled",
"(",
")",
")",
"trace",
".",
"entry",
"(",
"this",
"... | Reserve space in the log file.
We don't have to account for sector bytes because those were reserved at startup.
@param reservedDelta the change to the number of reserved bytes if this write is successful.
@throws ObjectManagerException | [
"Reserve",
"space",
"in",
"the",
"log",
"file",
".",
"We",
"don",
"t",
"have",
"to",
"account",
"for",
"sector",
"bytes",
"because",
"those",
"were",
"reserved",
"at",
"startup",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java#L954-L980 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java | FileLogOutput.reserveLogFileSpace | private long reserveLogFileSpace(long reservedDelta)
{
if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled())
trace.entry(this,
cclass,
"reserveLogFileSpace",
new Object[] { new Long(reservedDelta) });
long s... | java | private long reserveLogFileSpace(long reservedDelta)
{
if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled())
trace.entry(this,
cclass,
"reserveLogFileSpace",
new Object[] { new Long(reservedDelta) });
long s... | [
"private",
"long",
"reserveLogFileSpace",
"(",
"long",
"reservedDelta",
")",
"{",
"if",
"(",
"Tracing",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"trace",
".",
"isEntryEnabled",
"(",
")",
")",
"trace",
".",
"entry",
"(",
"this",
",",
"cclass",
",",
"\"re... | Reserve space in the log file. If the required space is not available then
no space is acllocated in the log file. The space of freed when the log file is
truncated.
@param reservedDelta the change to the number allocated if they are available. Can be
negative, if bytes are being returned, in which case the call is al... | [
"Reserve",
"space",
"in",
"the",
"log",
"file",
".",
"If",
"the",
"required",
"space",
"is",
"not",
"available",
"then",
"no",
"space",
"is",
"acllocated",
"in",
"the",
"log",
"file",
".",
"The",
"space",
"of",
"freed",
"when",
"the",
"log",
"file",
"i... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java#L992-L1042 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java | FileLogOutput.paddingReserveLogSpace | private long paddingReserveLogSpace(long spaceToReserve) throws ObjectManagerException
{
if (trace.isEntryEnabled())
trace.entry(this,
cclass,
"paddingReserveLogSpace",
new Object[] { new Long(spaceToReserve) });
syn... | java | private long paddingReserveLogSpace(long spaceToReserve) throws ObjectManagerException
{
if (trace.isEntryEnabled())
trace.entry(this,
cclass,
"paddingReserveLogSpace",
new Object[] { new Long(spaceToReserve) });
syn... | [
"private",
"long",
"paddingReserveLogSpace",
"(",
"long",
"spaceToReserve",
")",
"throws",
"ObjectManagerException",
"{",
"if",
"(",
"trace",
".",
"isEntryEnabled",
"(",
")",
")",
"trace",
".",
"entry",
"(",
"this",
",",
"cclass",
",",
"\"paddingReserveLogSpace\""... | Reserve or unreserve log space, but keep back an amount used for padding. This method is used to ensure
there is always enough padding space by keeping back space returned by add, delete and replace operations
committing or backing out which was reserved up front.
This never fails. It gives space even if not available.... | [
"Reserve",
"or",
"unreserve",
"log",
"space",
"but",
"keep",
"back",
"an",
"amount",
"used",
"for",
"padding",
".",
"This",
"method",
"is",
"used",
"to",
"ensure",
"there",
"is",
"always",
"enough",
"padding",
"space",
"by",
"keeping",
"back",
"space",
"re... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java#L1056-L1124 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java | FileLogOutput.writeNext | protected final long writeNext(LogRecord logRecord
, long reservedDelta
, boolean checkSpace
, boolean flush
)
throws ObjectManagerException
{
// if (T... | java | protected final long writeNext(LogRecord logRecord
, long reservedDelta
, boolean checkSpace
, boolean flush
)
throws ObjectManagerException
{
// if (T... | [
"protected",
"final",
"long",
"writeNext",
"(",
"LogRecord",
"logRecord",
",",
"long",
"reservedDelta",
",",
"boolean",
"checkSpace",
",",
"boolean",
"flush",
")",
"throws",
"ObjectManagerException",
"{",
"// if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) ",... | Copy a LogRecord into the LogBuffer ready to write to end of the LogFile.
@param logRecord to be appended.
@param reservedDelta the change to the number of reserved bytes if this write is successful.
@param checkSpace true is we should check that log file space is available before filling the buffer.
@param flush true... | [
"Copy",
"a",
"LogRecord",
"into",
"the",
"LogBuffer",
"ready",
"to",
"write",
"to",
"end",
"of",
"the",
"LogFile",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java#L1137-L1166 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java | FileLogOutput.markAndWriteNext | protected final long markAndWriteNext(LogRecord logRecord,
long reservedDelta,
boolean checkSpace,
boolean flush)
throws ObjectManagerException
{
if (Tracing.isAn... | java | protected final long markAndWriteNext(LogRecord logRecord,
long reservedDelta,
boolean checkSpace,
boolean flush)
throws ObjectManagerException
{
if (Tracing.isAn... | [
"protected",
"final",
"long",
"markAndWriteNext",
"(",
"LogRecord",
"logRecord",
",",
"long",
"reservedDelta",
",",
"boolean",
"checkSpace",
",",
"boolean",
"flush",
")",
"throws",
"ObjectManagerException",
"{",
"if",
"(",
"Tracing",
".",
"isAnyTracingEnabled",
"(",... | Includes a LogRecord in a FlushSet for writing to end of the LogFile,
as with writeNext but also sets the truncation mark to immediately befrore
the written logRecord.
@param logRecord to be appended.
@param reservedDelta the change to the number of reserved bytes if this write is successful.
@param checkSpace true is... | [
"Includes",
"a",
"LogRecord",
"in",
"a",
"FlushSet",
"for",
"writing",
"to",
"end",
"of",
"the",
"LogFile",
"as",
"with",
"writeNext",
"but",
"also",
"sets",
"the",
"truncation",
"mark",
"to",
"immediately",
"befrore",
"the",
"written",
"logRecord",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java#L1181-L1211 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java | FileLogOutput.addPart | private int addPart(LogRecord logRecord,
byte[] fillingBuffer,
boolean completed,
int offset,
int partLength)
throws ObjectManagerException
{
final String methodName = "addPart";
if (T... | java | private int addPart(LogRecord logRecord,
byte[] fillingBuffer,
boolean completed,
int offset,
int partLength)
throws ObjectManagerException
{
final String methodName = "addPart";
if (T... | [
"private",
"int",
"addPart",
"(",
"LogRecord",
"logRecord",
",",
"byte",
"[",
"]",
"fillingBuffer",
",",
"boolean",
"completed",
",",
"int",
"offset",
",",
"int",
"partLength",
")",
"throws",
"ObjectManagerException",
"{",
"final",
"String",
"methodName",
"=",
... | Add the partHeader before the logRecord, and then the part of the logRecord.
If necessary wrap round the end of the log buffer back to the start.
@param logRecord from which the data is to be copied.
@param fillingBuffer the logBuffer to fill. @param boolean true if
the logRecord is completed.
@param completed true if... | [
"Add",
"the",
"partHeader",
"before",
"the",
"logRecord",
"and",
"then",
"the",
"part",
"of",
"the",
"logRecord",
".",
"If",
"necessary",
"wrap",
"round",
"the",
"end",
"of",
"the",
"log",
"buffer",
"back",
"to",
"the",
"start",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/objectManager/FileLogOutput.java#L1754-L1848 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/util/cache/SweepLruEvictionStrategy.java | SweepLruEvictionStrategy.cancel | public void cancel() { //d583637, F73234
synchronized (ivCancelLock) { //d601399
ivIsCanceled = true;
if (ivScheduledFuture != null)
ivScheduledFuture.cancel(false);
ivCache = null;
ivElements = null;
}
} | java | public void cancel() { //d583637, F73234
synchronized (ivCancelLock) { //d601399
ivIsCanceled = true;
if (ivScheduledFuture != null)
ivScheduledFuture.cancel(false);
ivCache = null;
ivElements = null;
}
} | [
"public",
"void",
"cancel",
"(",
")",
"{",
"//d583637, F73234",
"synchronized",
"(",
"ivCancelLock",
")",
"{",
"//d601399",
"ivIsCanceled",
"=",
"true",
";",
"if",
"(",
"ivScheduledFuture",
"!=",
"null",
")",
"ivScheduledFuture",
".",
"cancel",
"(",
"false",
"... | Cancel the Scheduled Future object | [
"Cancel",
"the",
"Scheduled",
"Future",
"object"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/util/cache/SweepLruEvictionStrategy.java#L675-L683 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/renderkit/html/HtmlTextareaRendererBase.java | HtmlTextareaRendererBase.renderTextAreaValue | protected void renderTextAreaValue(FacesContext facesContext, UIComponent uiComponent) throws IOException
{
ResponseWriter writer = facesContext.getResponseWriter();
Object addNewLineAtStart = uiComponent.getAttributes().get(ADD_NEW_LINE_AT_START_ATTR);
if (addNewLineAtStart != null... | java | protected void renderTextAreaValue(FacesContext facesContext, UIComponent uiComponent) throws IOException
{
ResponseWriter writer = facesContext.getResponseWriter();
Object addNewLineAtStart = uiComponent.getAttributes().get(ADD_NEW_LINE_AT_START_ATTR);
if (addNewLineAtStart != null... | [
"protected",
"void",
"renderTextAreaValue",
"(",
"FacesContext",
"facesContext",
",",
"UIComponent",
"uiComponent",
")",
"throws",
"IOException",
"{",
"ResponseWriter",
"writer",
"=",
"facesContext",
".",
"getResponseWriter",
"(",
")",
";",
"Object",
"addNewLineAtStart"... | Subclasses can override the writing of the "text" value of the textarea | [
"Subclasses",
"can",
"override",
"the",
"writing",
"of",
"the",
"text",
"value",
"of",
"the",
"textarea"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/renderkit/html/HtmlTextareaRendererBase.java#L162-L189 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/PriorityQueue.java | PriorityQueue.put | public final void put(long priority, Object value)
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "put", new Object[] { new Long(priority), value});
PriorityQueueNode node = new PriorityQueueNode(priority,value);
// Resize the array (double it) if we are out of space.
if (size == elements.leng... | java | public final void put(long priority, Object value)
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "put", new Object[] { new Long(priority), value});
PriorityQueueNode node = new PriorityQueueNode(priority,value);
// Resize the array (double it) if we are out of space.
if (size == elements.leng... | [
"public",
"final",
"void",
"put",
"(",
"long",
"priority",
",",
"Object",
"value",
")",
"{",
"// if (tc.isEntryEnabled())",
"// SibTr.entry(tc, \"put\", new Object[] { new Long(priority), value});",
"PriorityQueueNode",
"node",
"=",
"new",
"PriorityQueueNode",
"(",
"p... | Insert data with the given priority into the heap and heapify.
@param priority the priority to associate with the new data.
@param value the date to enqueue. | [
"Insert",
"data",
"with",
"the",
"given",
"priority",
"into",
"the",
"heap",
"and",
"heapify",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/PriorityQueue.java#L155-L177 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/PriorityQueue.java | PriorityQueue.moveUp | protected void moveUp(int pos)
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "moveUp", new Integer(pos));
PriorityQueueNode node = elements[pos];
long priority = node.priority;
while ((pos > 0) && (elements[parent(pos)].priority > priority))
{
setElement(elements[parent(pos)], pos);... | java | protected void moveUp(int pos)
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "moveUp", new Integer(pos));
PriorityQueueNode node = elements[pos];
long priority = node.priority;
while ((pos > 0) && (elements[parent(pos)].priority > priority))
{
setElement(elements[parent(pos)], pos);... | [
"protected",
"void",
"moveUp",
"(",
"int",
"pos",
")",
"{",
"// if (tc.isEntryEnabled())",
"// SibTr.entry(tc, \"moveUp\", new Integer(pos));",
"PriorityQueueNode",
"node",
"=",
"elements",
"[",
"pos",
"]",
";",
"long",
"priority",
"=",
"node",
".",
"priority",
... | Advance a node in the queue based on its priority.
@param pos the index of the nod to advance. | [
"Advance",
"a",
"node",
"in",
"the",
"queue",
"based",
"on",
"its",
"priority",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/PriorityQueue.java#L184-L202 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/PriorityQueue.java | PriorityQueue.getMin | public final Object getMin()
throws NoSuchElementException
{
PriorityQueueNode max = null;
if (size == 0)
throw new NoSuchElementException();
max = elements[0];
setElement(elements[--size], 0);
heapify(0);
return max.value;
} | java | public final Object getMin()
throws NoSuchElementException
{
PriorityQueueNode max = null;
if (size == 0)
throw new NoSuchElementException();
max = elements[0];
setElement(elements[--size], 0);
heapify(0);
return max.value;
} | [
"public",
"final",
"Object",
"getMin",
"(",
")",
"throws",
"NoSuchElementException",
"{",
"PriorityQueueNode",
"max",
"=",
"null",
";",
"if",
"(",
"size",
"==",
"0",
")",
"throw",
"new",
"NoSuchElementException",
"(",
")",
";",
"max",
"=",
"elements",
"[",
... | Dequeue the highest priority element from the queue.
@return the highest priority object.
@throws NoSuchElementException if the queue is empty. | [
"Dequeue",
"the",
"highest",
"priority",
"element",
"from",
"the",
"queue",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/PriorityQueue.java#L210-L222 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/PriorityQueue.java | PriorityQueue.setElement | protected final void setElement(PriorityQueueNode node, int pos)
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "setElement", new Object[] { node, new Integer(pos)});
elements[pos] = node;
node.pos = pos;
// if (tc.isEntryEnabled())
// SibTr.exit(tc, "setElement");
} | java | protected final void setElement(PriorityQueueNode node, int pos)
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "setElement", new Object[] { node, new Integer(pos)});
elements[pos] = node;
node.pos = pos;
// if (tc.isEntryEnabled())
// SibTr.exit(tc, "setElement");
} | [
"protected",
"final",
"void",
"setElement",
"(",
"PriorityQueueNode",
"node",
",",
"int",
"pos",
")",
"{",
"// if (tc.isEntryEnabled())",
"// SibTr.entry(tc, \"setElement\", new Object[] { node, new Integer(pos)});",
"elements",
"[",
"pos",
"]",
"=",
"node",
";",
"n... | Set an element in the queue.
@param node the element to place.
@param pos the position of the element. | [
"Set",
"an",
"element",
"in",
"the",
"queue",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/PriorityQueue.java#L230-L240 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/PriorityQueue.java | PriorityQueue.heapify | protected void heapify(int position)
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "heapify", new Integer(position));
// Heapify the remaining heap
int i = -1;
int l;
int r;
int smallest = position;
// Heapify routine from CMR.
// This was done without recursion.
while (sm... | java | protected void heapify(int position)
{
// if (tc.isEntryEnabled())
// SibTr.entry(tc, "heapify", new Integer(position));
// Heapify the remaining heap
int i = -1;
int l;
int r;
int smallest = position;
// Heapify routine from CMR.
// This was done without recursion.
while (sm... | [
"protected",
"void",
"heapify",
"(",
"int",
"position",
")",
"{",
"// if (tc.isEntryEnabled())",
"// SibTr.entry(tc, \"heapify\", new Integer(position));",
"// Heapify the remaining heap",
"int",
"i",
"=",
"-",
"1",
";",
"int",
"l",
";",
"int",
"r",
";",
"int",
... | Reheap the queue.
@param position The position from which to start reheaping. | [
"Reheap",
"the",
"queue",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/utils/PriorityQueue.java#L247-L280 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jpa.container.core/src/com/ibm/ws/jpa/JPAAccessor.java | JPAAccessor.setJPAComponent | public static void setJPAComponent(JPAComponent instance)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(tc, "setJPAComponent", instance);
jpaComponent = instance;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.exit(... | java | public static void setJPAComponent(JPAComponent instance)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(tc, "setJPAComponent", instance);
jpaComponent = instance;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.exit(... | [
"public",
"static",
"void",
"setJPAComponent",
"(",
"JPAComponent",
"instance",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"setJPACompon... | Return the default JPAComponent object in the application server. | [
"Return",
"the",
"default",
"JPAComponent",
"object",
"in",
"the",
"application",
"server",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jpa.container.core/src/com/ibm/ws/jpa/JPAAccessor.java#L37-L46 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/CompositeTagDecorator.java | CompositeTagDecorator.decorate | public Tag decorate(Tag tag)
{
Tag t = null;
for (int i = 0; i < this.decorators.length; i++)
{
t = this.decorators[i].decorate(tag);
if (t != null)
{
return t;
}
}
return tag;
} | java | public Tag decorate(Tag tag)
{
Tag t = null;
for (int i = 0; i < this.decorators.length; i++)
{
t = this.decorators[i].decorate(tag);
if (t != null)
{
return t;
}
}
return tag;
} | [
"public",
"Tag",
"decorate",
"(",
"Tag",
"tag",
")",
"{",
"Tag",
"t",
"=",
"null",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"this",
".",
"decorators",
".",
"length",
";",
"i",
"++",
")",
"{",
"t",
"=",
"this",
".",
"decorators",
... | Uses the chain of responsibility pattern to stop processing if any of the TagDecorators return a value other than
null.
@see javax.faces.view.facelets.TagDecorator#decorate(javax.faces.view.facelets.Tag) | [
"Uses",
"the",
"chain",
"of",
"responsibility",
"pattern",
"to",
"stop",
"processing",
"if",
"any",
"of",
"the",
"TagDecorators",
"return",
"a",
"value",
"other",
"than",
"null",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/tag/CompositeTagDecorator.java#L50-L62 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.microprofile.config.1.1/src/com/ibm/ws/microprofile/config/impl/AbstractConfigBuilder.java | AbstractConfigBuilder.getConverters | protected PriorityConverterMap getConverters() {
//the map to be returned
PriorityConverterMap allConverters = new PriorityConverterMap();
//add the default converters
if (addDefaultConvertersFlag()) {
allConverters.addAll(getDefaultConverters());
}
//add the... | java | protected PriorityConverterMap getConverters() {
//the map to be returned
PriorityConverterMap allConverters = new PriorityConverterMap();
//add the default converters
if (addDefaultConvertersFlag()) {
allConverters.addAll(getDefaultConverters());
}
//add the... | [
"protected",
"PriorityConverterMap",
"getConverters",
"(",
")",
"{",
"//the map to be returned",
"PriorityConverterMap",
"allConverters",
"=",
"new",
"PriorityConverterMap",
"(",
")",
";",
"//add the default converters",
"if",
"(",
"addDefaultConvertersFlag",
"(",
")",
")",... | Get the converters, default, discovered and user registered converters are
included as appropriate.
Call this method only from within a 'synchronized(this) block
@return converters as a Map keyed on Type | [
"Get",
"the",
"converters",
"default",
"discovered",
"and",
"user",
"registered",
"converters",
"are",
"included",
"as",
"appropriate",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.microprofile.config.1.1/src/com/ibm/ws/microprofile/config/impl/AbstractConfigBuilder.java#L226-L244 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaColocatingEndpointActivation.java | SibRaColocatingEndpointActivation.getMEsToCheck | JsMessagingEngine[] getMEsToCheck()
{
final String methodName = "getMEsToCheck";
if (TraceComponent.isAnyTracingEnabled() && TRACE.isEntryEnabled())
{
SibTr.entry(this, TRACE, methodName);
}
JsMessagingEngine[] retVal = SibRaEngineComponent.getMessagingEngines (_... | java | JsMessagingEngine[] getMEsToCheck()
{
final String methodName = "getMEsToCheck";
if (TraceComponent.isAnyTracingEnabled() && TRACE.isEntryEnabled())
{
SibTr.entry(this, TRACE, methodName);
}
JsMessagingEngine[] retVal = SibRaEngineComponent.getMessagingEngines (_... | [
"JsMessagingEngine",
"[",
"]",
"getMEsToCheck",
"(",
")",
"{",
"final",
"String",
"methodName",
"=",
"\"getMEsToCheck\"",
";",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"TRACE",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"SibTr",... | All Messaging engines, including those that are not running, should be considered part of the list
that the MDB should look at before trying a remote connection.
@return The list of MEs that should be looked at by the RA to see if a connection can be made to them. | [
"All",
"Messaging",
"engines",
"including",
"those",
"that",
"are",
"not",
"running",
"should",
"be",
"considered",
"part",
"of",
"the",
"list",
"that",
"the",
"MDB",
"should",
"look",
"at",
"before",
"trying",
"a",
"remote",
"connection",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaColocatingEndpointActivation.java#L96-L111 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaColocatingEndpointActivation.java | SibRaColocatingEndpointActivation.removeStoppedMEs | JsMessagingEngine[] removeStoppedMEs (JsMessagingEngine[] MEList)
{
final String methodName = "removeStoppedMEs";
if (TraceComponent.isAnyTracingEnabled() && TRACE.isEntryEnabled())
{
SibTr.entry(this, TRACE, methodName, MEList);
}
JsMessagingEngine[] startedMEs =... | java | JsMessagingEngine[] removeStoppedMEs (JsMessagingEngine[] MEList)
{
final String methodName = "removeStoppedMEs";
if (TraceComponent.isAnyTracingEnabled() && TRACE.isEntryEnabled())
{
SibTr.entry(this, TRACE, methodName, MEList);
}
JsMessagingEngine[] startedMEs =... | [
"JsMessagingEngine",
"[",
"]",
"removeStoppedMEs",
"(",
"JsMessagingEngine",
"[",
"]",
"MEList",
")",
"{",
"final",
"String",
"methodName",
"=",
"\"removeStoppedMEs\"",
";",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"TRACE",
".",
"... | This method will remove non running MEs from the supplied array of MEs
@param MEList The list of MEs
@return A new array of MEs which only contain the running MEs from the supplied Array. | [
"This",
"method",
"will",
"remove",
"non",
"running",
"MEs",
"from",
"the",
"supplied",
"array",
"of",
"MEs"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaColocatingEndpointActivation.java#L118-L145 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaColocatingEndpointActivation.java | SibRaColocatingEndpointActivation.messagingEngineDestroyed | public void messagingEngineDestroyed(JsMessagingEngine messagingEngine)
{
final String methodName = "messagingEngineDestroyed";
if (TraceComponent.isAnyTracingEnabled() && TRACE.isEntryEnabled())
{
SibTr.entry(this, TRACE, methodName, messagingEngine);
}
/*
... | java | public void messagingEngineDestroyed(JsMessagingEngine messagingEngine)
{
final String methodName = "messagingEngineDestroyed";
if (TraceComponent.isAnyTracingEnabled() && TRACE.isEntryEnabled())
{
SibTr.entry(this, TRACE, methodName, messagingEngine);
}
/*
... | [
"public",
"void",
"messagingEngineDestroyed",
"(",
"JsMessagingEngine",
"messagingEngine",
")",
"{",
"final",
"String",
"methodName",
"=",
"\"messagingEngineDestroyed\"",
";",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"TRACE",
".",
"isEn... | If a messaging engine is destroyed and there are now no local messaging engines
on the server, then kick off a check to see if we can connect to one. | [
"If",
"a",
"messaging",
"engine",
"is",
"destroyed",
"and",
"there",
"are",
"now",
"no",
"local",
"messaging",
"engines",
"on",
"the",
"server",
"then",
"kick",
"off",
"a",
"check",
"to",
"see",
"if",
"we",
"can",
"connect",
"to",
"one",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaColocatingEndpointActivation.java#L151-L198 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/impl/ServerInstanceLogRecordListImpl.java | ServerInstanceLogRecordListImpl.getCache | public RemoteListCache getCache() {
RemoteRepositoryCache logCache = getLogResult()==null ? null : getLogResult().getCache();
RemoteRepositoryCache traceCache = getTraceResult()==null ? null : getTraceResult().getCache();
return switched ? new RemoteListCacheImpl(traceCache, logCache) : new RemoteListCacheImpl(lo... | java | public RemoteListCache getCache() {
RemoteRepositoryCache logCache = getLogResult()==null ? null : getLogResult().getCache();
RemoteRepositoryCache traceCache = getTraceResult()==null ? null : getTraceResult().getCache();
return switched ? new RemoteListCacheImpl(traceCache, logCache) : new RemoteListCacheImpl(lo... | [
"public",
"RemoteListCache",
"getCache",
"(",
")",
"{",
"RemoteRepositoryCache",
"logCache",
"=",
"getLogResult",
"(",
")",
"==",
"null",
"?",
"null",
":",
"getLogResult",
"(",
")",
".",
"getCache",
"(",
")",
";",
"RemoteRepositoryCache",
"traceCache",
"=",
"g... | returns this result cache usable for remote transport
@return cache instance used in remote log reading | [
"returns",
"this",
"result",
"cache",
"usable",
"for",
"remote",
"transport"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/impl/ServerInstanceLogRecordListImpl.java#L75-L79 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/impl/ServerInstanceLogRecordListImpl.java | ServerInstanceLogRecordListImpl.setCache | public void setCache(RemoteListCache cache) {
if (cache instanceof RemoteListCacheImpl) {
RemoteListCacheImpl cacheImpl = (RemoteListCacheImpl)cache;
if (getLogResult() != null) {
RemoteRepositoryCache logCache = switched ? cacheImpl.getTraceCache() : cacheImpl.getLogCache();
if (logCache != null) {
... | java | public void setCache(RemoteListCache cache) {
if (cache instanceof RemoteListCacheImpl) {
RemoteListCacheImpl cacheImpl = (RemoteListCacheImpl)cache;
if (getLogResult() != null) {
RemoteRepositoryCache logCache = switched ? cacheImpl.getTraceCache() : cacheImpl.getLogCache();
if (logCache != null) {
... | [
"public",
"void",
"setCache",
"(",
"RemoteListCache",
"cache",
")",
"{",
"if",
"(",
"cache",
"instanceof",
"RemoteListCacheImpl",
")",
"{",
"RemoteListCacheImpl",
"cacheImpl",
"=",
"(",
"RemoteListCacheImpl",
")",
"cache",
";",
"if",
"(",
"getLogResult",
"(",
")... | sets cache for this result based on the provided one
@param cache cache instance received in a remote call | [
"sets",
"cache",
"for",
"this",
"result",
"based",
"on",
"the",
"provided",
"one"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/impl/ServerInstanceLogRecordListImpl.java#L86-L104 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/impl/ServerInstanceLogRecordListImpl.java | ServerInstanceLogRecordListImpl.getNewIterator | protected Iterator<RepositoryLogRecord> getNewIterator(int offset, int length) {
OnePidRecordListImpl logResult = getLogResult();
OnePidRecordListImpl traceResult = getTraceResult();
if (logResult == null && traceResult == null) {
return EMPTY_ITERATOR;
} else if (traceResult == null) {
return logResult.g... | java | protected Iterator<RepositoryLogRecord> getNewIterator(int offset, int length) {
OnePidRecordListImpl logResult = getLogResult();
OnePidRecordListImpl traceResult = getTraceResult();
if (logResult == null && traceResult == null) {
return EMPTY_ITERATOR;
} else if (traceResult == null) {
return logResult.g... | [
"protected",
"Iterator",
"<",
"RepositoryLogRecord",
">",
"getNewIterator",
"(",
"int",
"offset",
",",
"int",
"length",
")",
"{",
"OnePidRecordListImpl",
"logResult",
"=",
"getLogResult",
"(",
")",
";",
"OnePidRecordListImpl",
"traceResult",
"=",
"getTraceResult",
"... | Creates new OnePidRecordIterator returning records in the range.
@param offset the number of records skipped from the beginning of the list.
@param length the number of records to return.
@return OnePidRecordIterator instance. | [
"Creates",
"new",
"OnePidRecordIterator",
"returning",
"records",
"in",
"the",
"range",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/impl/ServerInstanceLogRecordListImpl.java#L221-L235 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jaxws.clientcontainer/src/com/ibm/ws/jaxws/client/injection/WebServiceRefProcessor.java | WebServiceRefProcessor.processXML | @Override
public void processXML() throws InjectionException {
@SuppressWarnings("unchecked")
List<ServiceRef> serviceRefs = (List<ServiceRef>) ivNameSpaceConfig.getWebServiceRefs();
// no need to do any work if there are no service refs in the XML
if (serviceRefs == null || servic... | java | @Override
public void processXML() throws InjectionException {
@SuppressWarnings("unchecked")
List<ServiceRef> serviceRefs = (List<ServiceRef>) ivNameSpaceConfig.getWebServiceRefs();
// no need to do any work if there are no service refs in the XML
if (serviceRefs == null || servic... | [
"@",
"Override",
"public",
"void",
"processXML",
"(",
")",
"throws",
"InjectionException",
"{",
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"List",
"<",
"ServiceRef",
">",
"serviceRefs",
"=",
"(",
"List",
"<",
"ServiceRef",
">",
")",
"ivNameSpaceConfig",... | This method will process any service-ref elements in the client's deployment descriptor. | [
"This",
"method",
"will",
"process",
"any",
"service",
"-",
"ref",
"elements",
"in",
"the",
"client",
"s",
"deployment",
"descriptor",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxws.clientcontainer/src/com/ibm/ws/jaxws/client/injection/WebServiceRefProcessor.java#L81-L126 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jaxws.clientcontainer/src/com/ibm/ws/jaxws/client/injection/WebServiceRefProcessor.java | WebServiceRefProcessor.resolve | @Override
public void resolve(InjectionBinding<WebServiceRef> binding) throws InjectionException {
// This was a JAX-WS service reference, we need to do some setup for
// our object factory, and we also need to make sure we store the
// metadata away in the appropriate location.
We... | java | @Override
public void resolve(InjectionBinding<WebServiceRef> binding) throws InjectionException {
// This was a JAX-WS service reference, we need to do some setup for
// our object factory, and we also need to make sure we store the
// metadata away in the appropriate location.
We... | [
"@",
"Override",
"public",
"void",
"resolve",
"(",
"InjectionBinding",
"<",
"WebServiceRef",
">",
"binding",
")",
"throws",
"InjectionException",
"{",
"// This was a JAX-WS service reference, we need to do some setup for",
"// our object factory, and we also need to make sure we stor... | This method will resolve the InjectionBinding it is given. This involves storing the correct information within
the binding instance so that later on the injection can occur. It also enables JNDI lookups to occur on the
resource that is indicated in the binding. | [
"This",
"method",
"will",
"resolve",
"the",
"InjectionBinding",
"it",
"is",
"given",
".",
"This",
"involves",
"storing",
"the",
"correct",
"information",
"within",
"the",
"binding",
"instance",
"so",
"that",
"later",
"on",
"the",
"injection",
"can",
"occur",
"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxws.clientcontainer/src/com/ibm/ws/jaxws/client/injection/WebServiceRefProcessor.java#L236-L300 | train |
OpenLiberty/open-liberty | dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java | SelfExtractor.checkResponseCode | private static void checkResponseCode(URLConnection uc) throws IOException {
if (uc instanceof HttpURLConnection) {
HttpURLConnection httpConnection = (HttpURLConnection) uc;
int rc = httpConnection.getResponseCode();
if (rc != HttpURLConnection.HTTP_OK && rc != HttpURLConnec... | java | private static void checkResponseCode(URLConnection uc) throws IOException {
if (uc instanceof HttpURLConnection) {
HttpURLConnection httpConnection = (HttpURLConnection) uc;
int rc = httpConnection.getResponseCode();
if (rc != HttpURLConnection.HTTP_OK && rc != HttpURLConnec... | [
"private",
"static",
"void",
"checkResponseCode",
"(",
"URLConnection",
"uc",
")",
"throws",
"IOException",
"{",
"if",
"(",
"uc",
"instanceof",
"HttpURLConnection",
")",
"{",
"HttpURLConnection",
"httpConnection",
"=",
"(",
"HttpURLConnection",
")",
"uc",
";",
"in... | If URLConnection is an HTTP connection, check that the response code is HTTP_OK
@param uc the URLConnection
@throws IOException if the URLConnection is an HttpURLConnection and the response code is not HTTP_OK (200) or HTTP_MOVED_TEMP (302) | [
"If",
"URLConnection",
"is",
"an",
"HTTP",
"connection",
"check",
"that",
"the",
"response",
"code",
"is",
"HTTP_OK"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java#L851-L859 | train |
OpenLiberty/open-liberty | dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java | SelfExtractor.getCommonRootDir | private String getCommonRootDir(String filePath, HashMap validFilePaths) {
for (Iterator it = validFilePaths.entrySet().iterator(); it.hasNext();) {
Map.Entry entry = (Map.Entry) it.next();
String path = (String) ((entry).getKey());
if (filePath.startsWith(path))
... | java | private String getCommonRootDir(String filePath, HashMap validFilePaths) {
for (Iterator it = validFilePaths.entrySet().iterator(); it.hasNext();) {
Map.Entry entry = (Map.Entry) it.next();
String path = (String) ((entry).getKey());
if (filePath.startsWith(path))
... | [
"private",
"String",
"getCommonRootDir",
"(",
"String",
"filePath",
",",
"HashMap",
"validFilePaths",
")",
"{",
"for",
"(",
"Iterator",
"it",
"=",
"validFilePaths",
".",
"entrySet",
"(",
")",
".",
"iterator",
"(",
")",
";",
"it",
".",
"hasNext",
"(",
")",
... | Retrieves the directory in common between the specified path and the archive root directory.
If the file path cannot be found among the valid paths then null is returned.
@param filePath Path to the file to check
@param validFilePaths A list of valid file paths and their common directories with the root
@return ... | [
"Retrieves",
"the",
"directory",
"in",
"common",
"between",
"the",
"specified",
"path",
"and",
"the",
"archive",
"root",
"directory",
".",
"If",
"the",
"file",
"path",
"cannot",
"be",
"found",
"among",
"the",
"valid",
"paths",
"then",
"null",
"is",
"returned... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java#L982-L991 | train |
OpenLiberty/open-liberty | dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java | SelfExtractor.getExtensionInstallDirs | private ArrayList<String> getExtensionInstallDirs() throws IOException {
String extensiondir = root + "etc/extensions/";
ArrayList<String> extensionDirs = new ArrayList<String>();
for (Entry entry : container) {
if (entry.getName().startsWith(extensiondir) && entry.getName().endsWit... | java | private ArrayList<String> getExtensionInstallDirs() throws IOException {
String extensiondir = root + "etc/extensions/";
ArrayList<String> extensionDirs = new ArrayList<String>();
for (Entry entry : container) {
if (entry.getName().startsWith(extensiondir) && entry.getName().endsWit... | [
"private",
"ArrayList",
"<",
"String",
">",
"getExtensionInstallDirs",
"(",
")",
"throws",
"IOException",
"{",
"String",
"extensiondir",
"=",
"root",
"+",
"\"etc/extensions/\"",
";",
"ArrayList",
"<",
"String",
">",
"extensionDirs",
"=",
"new",
"ArrayList",
"<",
... | Retrieves all the extension products' install directories as indicated their properties file.
@return List of extension products' install directories.
@throws IOException | [
"Retrieves",
"all",
"the",
"extension",
"products",
"install",
"directories",
"as",
"indicated",
"their",
"properties",
"file",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java#L999-L1016 | train |
OpenLiberty/open-liberty | dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java | SelfExtractor.printNeededIFixes | public static void printNeededIFixes(File outputDir, List extractedFiles) {
try {
// To get the ifix information we run the productInfo validate command which as well as
// listing the state of the runtime, also displays any ifixes that need to be reapplied.
Runtime runtime =... | java | public static void printNeededIFixes(File outputDir, List extractedFiles) {
try {
// To get the ifix information we run the productInfo validate command which as well as
// listing the state of the runtime, also displays any ifixes that need to be reapplied.
Runtime runtime =... | [
"public",
"static",
"void",
"printNeededIFixes",
"(",
"File",
"outputDir",
",",
"List",
"extractedFiles",
")",
"{",
"try",
"{",
"// To get the ifix information we run the productInfo validate command which as well as",
"// listing the state of the runtime, also displays any ifixes that... | If necessary this will print a message saying that the installed files mean that an iFix needs to be re-installed.
@param outputDir The directory where the files were extracted to (typically the "wlp" directory)
@param extractedFiles A list of Strings which are file paths within the directory | [
"If",
"necessary",
"this",
"will",
"print",
"a",
"message",
"saying",
"that",
"the",
"installed",
"files",
"mean",
"that",
"an",
"iFix",
"needs",
"to",
"be",
"re",
"-",
"installed",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java#L1143-L1166 | train |
OpenLiberty/open-liberty | dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java | SelfExtractor.listMissingCoreFeatures | protected Set listMissingCoreFeatures(File outputDir) throws SelfExtractorFileException {
Set missingFeatures = new HashSet();
// If we have a Require Feature manifest header, we need to check that the runtime we're extracting into contains the
// required features. If the customer has minifie... | java | protected Set listMissingCoreFeatures(File outputDir) throws SelfExtractorFileException {
Set missingFeatures = new HashSet();
// If we have a Require Feature manifest header, we need to check that the runtime we're extracting into contains the
// required features. If the customer has minifie... | [
"protected",
"Set",
"listMissingCoreFeatures",
"(",
"File",
"outputDir",
")",
"throws",
"SelfExtractorFileException",
"{",
"Set",
"missingFeatures",
"=",
"new",
"HashSet",
"(",
")",
";",
"// If we have a Require Feature manifest header, we need to check that the runtime we're ext... | This method checks that all the core features defined in the the manifest header exist in the server runtime
we're extracting into, and returns any features that don't.
If the coreFeatures header is blank it means we're not an extended jar.
@return A Set of Strings containing the features that are missing from the ins... | [
"This",
"method",
"checks",
"that",
"all",
"the",
"core",
"features",
"defined",
"in",
"the",
"the",
"manifest",
"header",
"exist",
"in",
"the",
"server",
"runtime",
"we",
"re",
"extracting",
"into",
"and",
"returns",
"any",
"features",
"that",
"don",
"t",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java#L1211-L1266 | train |
OpenLiberty/open-liberty | dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java | SelfExtractor.argIsOption | protected static boolean argIsOption(String arg, String option) {
return arg.equalsIgnoreCase(option) || arg.equalsIgnoreCase('-' + option);
} | java | protected static boolean argIsOption(String arg, String option) {
return arg.equalsIgnoreCase(option) || arg.equalsIgnoreCase('-' + option);
} | [
"protected",
"static",
"boolean",
"argIsOption",
"(",
"String",
"arg",
",",
"String",
"option",
")",
"{",
"return",
"arg",
".",
"equalsIgnoreCase",
"(",
"option",
")",
"||",
"arg",
".",
"equalsIgnoreCase",
"(",
"'",
"'",
"+",
"option",
")",
";",
"}"
] | Test if the argument is an option. Allow single or double leading -, be
case insensitive.
@param arg
User specified argument
@param option
Option for test/comparison
@return true if the argument matches the option | [
"Test",
"if",
"the",
"argument",
"is",
"an",
"option",
".",
"Allow",
"single",
"or",
"double",
"leading",
"-",
"be",
"case",
"insensitive",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java#L1334-L1336 | train |
OpenLiberty/open-liberty | dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java | SelfExtractor.displayCommandLineHelp | protected static void displayCommandLineHelp(SelfExtractor extractor) {
// This method takes a SelfExtractor in case we want to tailor the help to the current archive
// Get the name of the JAR file to display in the command syntax");
String jarName = System.getProperty("sun.java.command", "wlp-... | java | protected static void displayCommandLineHelp(SelfExtractor extractor) {
// This method takes a SelfExtractor in case we want to tailor the help to the current archive
// Get the name of the JAR file to display in the command syntax");
String jarName = System.getProperty("sun.java.command", "wlp-... | [
"protected",
"static",
"void",
"displayCommandLineHelp",
"(",
"SelfExtractor",
"extractor",
")",
"{",
"// This method takes a SelfExtractor in case we want to tailor the help to the current archive",
"// Get the name of the JAR file to display in the command syntax\");",
"String",
"jarName",... | Display command line usage. | [
"Display",
"command",
"line",
"usage",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java#L1341-L1364 | train |
OpenLiberty/open-liberty | dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java | SelfExtractor.handleLicenseAcceptance | public void handleLicenseAcceptance(LicenseProvider licenseProvider, boolean acceptLicense) {
//
// Display license requirement
//
SelfExtract.wordWrappedOut(SelfExtract.format("licenseStatement", new Object[] { licenseProvider.getProgramName(), licenseProvider.getLicenseName() }));
... | java | public void handleLicenseAcceptance(LicenseProvider licenseProvider, boolean acceptLicense) {
//
// Display license requirement
//
SelfExtract.wordWrappedOut(SelfExtract.format("licenseStatement", new Object[] { licenseProvider.getProgramName(), licenseProvider.getLicenseName() }));
... | [
"public",
"void",
"handleLicenseAcceptance",
"(",
"LicenseProvider",
"licenseProvider",
",",
"boolean",
"acceptLicense",
")",
"{",
"//",
"// Display license requirement",
"//",
"SelfExtract",
".",
"wordWrappedOut",
"(",
"SelfExtract",
".",
"format",
"(",
"\"licenseStateme... | This method will print out information about the license and if necessary prompt the user to accept it.
@param licenseProvider The license provider to use to get information about the license from the archive
@param acceptLicense <code>true</code> if the license should be automatically accepted | [
"This",
"method",
"will",
"print",
"out",
"information",
"about",
"the",
"license",
"and",
"if",
"necessary",
"prompt",
"the",
"user",
"to",
"accept",
"it",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java#L1390-L1407 | train |
OpenLiberty/open-liberty | dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java | SelfExtractor.obtainLicenseAgreement | private static boolean obtainLicenseAgreement(LicenseProvider licenseProvider) {
// Prompt for word-wrapped display of license agreement & information
boolean view;
SelfExtract.wordWrappedOut(SelfExtract.format("showAgreement", "--viewLicenseAgreement"));
view = SelfExtract.getResponse(... | java | private static boolean obtainLicenseAgreement(LicenseProvider licenseProvider) {
// Prompt for word-wrapped display of license agreement & information
boolean view;
SelfExtract.wordWrappedOut(SelfExtract.format("showAgreement", "--viewLicenseAgreement"));
view = SelfExtract.getResponse(... | [
"private",
"static",
"boolean",
"obtainLicenseAgreement",
"(",
"LicenseProvider",
"licenseProvider",
")",
"{",
"// Prompt for word-wrapped display of license agreement & information",
"boolean",
"view",
";",
"SelfExtract",
".",
"wordWrappedOut",
"(",
"SelfExtract",
".",
"format... | Display and obtain agreement for the license terms | [
"Display",
"and",
"obtain",
"agreement",
"for",
"the",
"license",
"terms"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java#L1412-L1439 | train |
OpenLiberty/open-liberty | dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java | SelfExtractor.close | public String close() {
if (instance == null) {
return null;
}
try {
container.close();
instance = null;
} catch (IOException e) {
return e.getMessage();
}
return null;
} | java | public String close() {
if (instance == null) {
return null;
}
try {
container.close();
instance = null;
} catch (IOException e) {
return e.getMessage();
}
return null;
} | [
"public",
"String",
"close",
"(",
")",
"{",
"if",
"(",
"instance",
"==",
"null",
")",
"{",
"return",
"null",
";",
"}",
"try",
"{",
"container",
".",
"close",
"(",
")",
";",
"instance",
"=",
"null",
";",
"}",
"catch",
"(",
"IOException",
"e",
")",
... | Release the jar file and null instance so that it can be deleted | [
"Release",
"the",
"jar",
"file",
"and",
"null",
"instance",
"so",
"that",
"it",
"can",
"be",
"deleted"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/wlp.lib.extract/src/wlp/lib/extract/SelfExtractor.java#L1463-L1474 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java | EventLocalMap.clear | public void clear() {
// TODO not currently used since EventImpl itself doesn't have a clear
this.parentMap = null;
if (null != this.values) {
for (int i = 0; i < this.values.length; i++) {
this.values[i] = null;
}
this.values = null;
}... | java | public void clear() {
// TODO not currently used since EventImpl itself doesn't have a clear
this.parentMap = null;
if (null != this.values) {
for (int i = 0; i < this.values.length; i++) {
this.values[i] = null;
}
this.values = null;
}... | [
"public",
"void",
"clear",
"(",
")",
"{",
"// TODO not currently used since EventImpl itself doesn't have a clear",
"this",
".",
"parentMap",
"=",
"null",
";",
"if",
"(",
"null",
"!=",
"this",
".",
"values",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"... | Clear all content from this map. This will disconnect from any parent
map as well. | [
"Clear",
"all",
"content",
"from",
"this",
"map",
".",
"This",
"will",
"disconnect",
"from",
"any",
"parent",
"map",
"as",
"well",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java#L58-L67 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java | EventLocalMap.get | public V get(String name) {
V rc = null;
K key = getKey(name);
if (null != key) {
rc = get(key);
}
return rc;
} | java | public V get(String name) {
V rc = null;
K key = getKey(name);
if (null != key) {
rc = get(key);
}
return rc;
} | [
"public",
"V",
"get",
"(",
"String",
"name",
")",
"{",
"V",
"rc",
"=",
"null",
";",
"K",
"key",
"=",
"getKey",
"(",
"name",
")",
";",
"if",
"(",
"null",
"!=",
"key",
")",
"{",
"rc",
"=",
"get",
"(",
"key",
")",
";",
"}",
"return",
"rc",
";"... | Query the possible value associated with a named EventLocal. A null is
returned if the name does not match any stored value or if that stored
value is explicitly null.
@param name
@return V | [
"Query",
"the",
"possible",
"value",
"associated",
"with",
"a",
"named",
"EventLocal",
".",
"A",
"null",
"is",
"returned",
"if",
"the",
"name",
"does",
"not",
"match",
"any",
"stored",
"value",
"or",
"if",
"that",
"stored",
"value",
"is",
"explicitly",
"nu... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java#L77-L84 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java | EventLocalMap.getKey | private K getKey(String name) {
if (null != this.keys) {
// we have locally stored values
final K[] temp = this.keys;
K key;
for (int i = 0; i < temp.length; i++) {
key = temp[i];
if (null != key && name.equals(key.toString())) {
... | java | private K getKey(String name) {
if (null != this.keys) {
// we have locally stored values
final K[] temp = this.keys;
K key;
for (int i = 0; i < temp.length; i++) {
key = temp[i];
if (null != key && name.equals(key.toString())) {
... | [
"private",
"K",
"getKey",
"(",
"String",
"name",
")",
"{",
"if",
"(",
"null",
"!=",
"this",
".",
"keys",
")",
"{",
"// we have locally stored values",
"final",
"K",
"[",
"]",
"temp",
"=",
"this",
".",
"keys",
";",
"K",
"key",
";",
"for",
"(",
"int",
... | Look for the key with the provided name. This returns null if no match
is found.
@param name
@return K | [
"Look",
"for",
"the",
"key",
"with",
"the",
"provided",
"name",
".",
"This",
"returns",
"null",
"if",
"no",
"match",
"is",
"found",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java#L93-L110 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java | EventLocalMap.get | public V get(K key) {
return get(key.hashCode() / SIZE_ROW, key.hashCode() % SIZE_ROW);
} | java | public V get(K key) {
return get(key.hashCode() / SIZE_ROW, key.hashCode() % SIZE_ROW);
} | [
"public",
"V",
"get",
"(",
"K",
"key",
")",
"{",
"return",
"get",
"(",
"key",
".",
"hashCode",
"(",
")",
"/",
"SIZE_ROW",
",",
"key",
".",
"hashCode",
"(",
")",
"%",
"SIZE_ROW",
")",
";",
"}"
] | Query the value for the provided key.
@param key
@return V | [
"Query",
"the",
"value",
"for",
"the",
"provided",
"key",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java#L118-L120 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java | EventLocalMap.put | public void put(K key, V value) {
final int hash = key.hashCode();
final int row = hash / SIZE_ROW;
final int column = hash & (SIZE_ROW - 1); // DON'T use the % operator as we
// need the result to be
... | java | public void put(K key, V value) {
final int hash = key.hashCode();
final int row = hash / SIZE_ROW;
final int column = hash & (SIZE_ROW - 1); // DON'T use the % operator as we
// need the result to be
... | [
"public",
"void",
"put",
"(",
"K",
"key",
",",
"V",
"value",
")",
"{",
"final",
"int",
"hash",
"=",
"key",
".",
"hashCode",
"(",
")",
";",
"final",
"int",
"row",
"=",
"hash",
"/",
"SIZE_ROW",
";",
"final",
"int",
"column",
"=",
"hash",
"&",
"(",
... | Put a key and value pair into the storage map.
@param key
@param value | [
"Put",
"a",
"key",
"and",
"value",
"pair",
"into",
"the",
"storage",
"map",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java#L147-L158 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java | EventLocalMap.remove | public V remove(K key) {
final int hash = key.hashCode();
final int row = hash / SIZE_ROW;
final int column = hash & (SIZE_ROW - 1); // DON'T use the % operator as we
// need the result to be
// n... | java | public V remove(K key) {
final int hash = key.hashCode();
final int row = hash / SIZE_ROW;
final int column = hash & (SIZE_ROW - 1); // DON'T use the % operator as we
// need the result to be
// n... | [
"public",
"V",
"remove",
"(",
"K",
"key",
")",
"{",
"final",
"int",
"hash",
"=",
"key",
".",
"hashCode",
"(",
")",
";",
"final",
"int",
"row",
"=",
"hash",
"/",
"SIZE_ROW",
";",
"final",
"int",
"column",
"=",
"hash",
"&",
"(",
"SIZE_ROW",
"-",
"1... | Remove a key from the storage.
@param key
@return V, existing object, null if none present | [
"Remove",
"a",
"key",
"from",
"the",
"storage",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java#L166-L179 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java | EventLocalMap.validateKey | @SuppressWarnings("unchecked")
private void validateKey(int index) {
final int size = (index + 1);
if (null == this.keys) {
// nothing has been created yet
this.keys = (K[]) new Object[size];
} else if (index >= this.keys.length) {
// this row puts us beyo... | java | @SuppressWarnings("unchecked")
private void validateKey(int index) {
final int size = (index + 1);
if (null == this.keys) {
// nothing has been created yet
this.keys = (K[]) new Object[size];
} else if (index >= this.keys.length) {
// this row puts us beyo... | [
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"private",
"void",
"validateKey",
"(",
"int",
"index",
")",
"{",
"final",
"int",
"size",
"=",
"(",
"index",
"+",
"1",
")",
";",
"if",
"(",
"null",
"==",
"this",
".",
"keys",
")",
"{",
"// nothing has ... | Ensure that we have space in the local key array for the target index.
@param index | [
"Ensure",
"that",
"we",
"have",
"space",
"in",
"the",
"local",
"key",
"array",
"for",
"the",
"target",
"index",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java#L186-L198 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java | EventLocalMap.validateTable | @SuppressWarnings("unchecked")
private void validateTable(int targetRow) {
// TODO pooling of the arrays?
if (null == this.values) {
// nothing has been created yet
int size = (targetRow + 1);
if (SIZE_TABLE > size) {
size = SIZE_TABLE;
... | java | @SuppressWarnings("unchecked")
private void validateTable(int targetRow) {
// TODO pooling of the arrays?
if (null == this.values) {
// nothing has been created yet
int size = (targetRow + 1);
if (SIZE_TABLE > size) {
size = SIZE_TABLE;
... | [
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"private",
"void",
"validateTable",
"(",
"int",
"targetRow",
")",
"{",
"// TODO pooling of the arrays?",
"if",
"(",
"null",
"==",
"this",
".",
"values",
")",
"{",
"// nothing has been created yet",
"int",
"size",
... | Validate that the storage table contains the provided row. This will
allocate new space if that is required.
@param targetRow | [
"Validate",
"that",
"the",
"storage",
"table",
"contains",
"the",
"provided",
"row",
".",
"This",
"will",
"allocate",
"new",
"space",
"if",
"that",
"is",
"required",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.event/src/com/ibm/ws/event/internal/EventLocalMap.java#L206-L231 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/runtime/impl/AttachedRemoteSubscriberControl.java | AttachedRemoteSubscriberControl.getRemoteEngineUuid | public String getRemoteEngineUuid()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "getRemoteEngineUuid");
String engineUUID = _anycastInputHandler.getLocalisationUuid().toString();
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
... | java | public String getRemoteEngineUuid()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "getRemoteEngineUuid");
String engineUUID = _anycastInputHandler.getLocalisationUuid().toString();
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
... | [
"public",
"String",
"getRemoteEngineUuid",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"\"getRemoteEngineUuid\"",
")",
";",
"String... | Return the remote engine uuid | [
"Return",
"the",
"remote",
"engine",
"uuid"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/runtime/impl/AttachedRemoteSubscriberControl.java#L112-L122 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.