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.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java | SSLConnectionLink.ready | @Override
public void ready(VirtualConnection inVC) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "ready, vc=" + getVCHash());
}
// Double check for error condition where close already happened. Protective measure.
if (!closed && Framew... | java | @Override
public void ready(VirtualConnection inVC) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "ready, vc=" + getVCHash());
}
// Double check for error condition where close already happened. Protective measure.
if (!closed && Framew... | [
"@",
"Override",
"public",
"void",
"ready",
"(",
"VirtualConnection",
"inVC",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"ready... | This method will be called at one of two times. If this connection link
is part of an inbound chain, then this will be called when the device side
channel has accepted a new connection and determined that this is the next
channel in the chain. Note, that the Discriminator may have already been
run. The second case wher... | [
"This",
"method",
"will",
"be",
"called",
"at",
"one",
"of",
"two",
"times",
".",
"If",
"this",
"connection",
"link",
"is",
"part",
"of",
"an",
"inbound",
"chain",
"then",
"this",
"will",
"be",
"called",
"when",
"the",
"device",
"side",
"channel",
"has",... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java#L282-L359 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java | SSLConnectionLink.readyInboundPostHandshake | protected void readyInboundPostHandshake(
WsByteBuffer netBuffer,
WsByteBuffer decryptedNetBuffer,
WsByteBuffer encryptedAppBuffer,
Handshak... | java | protected void readyInboundPostHandshake(
WsByteBuffer netBuffer,
WsByteBuffer decryptedNetBuffer,
WsByteBuffer encryptedAppBuffer,
Handshak... | [
"protected",
"void",
"readyInboundPostHandshake",
"(",
"WsByteBuffer",
"netBuffer",
",",
"WsByteBuffer",
"decryptedNetBuffer",
",",
"WsByteBuffer",
"encryptedAppBuffer",
",",
"HandshakeStatus",
"hsStatus",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
... | This method is called after the SSL handshake has taken place.
@param netBuffer
@param decryptedNetBuffer
@param encryptedAppBuffer
@param hsStatus | [
"This",
"method",
"is",
"called",
"after",
"the",
"SSL",
"handshake",
"has",
"taken",
"place",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java#L683-L742 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java | SSLConnectionLink.readyOutbound | private void readyOutbound(VirtualConnection inVC, boolean async) throws IOException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "readyOutbound, vc=" + getVCHash());
}
final SSLChannelData config = this.sslChannel.getConfig();
// Encrypt... | java | private void readyOutbound(VirtualConnection inVC, boolean async) throws IOException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "readyOutbound, vc=" + getVCHash());
}
final SSLChannelData config = this.sslChannel.getConfig();
// Encrypt... | [
"private",
"void",
"readyOutbound",
"(",
"VirtualConnection",
"inVC",
",",
"boolean",
"async",
")",
"throws",
"IOException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"Tr",
... | Handle work required by the ready method for outbound connections. When called, the
outbound socket has been established. Establish the SSL connection before reporting
to the next channel. Note, this method is called in both sync and async flows.
@param inVC virtual connection associated with this request
@param async... | [
"Handle",
"work",
"required",
"by",
"the",
"ready",
"method",
"for",
"outbound",
"connections",
".",
"When",
"called",
"the",
"outbound",
"socket",
"has",
"been",
"established",
".",
"Establish",
"the",
"SSL",
"connection",
"before",
"reporting",
"to",
"the",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java#L753-L825 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java | SSLConnectionLink.readyOutboundPostHandshake | protected void readyOutboundPostHandshake(
WsByteBuffer netBuffer,
WsByteBuffer decryptedNetBuffer,
WsByteBuffer encryptedAppBuffer,
Han... | java | protected void readyOutboundPostHandshake(
WsByteBuffer netBuffer,
WsByteBuffer decryptedNetBuffer,
WsByteBuffer encryptedAppBuffer,
Han... | [
"protected",
"void",
"readyOutboundPostHandshake",
"(",
"WsByteBuffer",
"netBuffer",
",",
"WsByteBuffer",
"decryptedNetBuffer",
",",
"WsByteBuffer",
"encryptedAppBuffer",
",",
"HandshakeStatus",
"hsStatus",
",",
"boolean",
"async",
")",
"throws",
"IOException",
"{",
"if",... | This method is called to handle the results of an SSL handshake. This may be called
by a callback or in the same thread as the connect request.
@param netBuffer buffer for data flowing in fron the net
@param decryptedNetBuffer buffer for decrypted data from the net
@param encryptedAppBuffer buffer for encrypted data f... | [
"This",
"method",
"is",
"called",
"to",
"handle",
"the",
"results",
"of",
"an",
"SSL",
"handshake",
".",
"This",
"may",
"be",
"called",
"by",
"a",
"callback",
"or",
"in",
"the",
"same",
"thread",
"as",
"the",
"connect",
"request",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java#L838-L910 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java | SSLConnectionLink.handleRedundantConnect | private void handleRedundantConnect() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "handleRedundantConnect, vc=" + getVCHash());
}
// This conn link has already been connected.
// Need to shut get a new SSL engine.
cleanup();
... | java | private void handleRedundantConnect() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "handleRedundantConnect, vc=" + getVCHash());
}
// This conn link has already been connected.
// Need to shut get a new SSL engine.
cleanup();
... | [
"private",
"void",
"handleRedundantConnect",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"handleRedundantConnect, vc=\"",
"+",
... | This method is called if connect or connectAsync are called redundantly, after
the connection is already established. It cleans up the SSL engine. The connect
methods will then pass the connect on down the chain where, eventually, a new
socket will be established with this virtual connection. | [
"This",
"method",
"is",
"called",
"if",
"connect",
"or",
"connectAsync",
"are",
"called",
"redundantly",
"after",
"the",
"connection",
"is",
"already",
"established",
".",
"It",
"cleans",
"up",
"the",
"SSL",
"engine",
".",
"The",
"connect",
"methods",
"will",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java#L918-L937 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java | SSLConnectionLink.setAlpnProtocol | public void setAlpnProtocol(String protocol) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "setAlpnProtocol: " + protocol + " " + this);
}
this.alpnProtocol = protocol;
this.sslConnectionContext.setAlpnProtocol(protocol);
} | java | public void setAlpnProtocol(String protocol) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "setAlpnProtocol: " + protocol + " " + this);
}
this.alpnProtocol = protocol;
this.sslConnectionContext.setAlpnProtocol(protocol);
} | [
"public",
"void",
"setAlpnProtocol",
"(",
"String",
"protocol",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"debug",
"(",
"tc",
",",
"\"setAlpnProtocol: \"",
... | Set the ALPN protocol negotiated for this link
@param String protocol | [
"Set",
"the",
"ALPN",
"protocol",
"negotiated",
"for",
"this",
"link"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java#L1255-L1261 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/udpchannel/internal/UDPChannel.java | UDPChannel.destroyConnLinks | private void destroyConnLinks() {
synchronized (inUse) {
int numlinks = inUse.size();
for (int i = 0; i < numlinks; i++) {
inUse.removeFirst().destroy(null);
}
}
} | java | private void destroyConnLinks() {
synchronized (inUse) {
int numlinks = inUse.size();
for (int i = 0; i < numlinks; i++) {
inUse.removeFirst().destroy(null);
}
}
} | [
"private",
"void",
"destroyConnLinks",
"(",
")",
"{",
"synchronized",
"(",
"inUse",
")",
"{",
"int",
"numlinks",
"=",
"inUse",
".",
"size",
"(",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"numlinks",
";",
"i",
"++",
")",
"{",
"inU... | call the destroy on all the UDPConnLink objects related to this
UDPChannel which are currently "in use". | [
"call",
"the",
"destroy",
"on",
"all",
"the",
"UDPConnLink",
"objects",
"related",
"to",
"this",
"UDPChannel",
"which",
"are",
"currently",
"in",
"use",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/udpchannel/internal/UDPChannel.java#L304-L311 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/udpchannel/internal/UDPChannel.java | UDPChannel.verifySender | public boolean verifySender(InetAddress remoteAddr) {
boolean returnValue = true;
if (alists != null) {
returnValue = !alists.accessDenied(remoteAddr);
}
return returnValue;
} | java | public boolean verifySender(InetAddress remoteAddr) {
boolean returnValue = true;
if (alists != null) {
returnValue = !alists.accessDenied(remoteAddr);
}
return returnValue;
} | [
"public",
"boolean",
"verifySender",
"(",
"InetAddress",
"remoteAddr",
")",
"{",
"boolean",
"returnValue",
"=",
"true",
";",
"if",
"(",
"alists",
"!=",
"null",
")",
"{",
"returnValue",
"=",
"!",
"alists",
".",
"accessDenied",
"(",
"remoteAddr",
")",
";",
"... | Verify whether the remote address is allowed to communicated with the
channel.
@param remoteAddr
@return boolean - false means it is denied | [
"Verify",
"whether",
"the",
"remote",
"address",
"is",
"allowed",
"to",
"communicated",
"with",
"the",
"channel",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/udpchannel/internal/UDPChannel.java#L324-L331 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.authentication.filter/src/com/ibm/ws/security/authentication/filter/internal/IPAddressRange.java | IPAddressRange.aboveRange | public boolean aboveRange(InetAddress ip) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "aboveRange, ip is " + ip);
Tr.debug(tc, "aboveRange, ip is " + ip);
}
return greaterThan(ip, ipHigher);
} | java | public boolean aboveRange(InetAddress ip) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "aboveRange, ip is " + ip);
Tr.debug(tc, "aboveRange, ip is " + ip);
}
return greaterThan(ip, ipHigher);
} | [
"public",
"boolean",
"aboveRange",
"(",
"InetAddress",
"ip",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"debug",
"(",
"tc",
",",
"\"aboveRange, ip is \"",
"... | Is the given ip address numericaly above the address range?
Is it above ipHigher? | [
"Is",
"the",
"given",
"ip",
"address",
"numericaly",
"above",
"the",
"address",
"range?",
"Is",
"it",
"above",
"ipHigher?"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.authentication.filter/src/com/ibm/ws/security/authentication/filter/internal/IPAddressRange.java#L233-L239 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.authentication.filter/src/com/ibm/ws/security/authentication/filter/internal/IPAddressRange.java | IPAddressRange.belowRange | public boolean belowRange(InetAddress ip) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "belowRange, ip is " + ip);
Tr.debug(tc, "belowRange, ipLower is " + ipLower);
}
return lessThan(ip, ipLower);
} | java | public boolean belowRange(InetAddress ip) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "belowRange, ip is " + ip);
Tr.debug(tc, "belowRange, ipLower is " + ipLower);
}
return lessThan(ip, ipLower);
} | [
"public",
"boolean",
"belowRange",
"(",
"InetAddress",
"ip",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"debug",
"(",
"tc",
",",
"\"belowRange, ip is \"",
"... | Is the given ip address numerically below the address range?
Is it below ipLower?
@param ip
@return | [
"Is",
"the",
"given",
"ip",
"address",
"numerically",
"below",
"the",
"address",
"range?",
"Is",
"it",
"below",
"ipLower?"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.authentication.filter/src/com/ibm/ws/security/authentication/filter/internal/IPAddressRange.java#L248-L254 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.microprofile.metrics.cdi/src/io/astefanutti/metrics/cdi/SeMetricName.java | SeMetricName.metadataValueOf | private String metadataValueOf(String value) {
if (value == null || value.trim().isEmpty())
return null;
return value;
} | java | private String metadataValueOf(String value) {
if (value == null || value.trim().isEmpty())
return null;
return value;
} | [
"private",
"String",
"metadataValueOf",
"(",
"String",
"value",
")",
"{",
"if",
"(",
"value",
"==",
"null",
"||",
"value",
".",
"trim",
"(",
")",
".",
"isEmpty",
"(",
")",
")",
"return",
"null",
";",
"return",
"value",
";",
"}"
] | Since annotations have the default value of "", convert it to null.
@param value
@return The value of the metadata field if present, null otherwise | [
"Since",
"annotations",
"have",
"the",
"default",
"value",
"of",
"convert",
"it",
"to",
"null",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.microprofile.metrics.cdi/src/io/astefanutti/metrics/cdi/SeMetricName.java#L167-L171 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ws/ejbcontainer/util/PoolImplThreadSafe.java | PoolImplThreadSafe.get | @Override
public final Object get() {
Object o = buffer.pop();
if (beanPerf != null) { // Update PMI data
beanPerf.objectRetrieve(buffer.size(), (o != null));
}
return o;
} | java | @Override
public final Object get() {
Object o = buffer.pop();
if (beanPerf != null) { // Update PMI data
beanPerf.objectRetrieve(buffer.size(), (o != null));
}
return o;
} | [
"@",
"Override",
"public",
"final",
"Object",
"get",
"(",
")",
"{",
"Object",
"o",
"=",
"buffer",
".",
"pop",
"(",
")",
";",
"if",
"(",
"beanPerf",
"!=",
"null",
")",
"{",
"// Update PMI data",
"beanPerf",
".",
"objectRetrieve",
"(",
"buffer",
".",
"si... | Retrieve an object from this pool.
@return This method will return null if this pool is empty. | [
"Retrieve",
"an",
"object",
"from",
"this",
"pool",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ws/ejbcontainer/util/PoolImplThreadSafe.java#L149-L158 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ws/ejbcontainer/util/PoolImplThreadSafe.java | PoolImplThreadSafe.put | @Override
public final void put(Object o) {
boolean discarded = false;
if (inactive) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "setting active: " + this);
// If the pool was marked inactive by the pool manager alarm, the... | java | @Override
public final void put(Object o) {
boolean discarded = false;
if (inactive) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "setting active: " + this);
// If the pool was marked inactive by the pool manager alarm, the... | [
"@",
"Override",
"public",
"final",
"void",
"put",
"(",
"Object",
"o",
")",
"{",
"boolean",
"discarded",
"=",
"false",
";",
"if",
"(",
"inactive",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabl... | Return an object instance to this pool.
<p>
If there is no room left in the pool the instance will be discarded; in
that case if the PooledObject or DiscardStrategy interfaces are being
used, the appropriate callback method will be called. | [
"Return",
"an",
"object",
"instance",
"to",
"this",
"pool",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ws/ejbcontainer/util/PoolImplThreadSafe.java#L169-L204 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ws/ejbcontainer/util/PoolImplThreadSafe.java | PoolImplThreadSafe.periodicDrain | @Override
final void periodicDrain() {
// Drain to the minimum size but only by the maxDrainAmount.
// This slows the drain process, allowing for the pool to become
// active before becoming fully drained (to minimum level).
SizeData size = poolSize;
int numDiscarded = drainT... | java | @Override
final void periodicDrain() {
// Drain to the minimum size but only by the maxDrainAmount.
// This slows the drain process, allowing for the pool to become
// active before becoming fully drained (to minimum level).
SizeData size = poolSize;
int numDiscarded = drainT... | [
"@",
"Override",
"final",
"void",
"periodicDrain",
"(",
")",
"{",
"// Drain to the minimum size but only by the maxDrainAmount.",
"// This slows the drain process, allowing for the pool to become",
"// active before becoming fully drained (to minimum level).",
"SizeData",
"size",
"=",
"p... | Remove a percentage of the elements from this pool down to its minimum
value. If the pool becomes active while draining discontinue. | [
"Remove",
"a",
"percentage",
"of",
"the",
"elements",
"from",
"this",
"pool",
"down",
"to",
"its",
"minimum",
"value",
".",
"If",
"the",
"pool",
"becomes",
"active",
"while",
"draining",
"discontinue",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ws/ejbcontainer/util/PoolImplThreadSafe.java#L210-L243 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/ResponseMessage.java | ResponseMessage.init | public void init(HttpInboundConnection conn, RequestMessage req) {
this.request = req;
this.response = conn.getResponse();
this.connection = conn;
this.outStream = new ResponseBody(this.response.getBody());
this.locale = Locale.getDefault();
} | java | public void init(HttpInboundConnection conn, RequestMessage req) {
this.request = req;
this.response = conn.getResponse();
this.connection = conn;
this.outStream = new ResponseBody(this.response.getBody());
this.locale = Locale.getDefault();
} | [
"public",
"void",
"init",
"(",
"HttpInboundConnection",
"conn",
",",
"RequestMessage",
"req",
")",
"{",
"this",
".",
"request",
"=",
"req",
";",
"this",
".",
"response",
"=",
"conn",
".",
"getResponse",
"(",
")",
";",
"this",
".",
"connection",
"=",
"con... | Initialize this response message with the input connection.
@param conn
@param req | [
"Initialize",
"this",
"response",
"message",
"with",
"the",
"input",
"connection",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/ResponseMessage.java#L76-L82 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/ResponseMessage.java | ResponseMessage.clear | public void clear() {
this.contentType = null;
this.encoding = null;
this.locale = null;
this.outStream = null;
this.outWriter = null;
this.streamActive = false;
} | java | public void clear() {
this.contentType = null;
this.encoding = null;
this.locale = null;
this.outStream = null;
this.outWriter = null;
this.streamActive = false;
} | [
"public",
"void",
"clear",
"(",
")",
"{",
"this",
".",
"contentType",
"=",
"null",
";",
"this",
".",
"encoding",
"=",
"null",
";",
"this",
".",
"locale",
"=",
"null",
";",
"this",
".",
"outStream",
"=",
"null",
";",
"this",
".",
"outWriter",
"=",
"... | Clear all the temporary variables of this response. | [
"Clear",
"all",
"the",
"temporary",
"variables",
"of",
"this",
"response",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/ResponseMessage.java#L87-L94 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/ResponseMessage.java | ResponseMessage.convertURItoURL | private String convertURItoURL(String uri) {
int indexScheme = uri.indexOf("://");
if (-1 != indexScheme) {
int indexQuery = uri.indexOf('?');
if (-1 == indexQuery || indexScheme < indexQuery) {
// already a full url
return uri;
}
... | java | private String convertURItoURL(String uri) {
int indexScheme = uri.indexOf("://");
if (-1 != indexScheme) {
int indexQuery = uri.indexOf('?');
if (-1 == indexQuery || indexScheme < indexQuery) {
// already a full url
return uri;
}
... | [
"private",
"String",
"convertURItoURL",
"(",
"String",
"uri",
")",
"{",
"int",
"indexScheme",
"=",
"uri",
".",
"indexOf",
"(",
"\"://\"",
")",
";",
"if",
"(",
"-",
"1",
"!=",
"indexScheme",
")",
"{",
"int",
"indexQuery",
"=",
"uri",
".",
"indexOf",
"("... | Convert a possible URI to a full URL.
@param uri
@return String | [
"Convert",
"a",
"possible",
"URI",
"to",
"a",
"full",
"URL",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/ResponseMessage.java#L240-L284 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/ResponseMessage.java | ResponseMessage.commit | public void commit() {
if (isCommitted()) {
return;
}
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "Committing: " + this);
}
if (null == this.response.getHeader("Content-Language")) {
// content-language not y... | java | public void commit() {
if (isCommitted()) {
return;
}
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "Committing: " + this);
}
if (null == this.response.getHeader("Content-Language")) {
// content-language not y... | [
"public",
"void",
"commit",
"(",
")",
"{",
"if",
"(",
"isCommitted",
"(",
")",
")",
"{",
"return",
";",
"}",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"debug",... | When headers are being marshalled out, this message moves to committed
state which will disallow most further changes. | [
"When",
"headers",
"are",
"being",
"marshalled",
"out",
"this",
"message",
"moves",
"to",
"committed",
"state",
"which",
"will",
"disallow",
"most",
"further",
"changes",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/ResponseMessage.java#L452-L492 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ras.instrument/src/com/ibm/ws/ras/instrument/internal/buildtasks/InstrumentForTrace.java | InstrumentForTrace.setApi | public void setApi(String api) {
api = api.trim();
if ("liberty".equalsIgnoreCase(api)) {
this.api = "liberty";
} else if ("websphere".equalsIgnoreCase(api)) {
this.api = "tr";
} else if ("tr".equalsIgnoreCase(api)) {
this.api = "tr";
} else if... | java | public void setApi(String api) {
api = api.trim();
if ("liberty".equalsIgnoreCase(api)) {
this.api = "liberty";
} else if ("websphere".equalsIgnoreCase(api)) {
this.api = "tr";
} else if ("tr".equalsIgnoreCase(api)) {
this.api = "tr";
} else if... | [
"public",
"void",
"setApi",
"(",
"String",
"api",
")",
"{",
"api",
"=",
"api",
".",
"trim",
"(",
")",
";",
"if",
"(",
"\"liberty\"",
".",
"equalsIgnoreCase",
"(",
"api",
")",
")",
"{",
"this",
".",
"api",
"=",
"\"liberty\"",
";",
"}",
"else",
"if",... | Set the type of trace API to use.
@param api
the type of trace interface to use | [
"Set",
"the",
"type",
"of",
"trace",
"API",
"to",
"use",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ras.instrument/src/com/ibm/ws/ras/instrument/internal/buildtasks/InstrumentForTrace.java#L59-L78 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jaxws.web/src/com/ibm/ws/jaxws/web/WebJaxWsModuleInfoBuilder.java | WebJaxWsModuleInfoBuilder.getServletNameClassPairsInWebXML | private Map<String, String> getServletNameClassPairsInWebXML(Container containerToAdapt) throws UnableToAdaptException {
Map<String, String> nameClassPairs = new HashMap<String, String>();
WebAppConfig webAppConfig = containerToAdapt.adapt(WebAppConfig.class);
Iterator<IServletConfig> cfgIter =... | java | private Map<String, String> getServletNameClassPairsInWebXML(Container containerToAdapt) throws UnableToAdaptException {
Map<String, String> nameClassPairs = new HashMap<String, String>();
WebAppConfig webAppConfig = containerToAdapt.adapt(WebAppConfig.class);
Iterator<IServletConfig> cfgIter =... | [
"private",
"Map",
"<",
"String",
",",
"String",
">",
"getServletNameClassPairsInWebXML",
"(",
"Container",
"containerToAdapt",
")",
"throws",
"UnableToAdaptException",
"{",
"Map",
"<",
"String",
",",
"String",
">",
"nameClassPairs",
"=",
"new",
"HashMap",
"<",
"St... | Get all the Servlet name and className pairs from web.xml
@param webAppConfig
@return
@throws UnableToAdaptException | [
"Get",
"all",
"the",
"Servlet",
"name",
"and",
"className",
"pairs",
"from",
"web",
".",
"xml"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxws.web/src/com/ibm/ws/jaxws/web/WebJaxWsModuleInfoBuilder.java#L204-L217 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jaxws.web/src/com/ibm/ws/jaxws/web/WebJaxWsModuleInfoBuilder.java | WebJaxWsModuleInfoBuilder.processClassesInWebXML | private void processClassesInWebXML(EndpointInfoBuilder endpointInfoBuilder, EndpointInfoBuilderContext ctx, WebAppConfig webAppConfig,
JaxWsModuleInfo jaxWsModuleInfo, Set<String> presentedServices) throws UnableToAdaptException {
Iterator<IServletConfig> cfgIter = webA... | java | private void processClassesInWebXML(EndpointInfoBuilder endpointInfoBuilder, EndpointInfoBuilderContext ctx, WebAppConfig webAppConfig,
JaxWsModuleInfo jaxWsModuleInfo, Set<String> presentedServices) throws UnableToAdaptException {
Iterator<IServletConfig> cfgIter = webA... | [
"private",
"void",
"processClassesInWebXML",
"(",
"EndpointInfoBuilder",
"endpointInfoBuilder",
",",
"EndpointInfoBuilderContext",
"ctx",
",",
"WebAppConfig",
"webAppConfig",
",",
"JaxWsModuleInfo",
"jaxWsModuleInfo",
",",
"Set",
"<",
"String",
">",
"presentedServices",
")"... | Process the serviceImplBean classes in web.xml file.
@param ctx
@param webAppConfig
@param jaxWsModuleInfo
@throws Exception | [
"Process",
"the",
"serviceImplBean",
"classes",
"in",
"web",
".",
"xml",
"file",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxws.web/src/com/ibm/ws/jaxws/web/WebJaxWsModuleInfoBuilder.java#L227-L248 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/trm/TrmMessageFactory.java | TrmMessageFactory.getInstance | public static TrmMessageFactory getInstance() {
if (_instance == null) {
synchronized(TrmMessageFactory.class) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "createFactoryInstance");
try {
Class cls = Class.forName(TRM_MESSAGE_FACTORY_CLASS);
_i... | java | public static TrmMessageFactory getInstance() {
if (_instance == null) {
synchronized(TrmMessageFactory.class) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "createFactoryInstance");
try {
Class cls = Class.forName(TRM_MESSAGE_FACTORY_CLASS);
_i... | [
"public",
"static",
"TrmMessageFactory",
"getInstance",
"(",
")",
"{",
"if",
"(",
"_instance",
"==",
"null",
")",
"{",
"synchronized",
"(",
"TrmMessageFactory",
".",
"class",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
... | Get the singleton TrmMessageFactory which is to be used for
creating TRM Message instances.
@return The TrmMessageFactory | [
"Get",
"the",
"singleton",
"TrmMessageFactory",
"which",
"is",
"to",
"be",
"used",
"for",
"creating",
"TRM",
"Message",
"instances",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/trm/TrmMessageFactory.java#L44-L61 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/config/NamedEventManager.java | NamedEventManager.addNamedEvent | public void addNamedEvent (String shortName, Class<? extends ComponentSystemEvent> cls)
{
String key = shortName;
Collection<Class<? extends ComponentSystemEvent>> eventList;
// Per the spec, if the short name is missing, generate one.
if (shortName == null)
... | java | public void addNamedEvent (String shortName, Class<? extends ComponentSystemEvent> cls)
{
String key = shortName;
Collection<Class<? extends ComponentSystemEvent>> eventList;
// Per the spec, if the short name is missing, generate one.
if (shortName == null)
... | [
"public",
"void",
"addNamedEvent",
"(",
"String",
"shortName",
",",
"Class",
"<",
"?",
"extends",
"ComponentSystemEvent",
">",
"cls",
")",
"{",
"String",
"key",
"=",
"shortName",
";",
"Collection",
"<",
"Class",
"<",
"?",
"extends",
"ComponentSystemEvent",
">"... | Registers a named event.
@param shortName a String containing the short name for the event, from the @NamedEvent.shortName()
attribute.
@param cls the event class to register. | [
"Registers",
"a",
"named",
"event",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/config/NamedEventManager.java#L69-L93 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/config/NamedEventManager.java | NamedEventManager.getFixedName | private String getFixedName (Class<? extends ComponentSystemEvent> cls)
{
StringBuilder result = new StringBuilder();
String className;
// Get the unqualified class name.
className = cls.getSimpleName();
// Strip the trailing "event" off the class n... | java | private String getFixedName (Class<? extends ComponentSystemEvent> cls)
{
StringBuilder result = new StringBuilder();
String className;
// Get the unqualified class name.
className = cls.getSimpleName();
// Strip the trailing "event" off the class n... | [
"private",
"String",
"getFixedName",
"(",
"Class",
"<",
"?",
"extends",
"ComponentSystemEvent",
">",
"cls",
")",
"{",
"StringBuilder",
"result",
"=",
"new",
"StringBuilder",
"(",
")",
";",
"String",
"className",
";",
"// Get the unqualified class name.",
"className"... | Retrieves the short name for an event class, according to spec rules.
@param cls the class to find the short name for.
@return a String containing the short name for the given class. | [
"Retrieves",
"the",
"short",
"name",
"for",
"an",
"event",
"class",
"according",
"to",
"spec",
"rules",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/config/NamedEventManager.java#L115-L142 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging/src/com/ibm/ws/logging/collector/CollectorJsonUtils1_1.java | CollectorJsonUtils1_1.jsonifyEvent | public static String jsonifyEvent(Object event, String eventType, String serverName, String wlpUserDir, String serverHostName, String[] tags,
int maxFieldLength) {
if (eventType.equals(CollectorConstants.GC_EVENT_TYPE)) {
if (event instanceof GCData) {
... | java | public static String jsonifyEvent(Object event, String eventType, String serverName, String wlpUserDir, String serverHostName, String[] tags,
int maxFieldLength) {
if (eventType.equals(CollectorConstants.GC_EVENT_TYPE)) {
if (event instanceof GCData) {
... | [
"public",
"static",
"String",
"jsonifyEvent",
"(",
"Object",
"event",
",",
"String",
"eventType",
",",
"String",
"serverName",
",",
"String",
"wlpUserDir",
",",
"String",
"serverHostName",
",",
"String",
"[",
"]",
"tags",
",",
"int",
"maxFieldLength",
")",
"{"... | Method to return log event data in json format. This method is for collector version greater than 1.0
@param event The object originating from logging source which contains necessary fields
@param eventType The type of event
@param servername The name of the server
@param wlpUserDir The name of wlp user directory
@par... | [
"Method",
"to",
"return",
"log",
"event",
"data",
"in",
"json",
"format",
".",
"This",
"method",
"is",
"for",
"collector",
"version",
"greater",
"than",
"1",
".",
"0"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging/src/com/ibm/ws/logging/collector/CollectorJsonUtils1_1.java#L49-L87 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/TimeLimitDaemon.java | TimeLimitDaemon.valueHasChanged | public void valueHasChanged(DCache cache, Object id, long expirationTime, int inactivity) { // CPF-Inactivity
//final String methodName = "valueHasChanged()";
if (expirationTime <= 0 && inactivity <=0 ) { // CPF-Inactivity
throw new IllegalArgumentException("expirationTime or inactivity mus... | java | public void valueHasChanged(DCache cache, Object id, long expirationTime, int inactivity) { // CPF-Inactivity
//final String methodName = "valueHasChanged()";
if (expirationTime <= 0 && inactivity <=0 ) { // CPF-Inactivity
throw new IllegalArgumentException("expirationTime or inactivity mus... | [
"public",
"void",
"valueHasChanged",
"(",
"DCache",
"cache",
",",
"Object",
"id",
",",
"long",
"expirationTime",
",",
"int",
"inactivity",
")",
"{",
"// CPF-Inactivity",
"//final String methodName = \"valueHasChanged()\";",
"if",
"(",
"expirationTime",
"<=",
"0",
"&&"... | This notifies this daemon that a value has changed,
so the expiration time should be updated.
It updates internal tables and indexes accordingly.
@param cache The cache instance.
@param id The cache id.
@param expirationTime The new expiration time. | [
"This",
"notifies",
"this",
"daemon",
"that",
"a",
"value",
"has",
"changed",
"so",
"the",
"expiration",
"time",
"should",
"be",
"updated",
".",
"It",
"updates",
"internal",
"tables",
"and",
"indexes",
"accordingly",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/TimeLimitDaemon.java#L224-L268 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/TimeLimitDaemon.java | TimeLimitDaemon.valueWasRemoved | public void valueWasRemoved(DCache cache, Object id) {
//final String methodName = "valueWasRemoved()";
if ( UNIT_TEST_INACTIVITY ) {
System.out.println("valueWasRemoved() - entry");
}
ExpirationMetaData expirationMetaData = (ExpirationMetaData)cacheInstancesTable.get(cache);... | java | public void valueWasRemoved(DCache cache, Object id) {
//final String methodName = "valueWasRemoved()";
if ( UNIT_TEST_INACTIVITY ) {
System.out.println("valueWasRemoved() - entry");
}
ExpirationMetaData expirationMetaData = (ExpirationMetaData)cacheInstancesTable.get(cache);... | [
"public",
"void",
"valueWasRemoved",
"(",
"DCache",
"cache",
",",
"Object",
"id",
")",
"{",
"//final String methodName = \"valueWasRemoved()\";",
"if",
"(",
"UNIT_TEST_INACTIVITY",
")",
"{",
"System",
".",
"out",
".",
"println",
"(",
"\"valueWasRemoved() - entry\"",
"... | This notifies this daemon that an entry has removed,
It removes the entry from the internal tables.
@param cache The cache instance.
@param id The cache id. | [
"This",
"notifies",
"this",
"daemon",
"that",
"an",
"entry",
"has",
"removed",
"It",
"removes",
"the",
"entry",
"from",
"the",
"internal",
"tables",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/TimeLimitDaemon.java#L277-L295 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/TimeLimitDaemon.java | TimeLimitDaemon.valueWasAccessed | public void valueWasAccessed(DCache cache, Object id, long expirationTime, int inactivity) {
valueHasChanged(cache, id, expirationTime, inactivity);
} | java | public void valueWasAccessed(DCache cache, Object id, long expirationTime, int inactivity) {
valueHasChanged(cache, id, expirationTime, inactivity);
} | [
"public",
"void",
"valueWasAccessed",
"(",
"DCache",
"cache",
",",
"Object",
"id",
",",
"long",
"expirationTime",
",",
"int",
"inactivity",
")",
"{",
"valueHasChanged",
"(",
"cache",
",",
"id",
",",
"expirationTime",
",",
"inactivity",
")",
";",
"}"
] | CPF-Inactivity - cache check inactivity > 0 before calling this method. | [
"CPF",
"-",
"Inactivity",
"-",
"cache",
"check",
"inactivity",
">",
"0",
"before",
"calling",
"this",
"method",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/TimeLimitDaemon.java#L298-L300 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/TimeLimitDaemon.java | TimeLimitDaemon.createExpirationMetaData | public void createExpirationMetaData(DCache cache) {
//final String methodName = "createExpirationMetaData()";
ExpirationMetaData expirationMetaData = (ExpirationMetaData)cacheInstancesTable.get(cache);
if (expirationMetaData == null) {
int initialTableSize = DEFAULT_SIZE_FOR_MEM;
... | java | public void createExpirationMetaData(DCache cache) {
//final String methodName = "createExpirationMetaData()";
ExpirationMetaData expirationMetaData = (ExpirationMetaData)cacheInstancesTable.get(cache);
if (expirationMetaData == null) {
int initialTableSize = DEFAULT_SIZE_FOR_MEM;
... | [
"public",
"void",
"createExpirationMetaData",
"(",
"DCache",
"cache",
")",
"{",
"//final String methodName = \"createExpirationMetaData()\";",
"ExpirationMetaData",
"expirationMetaData",
"=",
"(",
"ExpirationMetaData",
")",
"cacheInstancesTable",
".",
"get",
"(",
"cache",
")"... | This method is called when the cache is created. This will initialize ExpirationMetaData for specified cache
@param cache The cache instance. | [
"This",
"method",
"is",
"called",
"when",
"the",
"cache",
"is",
"created",
".",
"This",
"will",
"initialize",
"ExpirationMetaData",
"for",
"specified",
"cache"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/TimeLimitDaemon.java#L307-L318 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MatchingApplicationSignature.java | MatchingApplicationSignature.getApplicationSignature | public ApplicationSignature getApplicationSignature()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
{
SibTr.entry(tc, "getApplicationSignature");
SibTr.exit(tc, "getApplicationSignature", applicationSig);
}
return applicationSig;
} | java | public ApplicationSignature getApplicationSignature()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
{
SibTr.entry(tc, "getApplicationSignature");
SibTr.exit(tc, "getApplicationSignature", applicationSig);
}
return applicationSig;
} | [
"public",
"ApplicationSignature",
"getApplicationSignature",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"\"getApplicationSignatur... | Returns the ApplicationSignature.
@return ApplicationSignature | [
"Returns",
"the",
"ApplicationSignature",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MatchingApplicationSignature.java#L68-L76 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.openidconnect.clients.common/src/com/ibm/ws/security/openidconnect/clients/common/OidcUtil.java | OidcUtil.getUserNameFromSubject | public static String getUserNameFromSubject(Subject subject) {
Iterator<Principal> it = subject.getPrincipals().iterator();
String username = it.next().getName();
return username;
} | java | public static String getUserNameFromSubject(Subject subject) {
Iterator<Principal> it = subject.getPrincipals().iterator();
String username = it.next().getName();
return username;
} | [
"public",
"static",
"String",
"getUserNameFromSubject",
"(",
"Subject",
"subject",
")",
"{",
"Iterator",
"<",
"Principal",
">",
"it",
"=",
"subject",
".",
"getPrincipals",
"(",
")",
".",
"iterator",
"(",
")",
";",
"String",
"username",
"=",
"it",
".",
"nex... | The sujbect has to be non-null | [
"The",
"sujbect",
"has",
"to",
"be",
"non",
"-",
"null"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.openidconnect.clients.common/src/com/ibm/ws/security/openidconnect/clients/common/OidcUtil.java#L136-L140 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.openidconnect.clients.common/src/com/ibm/ws/security/openidconnect/clients/common/OidcUtil.java | OidcUtil.encode | public static String encode(String value) {
if (value == null) {
return value;
}
try {
value = URLEncoder.encode(value, Constants.UTF_8);
} catch (UnsupportedEncodingException e) {
// Do nothing - UTF-8 should always be supported
}
retu... | java | public static String encode(String value) {
if (value == null) {
return value;
}
try {
value = URLEncoder.encode(value, Constants.UTF_8);
} catch (UnsupportedEncodingException e) {
// Do nothing - UTF-8 should always be supported
}
retu... | [
"public",
"static",
"String",
"encode",
"(",
"String",
"value",
")",
"{",
"if",
"(",
"value",
"==",
"null",
")",
"{",
"return",
"value",
";",
"}",
"try",
"{",
"value",
"=",
"URLEncoder",
".",
"encode",
"(",
"value",
",",
"Constants",
".",
"UTF_8",
")... | Encodes the given string using URLEncoder and UTF-8 encoding.
@param value
@return | [
"Encodes",
"the",
"given",
"string",
"using",
"URLEncoder",
"and",
"UTF",
"-",
"8",
"encoding",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.openidconnect.clients.common/src/com/ibm/ws/security/openidconnect/clients/common/OidcUtil.java#L148-L158 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.openidconnect.clients.common/src/com/ibm/ws/security/openidconnect/clients/common/OidcUtil.java | OidcUtil.getTimeStamp | public static String getTimeStamp(long lNumber) {
String timeStamp = "" + lNumber;
int iIndex = TIMESTAMP_LENGTH - timeStamp.length(); // this is enough for 3000 years
return zeroFillers[iIndex] + timeStamp;
} | java | public static String getTimeStamp(long lNumber) {
String timeStamp = "" + lNumber;
int iIndex = TIMESTAMP_LENGTH - timeStamp.length(); // this is enough for 3000 years
return zeroFillers[iIndex] + timeStamp;
} | [
"public",
"static",
"String",
"getTimeStamp",
"(",
"long",
"lNumber",
")",
"{",
"String",
"timeStamp",
"=",
"\"\"",
"+",
"lNumber",
";",
"int",
"iIndex",
"=",
"TIMESTAMP_LENGTH",
"-",
"timeStamp",
".",
"length",
"(",
")",
";",
"// this is enough for 3000 years",... | for unit test | [
"for",
"unit",
"test"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.openidconnect.clients.common/src/com/ibm/ws/security/openidconnect/clients/common/OidcUtil.java#L223-L227 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.openidconnect.clients.common/src/com/ibm/ws/security/openidconnect/clients/common/OidcUtil.java | OidcUtil.createNonceCookieValue | public static String createNonceCookieValue(String nonceValue, String state, ConvergedClientConfig clientConfig) {
return HashUtils.digest(nonceValue + state + clientConfig.getClientSecret());
} | java | public static String createNonceCookieValue(String nonceValue, String state, ConvergedClientConfig clientConfig) {
return HashUtils.digest(nonceValue + state + clientConfig.getClientSecret());
} | [
"public",
"static",
"String",
"createNonceCookieValue",
"(",
"String",
"nonceValue",
",",
"String",
"state",
",",
"ConvergedClientConfig",
"clientConfig",
")",
"{",
"return",
"HashUtils",
".",
"digest",
"(",
"nonceValue",
"+",
"state",
"+",
"clientConfig",
".",
"g... | calculate the cookie value of Nonce | [
"calculate",
"the",
"cookie",
"value",
"of",
"Nonce"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.openidconnect.clients.common/src/com/ibm/ws/security/openidconnect/clients/common/OidcUtil.java#L265-L267 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/impl/InternTable.java | InternTable.compress | private void compress()
{
counter = 1;
for (Iterator e = values().iterator(); e.hasNext(); )
{
Selector s = (Selector) e.next();
s.setUniqueId(counter++);
}
} | java | private void compress()
{
counter = 1;
for (Iterator e = values().iterator(); e.hasNext(); )
{
Selector s = (Selector) e.next();
s.setUniqueId(counter++);
}
} | [
"private",
"void",
"compress",
"(",
")",
"{",
"counter",
"=",
"1",
";",
"for",
"(",
"Iterator",
"e",
"=",
"values",
"(",
")",
".",
"iterator",
"(",
")",
";",
"e",
".",
"hasNext",
"(",
")",
";",
")",
"{",
"Selector",
"s",
"=",
"(",
"Selector",
"... | Compress the uniqueId assignments for Selectors currently in the intern table | [
"Compress",
"the",
"uniqueId",
"assignments",
"for",
"Selectors",
"currently",
"in",
"the",
"intern",
"table"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/impl/InternTable.java#L61-L69 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java | WebJsMessageFactoryImpl.decodeTextBody | private static JsJmsMessage decodeTextBody(String body) throws MessageDecodeFailedException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "decodeTextBody");
JsJmsTextMessage result = new JsJmsTextMessageImpl(MfpConstants.CONSTRUCTOR_NO_OP);
if (bo... | java | private static JsJmsMessage decodeTextBody(String body) throws MessageDecodeFailedException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "decodeTextBody");
JsJmsTextMessage result = new JsJmsTextMessageImpl(MfpConstants.CONSTRUCTOR_NO_OP);
if (bo... | [
"private",
"static",
"JsJmsMessage",
"decodeTextBody",
"(",
"String",
"body",
")",
"throws",
"MessageDecodeFailedException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"... | Decode a text message | [
"Decode",
"a",
"text",
"message"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java#L129-L139 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java | WebJsMessageFactoryImpl.decodeBytesBody | private static JsJmsMessage decodeBytesBody(String body) throws MessageDecodeFailedException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "decodeBytesBody");
JsJmsBytesMessage result = new JsJmsBytesMessageImpl(MfpConstants.CONSTRUCTOR_NO_OP);
if... | java | private static JsJmsMessage decodeBytesBody(String body) throws MessageDecodeFailedException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "decodeBytesBody");
JsJmsBytesMessage result = new JsJmsBytesMessageImpl(MfpConstants.CONSTRUCTOR_NO_OP);
if... | [
"private",
"static",
"JsJmsMessage",
"decodeBytesBody",
"(",
"String",
"body",
")",
"throws",
"MessageDecodeFailedException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
... | Decode a bytes message | [
"Decode",
"a",
"bytes",
"message"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java#L142-L151 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java | WebJsMessageFactoryImpl.decodeObjectBody | private static JsJmsMessage decodeObjectBody(String body) throws MessageDecodeFailedException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "decodeObjectBody");
JsJmsObjectMessage result = new JsJmsObjectMessageImpl(MfpConstants.CONSTRUCTOR_NO_OP);
... | java | private static JsJmsMessage decodeObjectBody(String body) throws MessageDecodeFailedException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "decodeObjectBody");
JsJmsObjectMessage result = new JsJmsObjectMessageImpl(MfpConstants.CONSTRUCTOR_NO_OP);
... | [
"private",
"static",
"JsJmsMessage",
"decodeObjectBody",
"(",
"String",
"body",
")",
"throws",
"MessageDecodeFailedException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
... | Decode an object message | [
"Decode",
"an",
"object",
"message"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java#L154-L163 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java | WebJsMessageFactoryImpl.decodeStreamBody | private static JsJmsMessage decodeStreamBody(String body) throws MessageDecodeFailedException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "decodeStreamBody");
JsJmsStreamMessage result = new JsJmsStreamMessageImpl(MfpConstants.CONSTRUCTOR_NO_OP);
... | java | private static JsJmsMessage decodeStreamBody(String body) throws MessageDecodeFailedException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "decodeStreamBody");
JsJmsStreamMessage result = new JsJmsStreamMessageImpl(MfpConstants.CONSTRUCTOR_NO_OP);
... | [
"private",
"static",
"JsJmsMessage",
"decodeStreamBody",
"(",
"String",
"body",
")",
"throws",
"MessageDecodeFailedException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
... | Decode a stream message | [
"Decode",
"a",
"stream",
"message"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java#L166-L184 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java | WebJsMessageFactoryImpl.decodeMapBody | private static JsJmsMessage decodeMapBody(String body) throws MessageDecodeFailedException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "decodeMapBody");
JsJmsMapMessage result = new JsJmsMapMessageImpl(MfpConstants.CONSTRUCTOR_NO_OP);
if (body !... | java | private static JsJmsMessage decodeMapBody(String body) throws MessageDecodeFailedException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "decodeMapBody");
JsJmsMapMessage result = new JsJmsMapMessageImpl(MfpConstants.CONSTRUCTOR_NO_OP);
if (body !... | [
"private",
"static",
"JsJmsMessage",
"decodeMapBody",
"(",
"String",
"body",
")",
"throws",
"MessageDecodeFailedException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"e... | Decode a map message | [
"Decode",
"a",
"map",
"message"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java#L187-L207 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java | WebJsMessageFactoryImpl.decodeHeader | private static void decodeHeader(JsJmsMessage msg, String id, String type, String topic, String props) {
// id should be hexEncoded byte array but if it looks too short we prepend a '0' to
// allow clients to simply use an integer if they want.
if (id != null) {
if (id.length() % 2 !... | java | private static void decodeHeader(JsJmsMessage msg, String id, String type, String topic, String props) {
// id should be hexEncoded byte array but if it looks too short we prepend a '0' to
// allow clients to simply use an integer if they want.
if (id != null) {
if (id.length() % 2 !... | [
"private",
"static",
"void",
"decodeHeader",
"(",
"JsJmsMessage",
"msg",
",",
"String",
"id",
",",
"String",
"type",
",",
"String",
"topic",
",",
"String",
"props",
")",
"{",
"// id should be hexEncoded byte array but if it looks too short we prepend a '0' to",
"// allow ... | Decode and set the header fields | [
"Decode",
"and",
"set",
"the",
"header",
"fields"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java#L210-L250 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java | WebJsMessageFactoryImpl.decodePair | private static Object[] decodePair(String text) {
Object[] result = new Object[2];
int i = text.indexOf('=');
result[0] = URLDecode(text.substring(0, i));
result[1] = decodeObject(text.substring(i + 1));
return result;
} | java | private static Object[] decodePair(String text) {
Object[] result = new Object[2];
int i = text.indexOf('=');
result[0] = URLDecode(text.substring(0, i));
result[1] = decodeObject(text.substring(i + 1));
return result;
} | [
"private",
"static",
"Object",
"[",
"]",
"decodePair",
"(",
"String",
"text",
")",
"{",
"Object",
"[",
"]",
"result",
"=",
"new",
"Object",
"[",
"2",
"]",
";",
"int",
"i",
"=",
"text",
".",
"indexOf",
"(",
"'",
"'",
")",
";",
"result",
"[",
"0",
... | Decode a name=value pair | [
"Decode",
"a",
"name",
"=",
"value",
"pair"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java#L253-L259 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java | WebJsMessageFactoryImpl.decodeObject | private static Object decodeObject(String text) {
Object result = null;
if (text.startsWith("[]"))
result = HexString.hexToBin(text, 2);
else
result = URLDecode(text);
return result;
} | java | private static Object decodeObject(String text) {
Object result = null;
if (text.startsWith("[]"))
result = HexString.hexToBin(text, 2);
else
result = URLDecode(text);
return result;
} | [
"private",
"static",
"Object",
"decodeObject",
"(",
"String",
"text",
")",
"{",
"Object",
"result",
"=",
"null",
";",
"if",
"(",
"text",
".",
"startsWith",
"(",
"\"[]\"",
")",
")",
"result",
"=",
"HexString",
".",
"hexToBin",
"(",
"text",
",",
"2",
")"... | Decode an object as a string or byte array | [
"Decode",
"an",
"object",
"as",
"a",
"string",
"or",
"byte",
"array"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java#L262-L269 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java | WebJsMessageFactoryImpl.URLDecode | private static String URLDecode(String text) {
String result = null;
try {
result = URLDecoder.decode(text, "UTF8");
} catch (UnsupportedEncodingException e) {
// Should never happen - all JDKs must support UTF8
FFDCFilter.processException(e, "com.ibm.ws.sib.m... | java | private static String URLDecode(String text) {
String result = null;
try {
result = URLDecoder.decode(text, "UTF8");
} catch (UnsupportedEncodingException e) {
// Should never happen - all JDKs must support UTF8
FFDCFilter.processException(e, "com.ibm.ws.sib.m... | [
"private",
"static",
"String",
"URLDecode",
"(",
"String",
"text",
")",
"{",
"String",
"result",
"=",
"null",
";",
"try",
"{",
"result",
"=",
"URLDecoder",
".",
"decode",
"(",
"text",
",",
"\"UTF8\"",
")",
";",
"}",
"catch",
"(",
"UnsupportedEncodingExcept... | URL decode a string | [
"URL",
"decode",
"a",
"string"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/WebJsMessageFactoryImpl.java#L272-L281 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/metadata/CustomMatchingStrategy.java | CustomMatchingStrategy.getMatchResponse | @Override
public MatchResponse getMatchResponse(SecurityConstraint securityConstraint, String resourceName, String method) {
CollectionMatch collectionMatch = getCollectionMatch(securityConstraint.getWebResourceCollections(), resourceName, method);
if (CollectionMatch.RESPONSE_NO_MATCH.equals(collec... | java | @Override
public MatchResponse getMatchResponse(SecurityConstraint securityConstraint, String resourceName, String method) {
CollectionMatch collectionMatch = getCollectionMatch(securityConstraint.getWebResourceCollections(), resourceName, method);
if (CollectionMatch.RESPONSE_NO_MATCH.equals(collec... | [
"@",
"Override",
"public",
"MatchResponse",
"getMatchResponse",
"(",
"SecurityConstraint",
"securityConstraint",
",",
"String",
"resourceName",
",",
"String",
"method",
")",
"{",
"CollectionMatch",
"collectionMatch",
"=",
"getCollectionMatch",
"(",
"securityConstraint",
"... | Gets the response object that contains the roles, the SSL required
and access precluded indicators. Gets the response using the custom method algorithm.
If the collection match returned from the collection is null,
then response must be CUSTOM_NO_MATCH_RESPONSE.
@param resourceName The resource name.
@param method The... | [
"Gets",
"the",
"response",
"object",
"that",
"contains",
"the",
"roles",
"the",
"SSL",
"required",
"and",
"access",
"precluded",
"indicators",
".",
"Gets",
"the",
"response",
"using",
"the",
"custom",
"method",
"algorithm",
".",
"If",
"the",
"collection",
"mat... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/metadata/CustomMatchingStrategy.java#L50-L61 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/internal/RegisteredHttpServiceImpl.java | RegisteredHttpServiceImpl.deactivate | protected void deactivate(ComponentContext ctxt, int reason) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) {
Tr.event(this, tc, "Deactivating, reason=" + reason);
}
unregisterAll();
} | java | protected void deactivate(ComponentContext ctxt, int reason) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) {
Tr.event(this, tc, "Deactivating, reason=" + reason);
}
unregisterAll();
} | [
"protected",
"void",
"deactivate",
"(",
"ComponentContext",
"ctxt",
",",
"int",
"reason",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEventEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"event",
"(",
"this",
... | Deactivate this component.
@param ctxt | [
"Deactivate",
"this",
"component",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/internal/RegisteredHttpServiceImpl.java#L98-L103 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.session/src/com/ibm/ws/session/SessionContext.java | SessionContext.addHttpSessionListener | public void addHttpSessionListener(HttpSessionListener listener, String J2EEName) {
synchronized (mHttpSessionListeners) {
mHttpSessionListeners.add(listener);
mHttpSessionListenersJ2eeNames.add(J2EEName);
sessionListener = true;
_coreHttpSessionManager.getIStore(... | java | public void addHttpSessionListener(HttpSessionListener listener, String J2EEName) {
synchronized (mHttpSessionListeners) {
mHttpSessionListeners.add(listener);
mHttpSessionListenersJ2eeNames.add(J2EEName);
sessionListener = true;
_coreHttpSessionManager.getIStore(... | [
"public",
"void",
"addHttpSessionListener",
"(",
"HttpSessionListener",
"listener",
",",
"String",
"J2EEName",
")",
"{",
"synchronized",
"(",
"mHttpSessionListeners",
")",
"{",
"mHttpSessionListeners",
".",
"add",
"(",
"listener",
")",
";",
"mHttpSessionListenersJ2eeNam... | Akaimai requested function - overridden in WsSessionContext | [
"Akaimai",
"requested",
"function",
"-",
"overridden",
"in",
"WsSessionContext"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.session/src/com/ibm/ws/session/SessionContext.java#L1075-L1102 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.springboot.utility/src/com/ibm/ws/springboot/utility/tasks/BaseCommandTask.java | BaseCommandTask.getArgumentValue | protected String getArgumentValue(String arg, String[] args, ConsoleWrapper stdin, PrintStream stdout) {
for (int i = 1; i < args.length; i++) {
String key = args[i].split("=")[0];
if (key.equals(arg)) {
return getValue(args[i]);
}
}
return nul... | java | protected String getArgumentValue(String arg, String[] args, ConsoleWrapper stdin, PrintStream stdout) {
for (int i = 1; i < args.length; i++) {
String key = args[i].split("=")[0];
if (key.equals(arg)) {
return getValue(args[i]);
}
}
return nul... | [
"protected",
"String",
"getArgumentValue",
"(",
"String",
"arg",
",",
"String",
"[",
"]",
"args",
",",
"ConsoleWrapper",
"stdin",
",",
"PrintStream",
"stdout",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"1",
";",
"i",
"<",
"args",
".",
"length",
";",
"i",
... | Gets the value for the specified argument String.
No validation is done in the format of args as it is assumed to
have been done previously.
@param arg Argument name to resolve a value for
@param args List of arguments. Assumes the script name is included and therefore minimum length is 2.
@param stdin Standard... | [
"Gets",
"the",
"value",
"for",
"the",
"specified",
"argument",
"String",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.springboot.utility/src/com/ibm/ws/springboot/utility/tasks/BaseCommandTask.java#L163-L171 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CATHandshakeProperties.java | CATHandshakeProperties.setHeartbeatInterval | public void setHeartbeatInterval(short heartbeatInterval)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setHeartbeatInterval");
properties.put(HEARTBEAT_INTERVAL, heartbeatInterval);
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.e... | java | public void setHeartbeatInterval(short heartbeatInterval)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setHeartbeatInterval");
properties.put(HEARTBEAT_INTERVAL, heartbeatInterval);
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.e... | [
"public",
"void",
"setHeartbeatInterval",
"(",
"short",
"heartbeatInterval",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
... | Sets the heartbeat interval.
@param heartbeatInterval | [
"Sets",
"the",
"heartbeat",
"interval",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CATHandshakeProperties.java#L176-L181 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.app.manager.springboot/src/com/ibm/ws/app/manager/springboot/util/SpringBootThinUtil.java | SpringBootThinUtil.isZip | private boolean isZip(JarEntry entry) throws IOException {
try (InputStream entryInputStream = sourceFatJar.getInputStream(entry)) {
try (ZipInputStream zipInputStream = new ZipInputStream(entryInputStream)) {
ZipEntry ze = zipInputStream.getNextEntry();
if (ze == nul... | java | private boolean isZip(JarEntry entry) throws IOException {
try (InputStream entryInputStream = sourceFatJar.getInputStream(entry)) {
try (ZipInputStream zipInputStream = new ZipInputStream(entryInputStream)) {
ZipEntry ze = zipInputStream.getNextEntry();
if (ze == nul... | [
"private",
"boolean",
"isZip",
"(",
"JarEntry",
"entry",
")",
"throws",
"IOException",
"{",
"try",
"(",
"InputStream",
"entryInputStream",
"=",
"sourceFatJar",
".",
"getInputStream",
"(",
"entry",
")",
")",
"{",
"try",
"(",
"ZipInputStream",
"zipInputStream",
"=... | Check whether the jar entry is a zip, regardless of the extension.
@param entry
@return true or false telling if the jar entry is a valid zip
@throws IOException | [
"Check",
"whether",
"the",
"jar",
"entry",
"is",
"a",
"zip",
"regardless",
"of",
"the",
"extension",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.app.manager.springboot/src/com/ibm/ws/app/manager/springboot/util/SpringBootThinUtil.java#L225-L235 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/cmdline/Utils.java | Utils.getLogDir | public static File getLogDir() {
String logDirLoc = null;
// 1st check in environment variable is set. This is the normal case
// when the server is started from the command line.
if (logDir.get() == null) {
File resultDir = null;
try {
logDirLo... | java | public static File getLogDir() {
String logDirLoc = null;
// 1st check in environment variable is set. This is the normal case
// when the server is started from the command line.
if (logDir.get() == null) {
File resultDir = null;
try {
logDirLo... | [
"public",
"static",
"File",
"getLogDir",
"(",
")",
"{",
"String",
"logDirLoc",
"=",
"null",
";",
"// 1st check in environment variable is set. This is the normal case",
"// when the server is started from the command line.",
"if",
"(",
"logDir",
".",
"get",
"(",
")",
"==",... | Returns directory containing server log directories.
@return instance of the log directory or 'null' if LOG_DIR is not defined | [
"Returns",
"directory",
"containing",
"server",
"log",
"directories",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/cmdline/Utils.java#L103-L136 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/cmdline/Utils.java | Utils.getOutputDir | public static File getOutputDir(boolean isClient) {
String outputDirLoc = null;
// 1st check in environment variable is set. This is the normal case
// when the server is started from the command line.
if (outputDir.get() == null) {
try {
outputDirLoc = Ac... | java | public static File getOutputDir(boolean isClient) {
String outputDirLoc = null;
// 1st check in environment variable is set. This is the normal case
// when the server is started from the command line.
if (outputDir.get() == null) {
try {
outputDirLoc = Ac... | [
"public",
"static",
"File",
"getOutputDir",
"(",
"boolean",
"isClient",
")",
"{",
"String",
"outputDirLoc",
"=",
"null",
";",
"// 1st check in environment variable is set. This is the normal case",
"// when the server is started from the command line.",
"if",
"(",
"outputDir",
... | Returns directory containing server output directories. A server output
directory has server's name as a name and located under this directory.
@return instance of the output directory or 'null' if installation directory
can't be determined. | [
"Returns",
"directory",
"containing",
"server",
"output",
"directories",
".",
"A",
"server",
"output",
"directory",
"has",
"server",
"s",
"name",
"as",
"a",
"name",
"and",
"located",
"under",
"this",
"directory",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/cmdline/Utils.java#L145-L187 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/cmdline/Utils.java | Utils.tryToClose | public static boolean tryToClose(ZipFile zipFile) {
if (zipFile != null) {
try {
zipFile.close();
return true;
} catch (IOException e) {
// ignore
}
}
return false;
} | java | public static boolean tryToClose(ZipFile zipFile) {
if (zipFile != null) {
try {
zipFile.close();
return true;
} catch (IOException e) {
// ignore
}
}
return false;
} | [
"public",
"static",
"boolean",
"tryToClose",
"(",
"ZipFile",
"zipFile",
")",
"{",
"if",
"(",
"zipFile",
"!=",
"null",
")",
"{",
"try",
"{",
"zipFile",
".",
"close",
"(",
")",
";",
"return",
"true",
";",
"}",
"catch",
"(",
"IOException",
"e",
")",
"{"... | Close the zip file
@param zipFile
@return | [
"Close",
"the",
"zip",
"file"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/cmdline/Utils.java#L321-L331 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.microprofile.faulttolerance.cdi/src/com/ibm/ws/microprofile/faulttolerance/cdi/FTUtils.java | FTUtils.getRealClass | public static Class<?> getRealClass(Class<?> clazz) {
Class<?> realClazz = clazz;
if (isWeldProxy(clazz)) {
realClazz = clazz.getSuperclass();
}
return realClazz;
} | java | public static Class<?> getRealClass(Class<?> clazz) {
Class<?> realClazz = clazz;
if (isWeldProxy(clazz)) {
realClazz = clazz.getSuperclass();
}
return realClazz;
} | [
"public",
"static",
"Class",
"<",
"?",
">",
"getRealClass",
"(",
"Class",
"<",
"?",
">",
"clazz",
")",
"{",
"Class",
"<",
"?",
">",
"realClazz",
"=",
"clazz",
";",
"if",
"(",
"isWeldProxy",
"(",
"clazz",
")",
")",
"{",
"realClazz",
"=",
"clazz",
".... | Get the real class. If it is proxy, get its superclass, which will be the real class.
@param clazz
@return the real class. | [
"Get",
"the",
"real",
"class",
".",
"If",
"it",
"is",
"proxy",
"get",
"its",
"superclass",
"which",
"will",
"be",
"the",
"real",
"class",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.microprofile.faulttolerance.cdi/src/com/ibm/ws/microprofile/faulttolerance/cdi/FTUtils.java#L42-L48 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/OutboundVirtualConnectionImpl.java | OutboundVirtualConnectionImpl.destroy | public void destroy(Exception e) {
if (this.appCallback != null) {
this.appCallback.destroy(e);
this.appCallback = null;
}
} | java | public void destroy(Exception e) {
if (this.appCallback != null) {
this.appCallback.destroy(e);
this.appCallback = null;
}
} | [
"public",
"void",
"destroy",
"(",
"Exception",
"e",
")",
"{",
"if",
"(",
"this",
".",
"appCallback",
"!=",
"null",
")",
"{",
"this",
".",
"appCallback",
".",
"destroy",
"(",
"e",
")",
";",
"this",
".",
"appCallback",
"=",
"null",
";",
"}",
"}"
] | This method is called when there is a problem with the
connectAsync call further down the stack. This will just
be used as a pass through.
@param e | [
"This",
"method",
"is",
"called",
"when",
"there",
"is",
"a",
"problem",
"with",
"the",
"connectAsync",
"call",
"further",
"down",
"the",
"stack",
".",
"This",
"will",
"just",
"be",
"used",
"as",
"a",
"pass",
"through",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/OutboundVirtualConnectionImpl.java#L133-L138 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsp/src/com/ibm/ws/jsp/translator/utils/SmapGenerator.java | SmapGenerator.addSmap | public synchronized void addSmap(String smap, String stratumName) {
embedded.add("*O " + stratumName + "\n" + smap + "*C " + stratumName + "\n");
} | java | public synchronized void addSmap(String smap, String stratumName) {
embedded.add("*O " + stratumName + "\n" + smap + "*C " + stratumName + "\n");
} | [
"public",
"synchronized",
"void",
"addSmap",
"(",
"String",
"smap",
",",
"String",
"stratumName",
")",
"{",
"embedded",
".",
"add",
"(",
"\"*O \"",
"+",
"stratumName",
"+",
"\"\\n\"",
"+",
"smap",
"+",
"\"*C \"",
"+",
"stratumName",
"+",
"\"\\n\"",
")",
";... | Adds the given string as an embedded SMAP with the given stratum name.
@param smap the SMAP to embed
@param stratumName the name of the stratum output by the compilation
that produced the <tt>smap</tt> to be embedded | [
"Adds",
"the",
"given",
"string",
"as",
"an",
"embedded",
"SMAP",
"with",
"the",
"given",
"stratum",
"name",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsp/src/com/ibm/ws/jsp/translator/utils/SmapGenerator.java#L82-L84 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/impl/LogRepositoryWriterCBuffImpl.java | LogRepositoryWriterCBuffImpl.dumpItems | public void dumpItems() {
LinkedList<CBuffRecord> copy = new LinkedList<CBuffRecord>();
synchronized(this) {
copy.addAll(buffer);
buffer.clear();
currentSize = 0L;
if (headerBytes == null) {
return;
}
}
dumpWriter.setHeader(headerBytes);
for(CBuffRecord record: copy) {
dumpWriter.logR... | java | public void dumpItems() {
LinkedList<CBuffRecord> copy = new LinkedList<CBuffRecord>();
synchronized(this) {
copy.addAll(buffer);
buffer.clear();
currentSize = 0L;
if (headerBytes == null) {
return;
}
}
dumpWriter.setHeader(headerBytes);
for(CBuffRecord record: copy) {
dumpWriter.logR... | [
"public",
"void",
"dumpItems",
"(",
")",
"{",
"LinkedList",
"<",
"CBuffRecord",
">",
"copy",
"=",
"new",
"LinkedList",
"<",
"CBuffRecord",
">",
"(",
")",
";",
"synchronized",
"(",
"this",
")",
"{",
"copy",
".",
"addAll",
"(",
"buffer",
")",
";",
"buffe... | Dumps records stored in buffer to disk using configured LogRepositoryWriter. | [
"Dumps",
"records",
"stored",
"in",
"buffer",
"to",
"disk",
"using",
"configured",
"LogRepositoryWriter",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/impl/LogRepositoryWriterCBuffImpl.java#L130-L145 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.anno/src/com/ibm/ws/anno/classsource/internal/ClassSourceImpl.java | ClassSourceImpl.getJandexIndex | protected Index getJandexIndex() {
String methodName = "getJandexIndex";
boolean doLog = tc.isDebugEnabled();
boolean doJandexLog = JandexLogger.doLog();
boolean useJandex = getUseJandex();
if ( !useJandex ) {
// Figuring out if there is a Jandex index is mildly expensiv... | java | protected Index getJandexIndex() {
String methodName = "getJandexIndex";
boolean doLog = tc.isDebugEnabled();
boolean doJandexLog = JandexLogger.doLog();
boolean useJandex = getUseJandex();
if ( !useJandex ) {
// Figuring out if there is a Jandex index is mildly expensiv... | [
"protected",
"Index",
"getJandexIndex",
"(",
")",
"{",
"String",
"methodName",
"=",
"\"getJandexIndex\"",
";",
"boolean",
"doLog",
"=",
"tc",
".",
"isDebugEnabled",
"(",
")",
";",
"boolean",
"doJandexLog",
"=",
"JandexLogger",
".",
"doLog",
"(",
")",
";",
"b... | Attempt to read the Jandex index.
If Jandex is not enabled, immediately answer null.
If no Jandex index is available, or if it cannot be read, answer null.
@return The read Jandex index. | [
"Attempt",
"to",
"read",
"the",
"Jandex",
"index",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.anno/src/com/ibm/ws/anno/classsource/internal/ClassSourceImpl.java#L569-L629 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/selector/impl/ConjunctionImpl.java | ConjunctionImpl.and | public boolean and(SimpleTest newTest) {
for (int i = 0; i < tmpSimpleTests.size(); i++) {
SimpleTest cand = (SimpleTest) tmpSimpleTests.get(i);
if (cand.getIdentifier().getName().equals(newTest.getIdentifier().getName()))
{
// Careful, may be operating in XPath selector domain, in which
... | java | public boolean and(SimpleTest newTest) {
for (int i = 0; i < tmpSimpleTests.size(); i++) {
SimpleTest cand = (SimpleTest) tmpSimpleTests.get(i);
if (cand.getIdentifier().getName().equals(newTest.getIdentifier().getName()))
{
// Careful, may be operating in XPath selector domain, in which
... | [
"public",
"boolean",
"and",
"(",
"SimpleTest",
"newTest",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"tmpSimpleTests",
".",
"size",
"(",
")",
";",
"i",
"++",
")",
"{",
"SimpleTest",
"cand",
"=",
"(",
"SimpleTest",
")",
"tmpSimpleTests... | Add a SimpleTest to the Conjunction, searching for contradictions.
@param newTest the new SimpleTest to be added
@return true if the new test is compatible with the old (a false return means the
conjunction will always be false because the test is always false) | [
"Add",
"a",
"SimpleTest",
"to",
"the",
"Conjunction",
"searching",
"for",
"contradictions",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/selector/impl/ConjunctionImpl.java#L104-L126 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/selector/impl/ConjunctionImpl.java | ConjunctionImpl.organize | public boolean organize() {
// First, find any simple tests that can be used to reduce residual components to
// simple tests or pure truth values, either because the simple test is a NULL test or
// because it is effectively an equality test.
if (tmpResidual.size() > 0) {
List[] equatedIds = find... | java | public boolean organize() {
// First, find any simple tests that can be used to reduce residual components to
// simple tests or pure truth values, either because the simple test is a NULL test or
// because it is effectively an equality test.
if (tmpResidual.size() > 0) {
List[] equatedIds = find... | [
"public",
"boolean",
"organize",
"(",
")",
"{",
"// First, find any simple tests that can be used to reduce residual components to",
"// simple tests or pure truth values, either because the simple test is a NULL test or",
"// because it is effectively an equality test.",
"if",
"(",
"tmpResidu... | Organize the Conjunction into its final useful form for MatchSpace.
@return true if the Conjunction is still capable of being true, false if a
contradiction was detected during the organize step.
@exception IllegalStateException if the Resolver assigned ordinalPosition information
incorrectly so that the simple tests... | [
"Organize",
"the",
"Conjunction",
"into",
"its",
"final",
"useful",
"form",
"for",
"MatchSpace",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/selector/impl/ConjunctionImpl.java#L149-L202 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/selector/impl/ConjunctionImpl.java | ConjunctionImpl.findEquatedIdentifiers | private List[] findEquatedIdentifiers() {
List[] ans = null;
for (int i = 0; i < tmpSimpleTests.size(); i++) {
SimpleTest cand = (SimpleTest) tmpSimpleTests.get(i);
if (cand.getKind() == SimpleTest.NULL) {
if (ans == null)
ans = new List[] { new ArrayList(), new ArrayList() };
... | java | private List[] findEquatedIdentifiers() {
List[] ans = null;
for (int i = 0; i < tmpSimpleTests.size(); i++) {
SimpleTest cand = (SimpleTest) tmpSimpleTests.get(i);
if (cand.getKind() == SimpleTest.NULL) {
if (ans == null)
ans = new List[] { new ArrayList(), new ArrayList() };
... | [
"private",
"List",
"[",
"]",
"findEquatedIdentifiers",
"(",
")",
"{",
"List",
"[",
"]",
"ans",
"=",
"null",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"tmpSimpleTests",
".",
"size",
"(",
")",
";",
"i",
"++",
")",
"{",
"SimpleTest",
"ca... | that these can be removed from tmpResidual. Return null if there are none. | [
"that",
"these",
"can",
"be",
"removed",
"from",
"tmpResidual",
".",
"Return",
"null",
"if",
"there",
"are",
"none",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/selector/impl/ConjunctionImpl.java#L208-L229 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/selector/impl/ConjunctionImpl.java | ConjunctionImpl.reduceResidual | private List[] reduceResidual(List[] equatedIds) {
List[] ans = null;
for (int i = 0; i < tmpResidual.size(); ) {
Operator oper = substitute((Operator) tmpResidual.get(i), equatedIds);
if (oper.getNumIds() > 0 && !Matching.isSimple(oper))
// Even after substitution, must remain as a residual... | java | private List[] reduceResidual(List[] equatedIds) {
List[] ans = null;
for (int i = 0; i < tmpResidual.size(); ) {
Operator oper = substitute((Operator) tmpResidual.get(i), equatedIds);
if (oper.getNumIds() > 0 && !Matching.isSimple(oper))
// Even after substitution, must remain as a residual... | [
"private",
"List",
"[",
"]",
"reduceResidual",
"(",
"List",
"[",
"]",
"equatedIds",
")",
"{",
"List",
"[",
"]",
"ans",
"=",
"null",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"tmpResidual",
".",
"size",
"(",
")",
";",
")",
"{",
"Oper... | therefore should be abandoned. | [
"therefore",
"should",
"be",
"abandoned",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/selector/impl/ConjunctionImpl.java#L239-L296 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/selector/impl/ConjunctionImpl.java | ConjunctionImpl.substitute | private static Operator substitute(Operator oper, List[] equatedIds) {
Selector op1 = oper.getOperands()[0];
Selector op2 = (oper.getOperands().length == 1) ? null : oper.getOperands()[1];
if (op1 instanceof Identifier)
op1 = substitute((Identifier) op1, equatedIds);
else if (op1 instanceof Operat... | java | private static Operator substitute(Operator oper, List[] equatedIds) {
Selector op1 = oper.getOperands()[0];
Selector op2 = (oper.getOperands().length == 1) ? null : oper.getOperands()[1];
if (op1 instanceof Identifier)
op1 = substitute((Identifier) op1, equatedIds);
else if (op1 instanceof Operat... | [
"private",
"static",
"Operator",
"substitute",
"(",
"Operator",
"oper",
",",
"List",
"[",
"]",
"equatedIds",
")",
"{",
"Selector",
"op1",
"=",
"oper",
".",
"getOperands",
"(",
")",
"[",
"0",
"]",
";",
"Selector",
"op2",
"=",
"(",
"oper",
".",
"getOpera... | mutations are made directly to any tree nodes. | [
"mutations",
"are",
"made",
"directly",
"to",
"any",
"tree",
"nodes",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/selector/impl/ConjunctionImpl.java#L307-L332 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/selector/impl/ConjunctionImpl.java | ConjunctionImpl.substitute | private static Selector substitute(Identifier id, List[] equatedIds) {
for (int i = 0; i < equatedIds[0].size(); i++)
if (id.getName().equals(equatedIds[0].get(i)))
return new LiteralImpl(equatedIds[1].get(i));
return id;
} | java | private static Selector substitute(Identifier id, List[] equatedIds) {
for (int i = 0; i < equatedIds[0].size(); i++)
if (id.getName().equals(equatedIds[0].get(i)))
return new LiteralImpl(equatedIds[1].get(i));
return id;
} | [
"private",
"static",
"Selector",
"substitute",
"(",
"Identifier",
"id",
",",
"List",
"[",
"]",
"equatedIds",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"equatedIds",
"[",
"0",
"]",
".",
"size",
"(",
")",
";",
"i",
"++",
")",
"if",... | if not matched. | [
"if",
"not",
"matched",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/matchspace/selector/impl/ConjunctionImpl.java#L338-L343 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webcontainer/src/com/ibm/ws/webcontainer/servlet/ServletWrapper.java | ServletWrapper.setUnavailableUntil | private void setUnavailableUntil(long time, boolean isInit) //PM01373
{
if (com.ibm.ejs.ras.TraceComponent.isAnyTracingEnabled() && logger.isLoggable(Level.FINE))
logger.logp(Level.FINE, CLASS_NAME, "setUnavailableUntil", "setUnavailableUntil() : " + time);
if(isInit){
state = UNINITIALI... | java | private void setUnavailableUntil(long time, boolean isInit) //PM01373
{
if (com.ibm.ejs.ras.TraceComponent.isAnyTracingEnabled() && logger.isLoggable(Level.FINE))
logger.logp(Level.FINE, CLASS_NAME, "setUnavailableUntil", "setUnavailableUntil() : " + time);
if(isInit){
state = UNINITIALI... | [
"private",
"void",
"setUnavailableUntil",
"(",
"long",
"time",
",",
"boolean",
"isInit",
")",
"//PM01373",
"{",
"if",
"(",
"com",
".",
"ibm",
".",
"ejs",
".",
"ras",
".",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"logger",
".",
"isLogga... | Method setUnavailableUntil.
@param time
@param isInit | [
"Method",
"setUnavailableUntil",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/ws/webcontainer/servlet/ServletWrapper.java#L1730-L1742 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webcontainer/src/com/ibm/ws/webcontainer/servlet/ServletWrapper.java | ServletWrapper.setUninitialize | protected void setUninitialize()
{
if (com.ibm.ejs.ras.TraceComponent.isAnyTracingEnabled()&&logger.isLoggable (Level.FINE))
logger.logp(Level.FINE, CLASS_NAME,"setUninitialized ","" + this.toString());
state = UNINITIALIZED_STATE;
} | java | protected void setUninitialize()
{
if (com.ibm.ejs.ras.TraceComponent.isAnyTracingEnabled()&&logger.isLoggable (Level.FINE))
logger.logp(Level.FINE, CLASS_NAME,"setUninitialized ","" + this.toString());
state = UNINITIALIZED_STATE;
} | [
"protected",
"void",
"setUninitialize",
"(",
")",
"{",
"if",
"(",
"com",
".",
"ibm",
".",
"ejs",
".",
"ras",
".",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"logger",
".",
"isLoggable",
"(",
"Level",
".",
"FINE",
")",
")",
"logger",
... | Puts a servlet into uninitialize state. | [
"Puts",
"a",
"servlet",
"into",
"uninitialize",
"state",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/ws/webcontainer/servlet/ServletWrapper.java#L1749-L1755 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webcontainer/src/com/ibm/ws/webcontainer/servlet/ServletWrapper.java | ServletWrapper.invalidateCacheWrappers | protected synchronized void invalidateCacheWrappers() {
if (com.ibm.ejs.ras.TraceComponent.isAnyTracingEnabled() && logger.isLoggable(Level.FINE)) // 306998.15
logger.entering(CLASS_NAME, "invalidateCacheWrappers"); // 569469
if (cacheWrappers != null) {
// invalidate all the ca... | java | protected synchronized void invalidateCacheWrappers() {
if (com.ibm.ejs.ras.TraceComponent.isAnyTracingEnabled() && logger.isLoggable(Level.FINE)) // 306998.15
logger.entering(CLASS_NAME, "invalidateCacheWrappers"); // 569469
if (cacheWrappers != null) {
// invalidate all the ca... | [
"protected",
"synchronized",
"void",
"invalidateCacheWrappers",
"(",
")",
"{",
"if",
"(",
"com",
".",
"ibm",
".",
"ejs",
".",
"ras",
".",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"logger",
".",
"isLoggable",
"(",
"Level",
".",
"FINE",
... | which makes a call to invalidateCacheWrappers | [
"which",
"makes",
"a",
"call",
"to",
"invalidateCacheWrappers"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/ws/webcontainer/servlet/ServletWrapper.java#L1784-L1803 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webcontainer/src/com/ibm/ws/webcontainer/servlet/ServletWrapper.java | ServletWrapper.checkForDefaultImplementation | private boolean checkForDefaultImplementation(Class checkClass, String checkMethod, Class[] methodParams){
if (com.ibm.ejs.ras.TraceComponent.isAnyTracingEnabled() && logger.isLoggable (Level.FINE)) //306998.14
logger.exiting(CLASS_NAME,"checkForDefaultImplementation","Method : " + checkMethod + ", Class... | java | private boolean checkForDefaultImplementation(Class checkClass, String checkMethod, Class[] methodParams){
if (com.ibm.ejs.ras.TraceComponent.isAnyTracingEnabled() && logger.isLoggable (Level.FINE)) //306998.14
logger.exiting(CLASS_NAME,"checkForDefaultImplementation","Method : " + checkMethod + ", Class... | [
"private",
"boolean",
"checkForDefaultImplementation",
"(",
"Class",
"checkClass",
",",
"String",
"checkMethod",
",",
"Class",
"[",
"]",
"methodParams",
")",
"{",
"if",
"(",
"com",
".",
"ibm",
".",
"ejs",
".",
"ras",
".",
"TraceComponent",
".",
"isAnyTracingEn... | PK83258 Add method checkDefaultImplementation | [
"PK83258",
"Add",
"method",
"checkDefaultImplementation"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/ws/webcontainer/servlet/ServletWrapper.java#L2155-L2188 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/util/cache/BucketImpl.java | BucketImpl.findIndexByKey | private int findIndexByKey(Object key)
{
// Traverse the vector from the back. Given proper locking done at
// a higher level, this will ensure that the cache gets to the same
// element in the presence of duplicates.
// Traversing the vector from the first element causes a problem s... | java | private int findIndexByKey(Object key)
{
// Traverse the vector from the back. Given proper locking done at
// a higher level, this will ensure that the cache gets to the same
// element in the presence of duplicates.
// Traversing the vector from the first element causes a problem s... | [
"private",
"int",
"findIndexByKey",
"(",
"Object",
"key",
")",
"{",
"// Traverse the vector from the back. Given proper locking done at",
"// a higher level, this will ensure that the cache gets to the same",
"// element in the presence of duplicates.",
"// Traversing the vector from the first... | Return the index of the element with the specified key | [
"Return",
"the",
"index",
"of",
"the",
"element",
"with",
"the",
"specified",
"key"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/util/cache/BucketImpl.java#L187-L205 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/util/cache/BucketImpl.java | BucketImpl.toArray | public void toArray(Element[] dest)
{
if (ivElements != null)
{
System.arraycopy(ivElements, ivHeadIndex, dest, 0, size());
}
} | java | public void toArray(Element[] dest)
{
if (ivElements != null)
{
System.arraycopy(ivElements, ivHeadIndex, dest, 0, size());
}
} | [
"public",
"void",
"toArray",
"(",
"Element",
"[",
"]",
"dest",
")",
"{",
"if",
"(",
"ivElements",
"!=",
"null",
")",
"{",
"System",
".",
"arraycopy",
"(",
"ivElements",
",",
"ivHeadIndex",
",",
"dest",
",",
"0",
",",
"size",
"(",
")",
")",
";",
"}"... | Copies elements from the bucket into the destination array starting at
index 0. The destination array must be at least large enough to hold all
the elements in the bucket; otherwise, the behavior is undefined.
@param dest the destination array | [
"Copies",
"elements",
"from",
"the",
"bucket",
"into",
"the",
"destination",
"array",
"starting",
"at",
"index",
"0",
".",
"The",
"destination",
"array",
"must",
"be",
"at",
"least",
"large",
"enough",
"to",
"hold",
"all",
"the",
"elements",
"in",
"the",
"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/util/cache/BucketImpl.java#L234-L240 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/util/cache/BucketImpl.java | BucketImpl.add | private void add(Element element)
{
if (ivElements == null)
{
ivElements = new Element[DEFAULT_CAPACITY];
}
else if (ivTailIndex == ivElements.length)
{
// No more room at the tail of the array. If we're completely out of
// space (ivBaseI... | java | private void add(Element element)
{
if (ivElements == null)
{
ivElements = new Element[DEFAULT_CAPACITY];
}
else if (ivTailIndex == ivElements.length)
{
// No more room at the tail of the array. If we're completely out of
// space (ivBaseI... | [
"private",
"void",
"add",
"(",
"Element",
"element",
")",
"{",
"if",
"(",
"ivElements",
"==",
"null",
")",
"{",
"ivElements",
"=",
"new",
"Element",
"[",
"DEFAULT_CAPACITY",
"]",
";",
"}",
"else",
"if",
"(",
"ivTailIndex",
"==",
"ivElements",
".",
"lengt... | Adds an element to the end of the bucket.
@param element the element to add | [
"Adds",
"an",
"element",
"to",
"the",
"end",
"of",
"the",
"bucket",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/util/cache/BucketImpl.java#L259-L305 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/util/cache/BucketImpl.java | BucketImpl.remove | private void remove(int listIndex)
{
if (listIndex == 0)
{
// Trivially remove from head.
ivElements[ivHeadIndex++] = null;
}
else if (listIndex == ivTailIndex - 1)
{
// Trivially remove from tail.
ivElements[--ivTailIndex] = nu... | java | private void remove(int listIndex)
{
if (listIndex == 0)
{
// Trivially remove from head.
ivElements[ivHeadIndex++] = null;
}
else if (listIndex == ivTailIndex - 1)
{
// Trivially remove from tail.
ivElements[--ivTailIndex] = nu... | [
"private",
"void",
"remove",
"(",
"int",
"listIndex",
")",
"{",
"if",
"(",
"listIndex",
"==",
"0",
")",
"{",
"// Trivially remove from head.",
"ivElements",
"[",
"ivHeadIndex",
"++",
"]",
"=",
"null",
";",
"}",
"else",
"if",
"(",
"listIndex",
"==",
"ivTail... | Removes the element at the specified index. The index must be greater or
equal to 0 and less than the size; otherwise, the behavior is undefined.
@param listIndex the index of the element to remove | [
"Removes",
"the",
"element",
"at",
"the",
"specified",
"index",
".",
"The",
"index",
"must",
"be",
"greater",
"or",
"equal",
"to",
"0",
"and",
"less",
"than",
"the",
"size",
";",
"otherwise",
"the",
"behavior",
"is",
"undefined",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/util/cache/BucketImpl.java#L313-L355 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/impl/destination/AbstractRemoteSupport.java | AbstractRemoteSupport.setToBeDeleted | public void setToBeDeleted()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "setToBeDeleted");
synchronized (_anycastInputHandlers)
{
_toBeDeleted = true;
}
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.exit... | java | public void setToBeDeleted()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "setToBeDeleted");
synchronized (_anycastInputHandlers)
{
_toBeDeleted = true;
}
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.exit... | [
"public",
"void",
"setToBeDeleted",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"\"setToBeDeleted\"",
")",
";",
"synchronized",
"... | Method to indicate that the destination has been deleted | [
"Method",
"to",
"indicate",
"that",
"the",
"destination",
"has",
"been",
"deleted"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/impl/destination/AbstractRemoteSupport.java#L1129-L1141 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.security/src/com/ibm/ws/ejbcontainer/security/internal/EJBSecurityCollaboratorImpl.java | EJBSecurityCollaboratorImpl.isInternalUnprotectedMethod | private boolean isInternalUnprotectedMethod(EJBMethodMetaData methodMetaData) {
EJBMethodInterface interfaceType = methodMetaData.getEJBMethodInterface();
/***
* For TIMED_OBJECT, the code references EJB 2.1 spec section 22.2.2 and matches a
* method signature, which is necessary but n... | java | private boolean isInternalUnprotectedMethod(EJBMethodMetaData methodMetaData) {
EJBMethodInterface interfaceType = methodMetaData.getEJBMethodInterface();
/***
* For TIMED_OBJECT, the code references EJB 2.1 spec section 22.2.2 and matches a
* method signature, which is necessary but n... | [
"private",
"boolean",
"isInternalUnprotectedMethod",
"(",
"EJBMethodMetaData",
"methodMetaData",
")",
"{",
"EJBMethodInterface",
"interfaceType",
"=",
"methodMetaData",
".",
"getEJBMethodInterface",
"(",
")",
";",
"/***\n * For TIMED_OBJECT, the code references EJB 2.1 spec... | Check if the methodMetaData interface is internal and supposed to be unprotected as per
spec.
@param methodMetaData methodMetaData to get the interface type
@return true if it should be unprotected, otherwise false | [
"Check",
"if",
"the",
"methodMetaData",
"interface",
"is",
"internal",
"and",
"supposed",
"to",
"be",
"unprotected",
"as",
"per",
"spec",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.security/src/com/ibm/ws/ejbcontainer/security/internal/EJBSecurityCollaboratorImpl.java#L334-L391 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.openidconnect.clients.common/src/com/ibm/ws/security/openidconnect/common/OidcCommonClientRequest.java | OidcCommonClientRequest.errorCommon | public JWTTokenValidationFailedException errorCommon(boolean bTrError, TraceComponent tc, String[] msgCodes, Object[] objects) throws JWTTokenValidationFailedException {
int msgIndex = 0;
if (!TYPE_ID_TOKEN.equals(this.getTokenType())) {
msgIndex = 1;
}
return errorCommon(bTr... | java | public JWTTokenValidationFailedException errorCommon(boolean bTrError, TraceComponent tc, String[] msgCodes, Object[] objects) throws JWTTokenValidationFailedException {
int msgIndex = 0;
if (!TYPE_ID_TOKEN.equals(this.getTokenType())) {
msgIndex = 1;
}
return errorCommon(bTr... | [
"public",
"JWTTokenValidationFailedException",
"errorCommon",
"(",
"boolean",
"bTrError",
",",
"TraceComponent",
"tc",
",",
"String",
"[",
"]",
"msgCodes",
",",
"Object",
"[",
"]",
"objects",
")",
"throws",
"JWTTokenValidationFailedException",
"{",
"int",
"msgIndex",
... | do not override | [
"do",
"not",
"override"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.openidconnect.clients.common/src/com/ibm/ws/security/openidconnect/common/OidcCommonClientRequest.java#L66-L72 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSBoxedListImpl.java | JSBoxedListImpl.create | static JSBoxedListImpl create(JSVaryingList subList, int subAccessor) {
if (subList.getIndirection() > 0)
return new JSIndirectBoxedListImpl(subList, subAccessor);
else
return new JSBoxedListImpl(subList, subAccessor);
} | java | static JSBoxedListImpl create(JSVaryingList subList, int subAccessor) {
if (subList.getIndirection() > 0)
return new JSIndirectBoxedListImpl(subList, subAccessor);
else
return new JSBoxedListImpl(subList, subAccessor);
} | [
"static",
"JSBoxedListImpl",
"create",
"(",
"JSVaryingList",
"subList",
",",
"int",
"subAccessor",
")",
"{",
"if",
"(",
"subList",
".",
"getIndirection",
"(",
")",
">",
"0",
")",
"return",
"new",
"JSIndirectBoxedListImpl",
"(",
"subList",
",",
"subAccessor",
"... | kind of constructor. | [
"kind",
"of",
"constructor",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSBoxedListImpl.java#L83-L88 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSBoxedListImpl.java | JSBoxedListImpl.get | public Object get(int accessor) {
try {
return ((JMFNativePart)subList.getValue(accessor)).getValue(subAccessor);
} catch (JMFException ex) {
FFDCFilter.processException(ex, "get", "129", this);
return null;
}
} | java | public Object get(int accessor) {
try {
return ((JMFNativePart)subList.getValue(accessor)).getValue(subAccessor);
} catch (JMFException ex) {
FFDCFilter.processException(ex, "get", "129", this);
return null;
}
} | [
"public",
"Object",
"get",
"(",
"int",
"accessor",
")",
"{",
"try",
"{",
"return",
"(",
"(",
"JMFNativePart",
")",
"subList",
".",
"getValue",
"(",
"accessor",
")",
")",
".",
"getValue",
"(",
"subAccessor",
")",
";",
"}",
"catch",
"(",
"JMFException",
... | thrown). | [
"thrown",
")",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSBoxedListImpl.java#L102-L109 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.authentication.builtin/src/com/ibm/ws/security/authentication/internal/jaas/modules/ServerCommonLoginModule.java | ServerCommonLoginModule.setCredentials | protected void setCredentials(Subject subject,
String securityName,
String urAuthenticatedId) throws Exception {
// Principal principal = new WSPrincipal(securityName, accessId, authMethod);
if (urAuthenticatedId != null && !urAuthentica... | java | protected void setCredentials(Subject subject,
String securityName,
String urAuthenticatedId) throws Exception {
// Principal principal = new WSPrincipal(securityName, accessId, authMethod);
if (urAuthenticatedId != null && !urAuthentica... | [
"protected",
"void",
"setCredentials",
"(",
"Subject",
"subject",
",",
"String",
"securityName",
",",
"String",
"urAuthenticatedId",
")",
"throws",
"Exception",
"{",
"// Principal principal = new WSPrincipal(securityName, accessId, authMethod);",
"if",
"(",
"urAuthentica... | Set the relevant Credentials for this login module into the Subject,
and set the credentials for the determined accessId.
@throws Exception | [
"Set",
"the",
"relevant",
"Credentials",
"for",
"this",
"login",
"module",
"into",
"the",
"Subject",
"and",
"set",
"the",
"credentials",
"for",
"the",
"determined",
"accessId",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.authentication.builtin/src/com/ibm/ws/security/authentication/internal/jaas/modules/ServerCommonLoginModule.java#L137-L149 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.authentication.builtin/src/com/ibm/ws/security/authentication/internal/jaas/modules/ServerCommonLoginModule.java | ServerCommonLoginModule.updateSubjectWithSharedStateContents | protected void updateSubjectWithSharedStateContents() {
subject.getPrincipals().add((WSPrincipal) sharedState.get(Constants.WSPRINCIPAL_KEY));
subject.getPublicCredentials().add(sharedState.get(Constants.WSCREDENTIAL_KEY));
if (sharedState.get(Constants.WSSSOTOKEN_KEY) != null)
subje... | java | protected void updateSubjectWithSharedStateContents() {
subject.getPrincipals().add((WSPrincipal) sharedState.get(Constants.WSPRINCIPAL_KEY));
subject.getPublicCredentials().add(sharedState.get(Constants.WSCREDENTIAL_KEY));
if (sharedState.get(Constants.WSSSOTOKEN_KEY) != null)
subje... | [
"protected",
"void",
"updateSubjectWithSharedStateContents",
"(",
")",
"{",
"subject",
".",
"getPrincipals",
"(",
")",
".",
"add",
"(",
"(",
"WSPrincipal",
")",
"sharedState",
".",
"get",
"(",
"Constants",
".",
"WSPRINCIPAL_KEY",
")",
")",
";",
"subject",
".",... | Sets the original subject with the shared state contents. | [
"Sets",
"the",
"original",
"subject",
"with",
"the",
"shared",
"state",
"contents",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.authentication.builtin/src/com/ibm/ws/security/authentication/internal/jaas/modules/ServerCommonLoginModule.java#L242-L247 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.authentication.builtin/src/com/ibm/ws/security/authentication/internal/jaas/modules/ServerCommonLoginModule.java | ServerCommonLoginModule.setUpSubject | void setUpSubject(final String securityName, final String accessId,
final String authMethod) throws LoginException {
// Populate a temporary subject in response to a successful authentication.
// We use a temporary Subject because if something goes wrong in this flow,
// we... | java | void setUpSubject(final String securityName, final String accessId,
final String authMethod) throws LoginException {
// Populate a temporary subject in response to a successful authentication.
// We use a temporary Subject because if something goes wrong in this flow,
// we... | [
"void",
"setUpSubject",
"(",
"final",
"String",
"securityName",
",",
"final",
"String",
"accessId",
",",
"final",
"String",
"authMethod",
")",
"throws",
"LoginException",
"{",
"// Populate a temporary subject in response to a successful authentication.",
"// We use a temporary ... | Common Subject set up. Guarantees an atomic commit to the subject
passed in via initialization.
@throws LoginException | [
"Common",
"Subject",
"set",
"up",
".",
"Guarantees",
"an",
"atomic",
"commit",
"to",
"the",
"subject",
"passed",
"in",
"via",
"initialization",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.authentication.builtin/src/com/ibm/ws/security/authentication/internal/jaas/modules/ServerCommonLoginModule.java#L295-L320 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/MultiScopeRecoveryLog.java | MultiScopeRecoveryLog.payloadWritten | protected void payloadWritten(int payloadSize)
{
if (tc.isEntryEnabled())
Tr.entry(tc, "payloadWritten", new Object[] { this, payloadSize });
_unwrittenDataSize.addAndGet(-payloadSize);
if (tc.isDebugEnabled())
Tr.debug(tc, "unwrittenDataSize = " + _unwrittenDataSiz... | java | protected void payloadWritten(int payloadSize)
{
if (tc.isEntryEnabled())
Tr.entry(tc, "payloadWritten", new Object[] { this, payloadSize });
_unwrittenDataSize.addAndGet(-payloadSize);
if (tc.isDebugEnabled())
Tr.debug(tc, "unwrittenDataSize = " + _unwrittenDataSiz... | [
"protected",
"void",
"payloadWritten",
"(",
"int",
"payloadSize",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"payloadWritten\"",
",",
"new",
"Object",
"[",
"]",
"{",
"this",
",",
"payloadSize",
... | Informs the recovery log that previously unwritten data has been written to disk
by one of its recoverable units and no longer needs to be tracked in the unwritten
data field. The recovery log must use the supplied information to track the amount
of unwritten active data it holds.
This call is driven from the recovera... | [
"Informs",
"the",
"recovery",
"log",
"that",
"previously",
"unwritten",
"data",
"has",
"been",
"written",
"to",
"disk",
"by",
"one",
"of",
"its",
"recoverable",
"units",
"and",
"no",
"longer",
"needs",
"to",
"be",
"tracked",
"in",
"the",
"unwritten",
"data",... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/MultiScopeRecoveryLog.java#L2116-L2127 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/MultiScopeRecoveryLog.java | MultiScopeRecoveryLog.payloadDeleted | protected void payloadDeleted(int totalPayloadSize, int unwrittenPayloadSize)
{
if (tc.isEntryEnabled())
Tr.entry(tc, "payloadDeleted", new Object[] { this, totalPayloadSize, unwrittenPayloadSize });
_unwrittenDataSize.addAndGet(-unwrittenPayloadSize);
synchronized (this)
... | java | protected void payloadDeleted(int totalPayloadSize, int unwrittenPayloadSize)
{
if (tc.isEntryEnabled())
Tr.entry(tc, "payloadDeleted", new Object[] { this, totalPayloadSize, unwrittenPayloadSize });
_unwrittenDataSize.addAndGet(-unwrittenPayloadSize);
synchronized (this)
... | [
"protected",
"void",
"payloadDeleted",
"(",
"int",
"totalPayloadSize",
",",
"int",
"unwrittenPayloadSize",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"payloadDeleted\"",
",",
"new",
"Object",
"[",
... | Informs the recovery log that data has been removed from one of its recoverable
units. Right now, this means that a recoverable unit and all its content has
been removed, but in the future this will also be driven when a single recoverable
unit section within a recoverable unit has been removed. The recovery log must u... | [
"Informs",
"the",
"recovery",
"log",
"that",
"data",
"has",
"been",
"removed",
"from",
"one",
"of",
"its",
"recoverable",
"units",
".",
"Right",
"now",
"this",
"means",
"that",
"a",
"recoverable",
"unit",
"and",
"all",
"its",
"content",
"has",
"been",
"rem... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/MultiScopeRecoveryLog.java#L2184-L2199 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/MultiScopeRecoveryLog.java | MultiScopeRecoveryLog.addRecoverableUnit | protected void addRecoverableUnit(RecoverableUnit recoverableUnit, boolean recovered)
{
if (tc.isEntryEnabled())
Tr.entry(tc, "addRecoverableUnit", new Object[] { recoverableUnit, recovered, this });
final long identity = recoverableUnit.identity();
_recoverableUnits.put(identi... | java | protected void addRecoverableUnit(RecoverableUnit recoverableUnit, boolean recovered)
{
if (tc.isEntryEnabled())
Tr.entry(tc, "addRecoverableUnit", new Object[] { recoverableUnit, recovered, this });
final long identity = recoverableUnit.identity();
_recoverableUnits.put(identi... | [
"protected",
"void",
"addRecoverableUnit",
"(",
"RecoverableUnit",
"recoverableUnit",
",",
"boolean",
"recovered",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"addRecoverableUnit\"",
",",
"new",
"Objec... | Adds a new RecoverableUnitImpl object, keyed from its identity to this
classes collection of such objects.
@param recoverableUnit The RecoverableUnit to be added
@param recovered Flag to indicate if this instances have been created during
recovery (true) or normal running (false). If its been created
during recovery w... | [
"Adds",
"a",
"new",
"RecoverableUnitImpl",
"object",
"keyed",
"from",
"its",
"identity",
"to",
"this",
"classes",
"collection",
"of",
"such",
"objects",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/MultiScopeRecoveryLog.java#L2378-L2394 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/MultiScopeRecoveryLog.java | MultiScopeRecoveryLog.removeRecoverableUnitMapEntries | protected RecoverableUnitImpl removeRecoverableUnitMapEntries(long identity)
{
if (tc.isEntryEnabled())
Tr.entry(tc, "removeRecoverableUnitMapEntries", new Object[] { identity, this });
final RecoverableUnitImpl recoverableUnit = (RecoverableUnitImpl) _recoverableUnits.remove(identity);... | java | protected RecoverableUnitImpl removeRecoverableUnitMapEntries(long identity)
{
if (tc.isEntryEnabled())
Tr.entry(tc, "removeRecoverableUnitMapEntries", new Object[] { identity, this });
final RecoverableUnitImpl recoverableUnit = (RecoverableUnitImpl) _recoverableUnits.remove(identity);... | [
"protected",
"RecoverableUnitImpl",
"removeRecoverableUnitMapEntries",
"(",
"long",
"identity",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"removeRecoverableUnitMapEntries\"",
",",
"new",
"Object",
"[",
... | Removes a RecoverableUnitImpl object, keyed from its identity from this
classes collection of such objects.
@param identity The identity of the RecoverableUnitImpl to be removed
@return RecoverableUnitImpl The RecoverableUnitImpl thats no longer associated
with the MultiScopeRecoveryLog. | [
"Removes",
"a",
"RecoverableUnitImpl",
"object",
"keyed",
"from",
"its",
"identity",
"from",
"this",
"classes",
"collection",
"of",
"such",
"objects",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/MultiScopeRecoveryLog.java#L2408-L2423 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/MultiScopeRecoveryLog.java | MultiScopeRecoveryLog.getRecoverableUnit | protected RecoverableUnitImpl getRecoverableUnit(long identity)
{
if (tc.isEntryEnabled())
Tr.entry(tc, "getRecoverableUnit", new Object[] { identity, this });
RecoverableUnitImpl recoverableUnit = null;
// Only attempt to resolve the recoverable unit if the log is compatible a... | java | protected RecoverableUnitImpl getRecoverableUnit(long identity)
{
if (tc.isEntryEnabled())
Tr.entry(tc, "getRecoverableUnit", new Object[] { identity, this });
RecoverableUnitImpl recoverableUnit = null;
// Only attempt to resolve the recoverable unit if the log is compatible a... | [
"protected",
"RecoverableUnitImpl",
"getRecoverableUnit",
"(",
"long",
"identity",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"getRecoverableUnit\"",
",",
"new",
"Object",
"[",
"]",
"{",
"identity",... | Retrieves a RecoverableUnitImpl object, keyed from its identity from this
classes collection of such objects.
@param identity The identity of the RecoverableUnitImpl to be retrieved
@return RecoverableUnitImpl The required RecoverableUnitImpl | [
"Retrieves",
"a",
"RecoverableUnitImpl",
"object",
"keyed",
"from",
"its",
"identity",
"from",
"this",
"classes",
"collection",
"of",
"such",
"objects",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/MultiScopeRecoveryLog.java#L2436-L2452 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/MultiScopeRecoveryLog.java | MultiScopeRecoveryLog.associateLog | @Override
public void associateLog(DistributedRecoveryLog otherLog, boolean failAssociatedLog)
{
if (tc.isEntryEnabled())
Tr.entry(tc, "associateLog", new Object[] { otherLog, failAssociatedLog, this });
if (otherLog instanceof MultiScopeLog)
{
_associatedLog = (... | java | @Override
public void associateLog(DistributedRecoveryLog otherLog, boolean failAssociatedLog)
{
if (tc.isEntryEnabled())
Tr.entry(tc, "associateLog", new Object[] { otherLog, failAssociatedLog, this });
if (otherLog instanceof MultiScopeLog)
{
_associatedLog = (... | [
"@",
"Override",
"public",
"void",
"associateLog",
"(",
"DistributedRecoveryLog",
"otherLog",
",",
"boolean",
"failAssociatedLog",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"associateLog\"",
",",
"... | Associates another log with this one. PI45254.
The code is protects against infinite recursion since associated logs are only marked as failed if
the log isn't already mark as failed.
The code does NOT protect against deadlock due to synchronization for logA->logB and logB->logA
- this is not an issue since failAssocia... | [
"Associates",
"another",
"log",
"with",
"this",
"one",
".",
"PI45254",
".",
"The",
"code",
"is",
"protects",
"against",
"infinite",
"recursion",
"since",
"associated",
"logs",
"are",
"only",
"marked",
"as",
"failed",
"if",
"the",
"log",
"isn",
"t",
"already"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/MultiScopeRecoveryLog.java#L2564-L2577 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/jfapchannel/server/impl/JFapDiscriminator.java | JFapDiscriminator.getDiscriminatoryDataType | public Class getDiscriminatoryDataType() {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "getDiscriminatorDataType");
if (tc.isEntryEnabled())
SibTr.exit(this, tc, "getDiscriminatorDataType");
return com.ibm.wsspi.bytebuffer.WsByteBuffer.class; // F188491
} | java | public Class getDiscriminatoryDataType() {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "getDiscriminatorDataType");
if (tc.isEntryEnabled())
SibTr.exit(this, tc, "getDiscriminatorDataType");
return com.ibm.wsspi.bytebuffer.WsByteBuffer.class; // F188491
} | [
"public",
"Class",
"getDiscriminatoryDataType",
"(",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"getDiscriminatorDataType\"",
")",
";",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",... | Returns the data type this discriminator is able to discriminate for.
This is always WsByteBuffer. | [
"Returns",
"the",
"data",
"type",
"this",
"discriminator",
"is",
"able",
"to",
"discriminate",
"for",
".",
"This",
"is",
"always",
"WsByteBuffer",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/jfapchannel/server/impl/JFapDiscriminator.java#L176-L182 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/jfapchannel/server/impl/JFapDiscriminator.java | JFapDiscriminator.getChannel | public Channel getChannel() {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "getChannel");
if (tc.isEntryEnabled())
SibTr.exit(this, tc, "getChannel", channel);
return channel;
} | java | public Channel getChannel() {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "getChannel");
if (tc.isEntryEnabled())
SibTr.exit(this, tc, "getChannel", channel);
return channel;
} | [
"public",
"Channel",
"getChannel",
"(",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"getChannel\"",
")",
";",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
... | Returns the channel this discriminator discriminates on behalf of. | [
"Returns",
"the",
"channel",
"this",
"discriminator",
"discriminates",
"on",
"behalf",
"of",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/jfapchannel/server/impl/JFapDiscriminator.java#L187-L193 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/jfapchannel/server/impl/JFapDiscriminator.java | JFapDiscriminator.getWeight | public int getWeight() {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "getWeight");
if (tc.isEntryEnabled())
SibTr.exit(this, tc, "getWeight");
// TODO: this probably isn't a good value.
return 0;
} | java | public int getWeight() {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "getWeight");
if (tc.isEntryEnabled())
SibTr.exit(this, tc, "getWeight");
// TODO: this probably isn't a good value.
return 0;
} | [
"public",
"int",
"getWeight",
"(",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"getWeight\"",
")",
";",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
... | Get the weighting to use for this discriminator | [
"Get",
"the",
"weighting",
"to",
"use",
"for",
"this",
"discriminator"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/jfapchannel/server/impl/JFapDiscriminator.java#L209-L216 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/BaseSIXAResourceProxy.java | BaseSIXAResourceProxy.join | protected synchronized void join(SIXAResource resource)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "join", resource);
resourcesJoinedToThisResource.add(resource);
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, tc, "joi... | java | protected synchronized void join(SIXAResource resource)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "join", resource);
resourcesJoinedToThisResource.add(resource);
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, tc, "joi... | [
"protected",
"synchronized",
"void",
"join",
"(",
"SIXAResource",
"resource",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",... | Called when another XAResource is joining to us.
@param resource | [
"Called",
"when",
"another",
"XAResource",
"is",
"joining",
"to",
"us",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/BaseSIXAResourceProxy.java#L88-L93 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/BaseSIXAResourceProxy.java | BaseSIXAResourceProxy.unjoin | protected synchronized void unjoin(SIXAResource resource)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "unjoin", resource);
resourcesJoinedToThisResource.remove(resource);
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, t... | java | protected synchronized void unjoin(SIXAResource resource)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "unjoin", resource);
resourcesJoinedToThisResource.remove(resource);
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, t... | [
"protected",
"synchronized",
"void",
"unjoin",
"(",
"SIXAResource",
"resource",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",... | Called when another instance is un-joining from us.
@param resource | [
"Called",
"when",
"another",
"instance",
"is",
"un",
"-",
"joining",
"from",
"us",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/BaseSIXAResourceProxy.java#L99-L104 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLChannelProvider.java | SSLChannelProvider.updatedSslSupport | protected void updatedSslSupport(SSLSupport service, Map<String, Object> props) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "updatedSslSupport", props);
}
sslSupport = service;
// If the default pid has changed.. we need to go hunting f... | java | protected void updatedSslSupport(SSLSupport service, Map<String, Object> props) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "updatedSslSupport", props);
}
sslSupport = service;
// If the default pid has changed.. we need to go hunting f... | [
"protected",
"void",
"updatedSslSupport",
"(",
"SSLSupport",
"service",
",",
"Map",
"<",
"String",
",",
"Object",
">",
"props",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"... | This is called if the service is updated.
@param ref reference to the service | [
"This",
"is",
"called",
"if",
"the",
"service",
"is",
"updated",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLChannelProvider.java#L216-L235 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLChannelProvider.java | SSLChannelProvider.getJSSEProvider | public static JSSEProvider getJSSEProvider() {
SSLChannelProvider p = instance.get();
if (p != null)
return p.sslSupport.getJSSEProvider();
throw new IllegalStateException("Requested service is null: no active component instance");
} | java | public static JSSEProvider getJSSEProvider() {
SSLChannelProvider p = instance.get();
if (p != null)
return p.sslSupport.getJSSEProvider();
throw new IllegalStateException("Requested service is null: no active component instance");
} | [
"public",
"static",
"JSSEProvider",
"getJSSEProvider",
"(",
")",
"{",
"SSLChannelProvider",
"p",
"=",
"instance",
".",
"get",
"(",
")",
";",
"if",
"(",
"p",
"!=",
"null",
")",
"return",
"p",
".",
"sslSupport",
".",
"getJSSEProvider",
"(",
")",
";",
"thro... | Access the JSSE provider factory service.
@return JSSEProviderService - null if not set | [
"Access",
"the",
"JSSE",
"provider",
"factory",
"service",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLChannelProvider.java#L358-L364 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLChannelProvider.java | SSLChannelProvider.getJSSEHelper | public static JSSEHelper getJSSEHelper() {
SSLChannelProvider p = instance.get();
if (p != null)
return p.sslSupport.getJSSEHelper();
throw new IllegalStateException("Requested service is null: no active component instance");
} | java | public static JSSEHelper getJSSEHelper() {
SSLChannelProvider p = instance.get();
if (p != null)
return p.sslSupport.getJSSEHelper();
throw new IllegalStateException("Requested service is null: no active component instance");
} | [
"public",
"static",
"JSSEHelper",
"getJSSEHelper",
"(",
")",
"{",
"SSLChannelProvider",
"p",
"=",
"instance",
".",
"get",
"(",
")",
";",
"if",
"(",
"p",
"!=",
"null",
")",
"return",
"p",
".",
"sslSupport",
".",
"getJSSEHelper",
"(",
")",
";",
"throw",
... | Access the JSSEHelper service.
@return JSSEHelperService - null if not set | [
"Access",
"the",
"JSSEHelper",
"service",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLChannelProvider.java#L371-L377 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/FormatSet.java | FormatSet.getBasicDateFormatter | public static DateFormat getBasicDateFormatter() { // PK42263 - made static
// Retrieve a standard Java DateFormat object with desired format, using default locale
return customizeDateFormat(DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.MEDIUM), false);
} | java | public static DateFormat getBasicDateFormatter() { // PK42263 - made static
// Retrieve a standard Java DateFormat object with desired format, using default locale
return customizeDateFormat(DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.MEDIUM), false);
} | [
"public",
"static",
"DateFormat",
"getBasicDateFormatter",
"(",
")",
"{",
"// PK42263 - made static",
"// Retrieve a standard Java DateFormat object with desired format, using default locale",
"return",
"customizeDateFormat",
"(",
"DateFormat",
".",
"getDateTimeInstance",
"(",
"DateF... | Return a DateFormat object that can be used to format timestamps in the
System.out, System.err and TraceOutput logs. It will use the default date
format. | [
"Return",
"a",
"DateFormat",
"object",
"that",
"can",
"be",
"used",
"to",
"format",
"timestamps",
"in",
"the",
"System",
".",
"out",
"System",
".",
"err",
"and",
"TraceOutput",
"logs",
".",
"It",
"will",
"use",
"the",
"default",
"date",
"format",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/FormatSet.java#L112-L115 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/FormatSet.java | FormatSet.customizeDateFormat | public static DateFormat customizeDateFormat(DateFormat formatter, boolean isoDateFormat) {
String pattern;
int patternLength;
int endOfSecsIndex;
if (!!!isoDateFormat) {
if (formatter instanceof SimpleDateFormat) {
// Retrieve the pattern from the formatter,... | java | public static DateFormat customizeDateFormat(DateFormat formatter, boolean isoDateFormat) {
String pattern;
int patternLength;
int endOfSecsIndex;
if (!!!isoDateFormat) {
if (formatter instanceof SimpleDateFormat) {
// Retrieve the pattern from the formatter,... | [
"public",
"static",
"DateFormat",
"customizeDateFormat",
"(",
"DateFormat",
"formatter",
",",
"boolean",
"isoDateFormat",
")",
"{",
"String",
"pattern",
";",
"int",
"patternLength",
";",
"int",
"endOfSecsIndex",
";",
"if",
"(",
"!",
"!",
"!",
"isoDateFormat",
")... | Modifies an existing DateFormat object so that it can be used to format timestamps in the
System.out, System.err and TraceOutput logs using either default date and time format or
ISO-8601 date and time format
@param formatter DateFormat object to be modified
@param flag to use ISO-8601 date format for output.
@return... | [
"Modifies",
"an",
"existing",
"DateFormat",
"object",
"so",
"that",
"it",
"can",
"be",
"used",
"to",
"format",
"timestamps",
"in",
"the",
"System",
".",
"out",
"System",
".",
"err",
"and",
"TraceOutput",
"logs",
"using",
"either",
"default",
"date",
"and",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/FormatSet.java#L127-L164 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security/src/com/ibm/ws/security/internal/SecurityConfiguration.java | SecurityConfiguration.setAndValidateProperties | private void setAndValidateProperties(String cfgAuthentication,
String cfgAuthorization,
String cfgUserRegistry) {
if ((cfgAuthentication == null) || cfgAuthentication.isEmpty()) {
throwIllegalArgumentExceptionMissin... | java | private void setAndValidateProperties(String cfgAuthentication,
String cfgAuthorization,
String cfgUserRegistry) {
if ((cfgAuthentication == null) || cfgAuthentication.isEmpty()) {
throwIllegalArgumentExceptionMissin... | [
"private",
"void",
"setAndValidateProperties",
"(",
"String",
"cfgAuthentication",
",",
"String",
"cfgAuthorization",
",",
"String",
"cfgUserRegistry",
")",
"{",
"if",
"(",
"(",
"cfgAuthentication",
"==",
"null",
")",
"||",
"cfgAuthentication",
".",
"isEmpty",
"(",
... | Sets and validates the configuration properties. If any of the
configuration properties are not set, an IllegalArgumentException
is thrown.
@param cfgAuthentication
@param cfgAuthorization
@param cfgUserRegistry
@throws IllegalArgumentException if any of the configuration elements
are not set | [
"Sets",
"and",
"validates",
"the",
"configuration",
"properties",
".",
"If",
"any",
"of",
"the",
"configuration",
"properties",
"are",
"not",
"set",
"an",
"IllegalArgumentException",
"is",
"thrown",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security/src/com/ibm/ws/security/internal/SecurityConfiguration.java#L71-L88 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.management.j2ee.mejb/src/com/ibm/ws/management/j2ee/mejb/service/ManagementEJBService.java | ManagementEJBService.setServerStarted | @Reference(policy = ReferencePolicy.DYNAMIC, cardinality = ReferenceCardinality.OPTIONAL)
protected synchronized void setServerStarted(ServerStarted serverStarted) {
isServerStarted = true;
// Start SystemModule if everything else is ready
startManagementEJB();
} | java | @Reference(policy = ReferencePolicy.DYNAMIC, cardinality = ReferenceCardinality.OPTIONAL)
protected synchronized void setServerStarted(ServerStarted serverStarted) {
isServerStarted = true;
// Start SystemModule if everything else is ready
startManagementEJB();
} | [
"@",
"Reference",
"(",
"policy",
"=",
"ReferencePolicy",
".",
"DYNAMIC",
",",
"cardinality",
"=",
"ReferenceCardinality",
".",
"OPTIONAL",
")",
"protected",
"synchronized",
"void",
"setServerStarted",
"(",
"ServerStarted",
"serverStarted",
")",
"{",
"isServerStarted",... | Declarative services method that is invoked once the ServerStarted service
is available. Only after this method is invoked is the Management EJB system
module started.
@param serverStarted The server started instance | [
"Declarative",
"services",
"method",
"that",
"is",
"invoked",
"once",
"the",
"ServerStarted",
"service",
"is",
"available",
".",
"Only",
"after",
"this",
"method",
"is",
"invoked",
"is",
"the",
"Management",
"EJB",
"system",
"module",
"started",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.management.j2ee.mejb/src/com/ibm/ws/management/j2ee/mejb/service/ManagementEJBService.java#L93-L99 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.webcontainer.servlet.3.1/src/com/ibm/ws/webcontainer31/async/ThreadContextManager.java | ThreadContextManager.saveContextData | public HashMap<String,Object> saveContextData(){
HashMap<String,Object> contextData = new HashMap<String, Object>();
//Save off the data from the other components we have hooks into
ComponentMetaDataAccessorImpl cmdai = ComponentMetaDataAccessorImpl.getComponentMetaDataAccessor();
... | java | public HashMap<String,Object> saveContextData(){
HashMap<String,Object> contextData = new HashMap<String, Object>();
//Save off the data from the other components we have hooks into
ComponentMetaDataAccessorImpl cmdai = ComponentMetaDataAccessorImpl.getComponentMetaDataAccessor();
... | [
"public",
"HashMap",
"<",
"String",
",",
"Object",
">",
"saveContextData",
"(",
")",
"{",
"HashMap",
"<",
"String",
",",
"Object",
">",
"contextData",
"=",
"new",
"HashMap",
"<",
"String",
",",
"Object",
">",
"(",
")",
";",
"//Save off the data from the othe... | Save off the context data for the current thread | [
"Save",
"off",
"the",
"context",
"data",
"for",
"the",
"current",
"thread"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer.servlet.3.1/src/com/ibm/ws/webcontainer31/async/ThreadContextManager.java#L59-L89 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca.cm/src/com/ibm/ejs/j2c/DefaultSecurityHelper.java | DefaultSecurityHelper.finalizeSubject | @Override
public Subject finalizeSubject(Subject subject,
ConnectionRequestInfo reqInfo,
CMConfigData cmConfigData) throws ResourceException {
final boolean isTracingEnabled = TraceComponent.isAnyTracingEnabled();
if (isTracingE... | java | @Override
public Subject finalizeSubject(Subject subject,
ConnectionRequestInfo reqInfo,
CMConfigData cmConfigData) throws ResourceException {
final boolean isTracingEnabled = TraceComponent.isAnyTracingEnabled();
if (isTracingE... | [
"@",
"Override",
"public",
"Subject",
"finalizeSubject",
"(",
"Subject",
"subject",
",",
"ConnectionRequestInfo",
"reqInfo",
",",
"CMConfigData",
"cmConfigData",
")",
"throws",
"ResourceException",
"{",
"final",
"boolean",
"isTracingEnabled",
"=",
"TraceComponent",
".",... | The finalizeSubject method is used to set what the final Subject
will be for processing.
The primary intent of this method is to allow the Subject to be
defaulted.
@param Subject subject
@param ConnectionRequestInfo reqInfo
@param cmConfigData
@return Subject
@exception ResourceException | [
"The",
"finalizeSubject",
"method",
"is",
"used",
"to",
"set",
"what",
"the",
"final",
"Subject",
"will",
"be",
"for",
"processing",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca.cm/src/com/ibm/ejs/j2c/DefaultSecurityHelper.java#L52-L69 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.