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.transport.http/src/com/ibm/ws/http/logging/internal/HTTPLoggingServiceImpl.java | HTTPLoggingServiceImpl.parseAccessLog | private void parseAccessLog(Map<String, Object> config) {
String filename = (String) config.get("access.filePath");
if (null == filename || 0 == filename.trim().length()) {
return;
}
try {
this.ncsaLog = new AccessLogger(filename.trim());
} catch (Throwabl... | java | private void parseAccessLog(Map<String, Object> config) {
String filename = (String) config.get("access.filePath");
if (null == filename || 0 == filename.trim().length()) {
return;
}
try {
this.ncsaLog = new AccessLogger(filename.trim());
} catch (Throwabl... | [
"private",
"void",
"parseAccessLog",
"(",
"Map",
"<",
"String",
",",
"Object",
">",
"config",
")",
"{",
"String",
"filename",
"=",
"(",
"String",
")",
"config",
".",
"get",
"(",
"\"access.filePath\"",
")",
";",
"if",
"(",
"null",
"==",
"filename",
"||",
... | Parse the access log related information from the config.
@param config | [
"Parse",
"the",
"access",
"log",
"related",
"information",
"from",
"the",
"config",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.transport.http/src/com/ibm/ws/http/logging/internal/HTTPLoggingServiceImpl.java#L87-L123 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.transport.http/src/com/ibm/ws/http/logging/internal/HTTPLoggingServiceImpl.java | HTTPLoggingServiceImpl.parseErrorLog | private void parseErrorLog(Map<String, Object> config) {
String filename = (String) config.get("error.filePath");
if (null == filename || 0 == filename.trim().length()) {
return;
}
try {
this.debugLog = new DebugLogger(filename);
} catch (Throwable t) {
... | java | private void parseErrorLog(Map<String, Object> config) {
String filename = (String) config.get("error.filePath");
if (null == filename || 0 == filename.trim().length()) {
return;
}
try {
this.debugLog = new DebugLogger(filename);
} catch (Throwable t) {
... | [
"private",
"void",
"parseErrorLog",
"(",
"Map",
"<",
"String",
",",
"Object",
">",
"config",
")",
"{",
"String",
"filename",
"=",
"(",
"String",
")",
"config",
".",
"get",
"(",
"\"error.filePath\"",
")",
";",
"if",
"(",
"null",
"==",
"filename",
"||",
... | Parse the error log related information from the config.
@param config | [
"Parse",
"the",
"error",
"log",
"related",
"information",
"from",
"the",
"config",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.transport.http/src/com/ibm/ws/http/logging/internal/HTTPLoggingServiceImpl.java#L130-L165 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.transport.http/src/com/ibm/ws/http/logging/internal/HTTPLoggingServiceImpl.java | HTTPLoggingServiceImpl.stop | public void stop() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "stop");
}
if (this.bRunning) {
this.bRunning = false;
this.ncsaLog.stop();
this.frcaLog.stop();
this.debugLog.stop();
}
... | java | public void stop() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "stop");
}
if (this.bRunning) {
this.bRunning = false;
this.ncsaLog.stop();
this.frcaLog.stop();
this.debugLog.stop();
}
... | [
"public",
"void",
"stop",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"stop\"",
")",
";",
"}",
"if",
"(",
"this",
"."... | Stop this service. It can be restarted after this method call. | [
"Stop",
"this",
"service",
".",
"It",
"can",
"be",
"restarted",
"after",
"this",
"method",
"call",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.transport.http/src/com/ibm/ws/http/logging/internal/HTTPLoggingServiceImpl.java#L233-L247 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.transport.http/src/com/ibm/ws/http/logging/internal/HTTPLoggingServiceImpl.java | HTTPLoggingServiceImpl.destroy | public void destroy() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "destroy");
}
this.bRunning = false;
this.ncsaLog.disable();
this.frcaLog.disable();
this.debugLog.disable();
if (TraceComponent.isAnyTracingEnable... | java | public void destroy() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "destroy");
}
this.bRunning = false;
this.ncsaLog.disable();
this.frcaLog.disable();
this.debugLog.disable();
if (TraceComponent.isAnyTracingEnable... | [
"public",
"void",
"destroy",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"destroy\"",
")",
";",
"}",
"this",
".",
"bRun... | Final call when the service is being destroyed. The service cannot be
restarted once this is used. | [
"Final",
"call",
"when",
"the",
"service",
"is",
"being",
"destroyed",
".",
"The",
"service",
"cannot",
"be",
"restarted",
"once",
"this",
"is",
"used",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.transport.http/src/com/ibm/ws/http/logging/internal/HTTPLoggingServiceImpl.java#L254-L266 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.transport.http/src/com/ibm/ws/http/logging/internal/HTTPLoggingServiceImpl.java | HTTPLoggingServiceImpl.convertInt | private int convertInt(String input, int defaultValue) {
try {
return Integer.parseInt(input.trim());
} catch (NumberFormatException nfe) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) {
Tr.event(tc, "Malformed input: " + input);
}
... | java | private int convertInt(String input, int defaultValue) {
try {
return Integer.parseInt(input.trim());
} catch (NumberFormatException nfe) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) {
Tr.event(tc, "Malformed input: " + input);
}
... | [
"private",
"int",
"convertInt",
"(",
"String",
"input",
",",
"int",
"defaultValue",
")",
"{",
"try",
"{",
"return",
"Integer",
".",
"parseInt",
"(",
"input",
".",
"trim",
"(",
")",
")",
";",
"}",
"catch",
"(",
"NumberFormatException",
"nfe",
")",
"{",
... | Convert the input string to an int value.
@param input
@param defaultValue
- if malformed, then return this instead
@return int | [
"Convert",
"the",
"input",
"string",
"to",
"an",
"int",
"value",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.transport.http/src/com/ibm/ws/http/logging/internal/HTTPLoggingServiceImpl.java#L297-L306 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.org.apache.cxf.cxf.rt.rs.mp.client.3.3/src/org/apache/cxf/microprofile/client/cdi/RestClientExtension.java | RestClientExtension.findClients | public void findClients(@Observes @WithAnnotations({RegisterRestClient.class}) ProcessAnnotatedType<?> pat) {
Class<?> restClient = pat.getAnnotatedType().getJavaClass();
if (restClient.isInterface()) {
restClientClasses.add(restClient);
pat.veto();
} else {
e... | java | public void findClients(@Observes @WithAnnotations({RegisterRestClient.class}) ProcessAnnotatedType<?> pat) {
Class<?> restClient = pat.getAnnotatedType().getJavaClass();
if (restClient.isInterface()) {
restClientClasses.add(restClient);
pat.veto();
} else {
e... | [
"public",
"void",
"findClients",
"(",
"@",
"Observes",
"@",
"WithAnnotations",
"(",
"{",
"RegisterRestClient",
".",
"class",
"}",
")",
"ProcessAnnotatedType",
"<",
"?",
">",
"pat",
")",
"{",
"Class",
"<",
"?",
">",
"restClient",
"=",
"pat",
".",
"getAnnota... | Liberty change - removed static | [
"Liberty",
"change",
"-",
"removed",
"static"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.org.apache.cxf.cxf.rt.rs.mp.client.3.3/src/org/apache/cxf/microprofile/client/cdi/RestClientExtension.java#L37-L46 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/Proxy.java | Proxy.setOpen | protected void setOpen () {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setOpen");
closed = false;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, tc, "setOpen");
} | java | protected void setOpen () {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setOpen");
closed = false;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, tc, "setOpen");
} | [
"protected",
"void",
"setOpen",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"setOpen\"",
")",
";",
"closed",
"... | Marks this proxy object as being open. | [
"Marks",
"this",
"proxy",
"object",
"as",
"being",
"open",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/Proxy.java#L89-L93 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/Proxy.java | Proxy.isClosed | public boolean isClosed()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "isClosed");
boolean retValue = false;
if (connectionProxy == null)
{
retValue = closed;
}
else
{
retValue = closed || connectionProxy.isClos... | java | public boolean isClosed()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "isClosed");
boolean retValue = false;
if (connectionProxy == null)
{
retValue = closed;
}
else
{
retValue = closed || connectionProxy.isClos... | [
"public",
"boolean",
"isClosed",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"isClosed\"",
")",
";",
"boolean",
... | This method identifies whether we are able to close this proxy
object. If this object represents a session object, then this
can only be closed if we have not been closed and if the connection
has not been closed. If it represents a connection, then we
can only close if we have not already been closed.
@return Returns... | [
"This",
"method",
"identifies",
"whether",
"we",
"are",
"able",
"to",
"close",
"this",
"proxy",
"object",
".",
"If",
"this",
"object",
"represents",
"a",
"session",
"object",
"then",
"this",
"can",
"only",
"be",
"closed",
"if",
"we",
"have",
"not",
"been",... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/Proxy.java#L105-L121 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/Proxy.java | Proxy.setClosed | protected void setClosed()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setClosed");
closed = true;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, tc, "setClosed");
} | java | protected void setClosed()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setClosed");
closed = true;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, tc, "setClosed");
} | [
"protected",
"void",
"setClosed",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"setClosed\"",
")",
";",
"closed",... | Marks this proxy object as being closed. | [
"Marks",
"this",
"proxy",
"object",
"as",
"being",
"closed",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/Proxy.java#L127-L132 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/Proxy.java | Proxy.getProxyID | public short getProxyID()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getProxyID");
if (!proxyIDSet)
{
// Someone is trying to use the ID of this proxy object but it has not been set yet. This
// is an error as the ID will be invalid ... | java | public short getProxyID()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getProxyID");
if (!proxyIDSet)
{
// Someone is trying to use the ID of this proxy object but it has not been set yet. This
// is an error as the ID will be invalid ... | [
"public",
"short",
"getProxyID",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"getProxyID\"",
")",
";",
"if",
"... | Returns the proxy's Id correspondoing to the real object on the server
@return ID The ID of the proxy object | [
"Returns",
"the",
"proxy",
"s",
"Id",
"correspondoing",
"to",
"the",
"real",
"object",
"on",
"the",
"server"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/Proxy.java#L138-L158 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/Proxy.java | Proxy.getConnectionProxy | protected ConnectionProxy getConnectionProxy()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getConnectionProxy");
if (connectionProxy == null)
{
// Someone is trying to use the connection proxy associated with this proxy object but it
... | java | protected ConnectionProxy getConnectionProxy()
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getConnectionProxy");
if (connectionProxy == null)
{
// Someone is trying to use the connection proxy associated with this proxy object but it
... | [
"protected",
"ConnectionProxy",
"getConnectionProxy",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"getConnectionProxy\... | Returns a reference to the Connection Proxy
@return ConnectionProxy The Connection proxy | [
"Returns",
"a",
"reference",
"to",
"the",
"Connection",
"Proxy"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/Proxy.java#L164-L184 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/Proxy.java | Proxy.setProxyID | protected void setProxyID(short s)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setProxyID", ""+s);
proxyID = s;
proxyIDSet = true;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, tc, "setProxyID");
} | java | protected void setProxyID(short s)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setProxyID", ""+s);
proxyID = s;
proxyIDSet = true;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, tc, "setProxyID");
} | [
"protected",
"void",
"setProxyID",
"(",
"short",
"s",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"setProxyID\"",
","... | Sets the ID corresponding to the real object on the server
@param s | [
"Sets",
"the",
"ID",
"corresponding",
"to",
"the",
"real",
"object",
"on",
"the",
"server"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/Proxy.java#L190-L196 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/transport/client/ZipClient.java | ZipClient.getAttachment | @Override
public InputStream getAttachment(final Asset asset, final Attachment attachment) throws IOException, BadVersionException, RequestFailureException {
final ZipFile repoZip = createZipFile();
if (null == repoZip) {
return null;
}
InputStream retInputStream = null... | java | @Override
public InputStream getAttachment(final Asset asset, final Attachment attachment) throws IOException, BadVersionException, RequestFailureException {
final ZipFile repoZip = createZipFile();
if (null == repoZip) {
return null;
}
InputStream retInputStream = null... | [
"@",
"Override",
"public",
"InputStream",
"getAttachment",
"(",
"final",
"Asset",
"asset",
",",
"final",
"Attachment",
"attachment",
")",
"throws",
"IOException",
",",
"BadVersionException",
",",
"RequestFailureException",
"{",
"final",
"ZipFile",
"repoZip",
"=",
"c... | This gets an input stream to the specified attachment in the zip. | [
"This",
"gets",
"an",
"input",
"stream",
"to",
"the",
"specified",
"attachment",
"in",
"the",
"zip",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/transport/client/ZipClient.java#L78-L185 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/transport/client/ZipClient.java | ZipClient.hasChildren | @Override
protected boolean hasChildren(final String relative) throws IOException {
ZipFile zip = createZipFile();
if (null == zip) {
return false;
}
Enumeration<? extends ZipEntry> entries = zip.entries();
while (entries.hasMoreElements()) {
ZipEntry ... | java | @Override
protected boolean hasChildren(final String relative) throws IOException {
ZipFile zip = createZipFile();
if (null == zip) {
return false;
}
Enumeration<? extends ZipEntry> entries = zip.entries();
while (entries.hasMoreElements()) {
ZipEntry ... | [
"@",
"Override",
"protected",
"boolean",
"hasChildren",
"(",
"final",
"String",
"relative",
")",
"throws",
"IOException",
"{",
"ZipFile",
"zip",
"=",
"createZipFile",
"(",
")",
";",
"if",
"(",
"null",
"==",
"zip",
")",
"{",
"return",
"false",
";",
"}",
"... | See if there are any assets under the specified directory in the zip | [
"See",
"if",
"there",
"are",
"any",
"assets",
"under",
"the",
"specified",
"directory",
"in",
"the",
"zip"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/transport/client/ZipClient.java#L204-L220 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/transport/client/ZipClient.java | ZipClient.getChildren | @Override
protected Collection<String> getChildren(final String relative) throws IOException {
ZipFile zip = createZipFile();
if (null == zip) {
return Collections.emptyList();
}
Collection<String> children = new ArrayList<String>();
Enumeration<? extends ZipEnt... | java | @Override
protected Collection<String> getChildren(final String relative) throws IOException {
ZipFile zip = createZipFile();
if (null == zip) {
return Collections.emptyList();
}
Collection<String> children = new ArrayList<String>();
Enumeration<? extends ZipEnt... | [
"@",
"Override",
"protected",
"Collection",
"<",
"String",
">",
"getChildren",
"(",
"final",
"String",
"relative",
")",
"throws",
"IOException",
"{",
"ZipFile",
"zip",
"=",
"createZipFile",
"(",
")",
";",
"if",
"(",
"null",
"==",
"zip",
")",
"{",
"return",... | Gets the entries under the specified directory in the zip file. This currently gets all entries
in all sub directories too but does not return other directories as I think this will be more
efficient than trying to recursively go through sub directories and we only call this method when
we want all entries under the sp... | [
"Gets",
"the",
"entries",
"under",
"the",
"specified",
"directory",
"in",
"the",
"zip",
"file",
".",
"This",
"currently",
"gets",
"all",
"entries",
"in",
"all",
"sub",
"directories",
"too",
"but",
"does",
"not",
"return",
"other",
"directories",
"as",
"I",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/transport/client/ZipClient.java#L228-L250 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/transport/client/ZipClient.java | ZipClient.getSize | @Override
protected long getSize(final String relative) {
ZipEntry entry = createFromRelative(relative);
return (entry == null ? 0 : entry.getSize());
} | java | @Override
protected long getSize(final String relative) {
ZipEntry entry = createFromRelative(relative);
return (entry == null ? 0 : entry.getSize());
} | [
"@",
"Override",
"protected",
"long",
"getSize",
"(",
"final",
"String",
"relative",
")",
"{",
"ZipEntry",
"entry",
"=",
"createFromRelative",
"(",
"relative",
")",
";",
"return",
"(",
"entry",
"==",
"null",
"?",
"0",
":",
"entry",
".",
"getSize",
"(",
"... | Gets the uncompressed size of the file specified, will return 0 if the entry was not found | [
"Gets",
"the",
"uncompressed",
"size",
"of",
"the",
"file",
"specified",
"will",
"return",
"0",
"if",
"the",
"entry",
"was",
"not",
"found"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/transport/client/ZipClient.java#L255-L259 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSCompatibleMessageImpl.java | JSCompatibleMessageImpl.getEncodingMessage | final JMFNativePart getEncodingMessage() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) JmfTr.entry(this, tc, "getEncodingMessage");
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) JmfTr.exit(this, tc, "getEncodingMessage", encoding);
return encoding;
} | java | final JMFNativePart getEncodingMessage() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) JmfTr.entry(this, tc, "getEncodingMessage");
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) JmfTr.exit(this, tc, "getEncodingMessage", encoding);
return encoding;
} | [
"final",
"JMFNativePart",
"getEncodingMessage",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"JmfTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"getEncodingMessage\"",
... | Return the underlying encoding | [
"Return",
"the",
"underlying",
"encoding"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSCompatibleMessageImpl.java#L123-L127 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsUtils.java | CommsUtils.getRuntimeProperty | public static String getRuntimeProperty(String property, String defaultValue)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getRuntimeProperty", new Object[] {property, defaultValue});
String runtimeProp = RuntimeInfo.getPr... | java | public static String getRuntimeProperty(String property, String defaultValue)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getRuntimeProperty", new Object[] {property, defaultValue});
String runtimeProp = RuntimeInfo.getPr... | [
"public",
"static",
"String",
"getRuntimeProperty",
"(",
"String",
"property",
",",
"String",
"defaultValue",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
... | This method will get a runtime property from the sib.properties file.
@param property The property key used to look up in the file.
@param defaultValue The default value if the property is not in the file.
@return Returns the property value. | [
"This",
"method",
"will",
"get",
"a",
"runtime",
"property",
"from",
"the",
"sib",
".",
"properties",
"file",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsUtils.java#L59-L68 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsUtils.java | CommsUtils.getRuntimeBooleanProperty | public static boolean getRuntimeBooleanProperty(String property, String defaultValue)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getRuntimeBooleanProperty", new Object[] {property, defaultValue});
boolean runtimeProp = B... | java | public static boolean getRuntimeBooleanProperty(String property, String defaultValue)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getRuntimeBooleanProperty", new Object[] {property, defaultValue});
boolean runtimeProp = B... | [
"public",
"static",
"boolean",
"getRuntimeBooleanProperty",
"(",
"String",
"property",
",",
"String",
"defaultValue",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"... | This method will get a runtime property from the sib.properties file as a boolean.
@param property The property key used to look up in the file.
@param defaultValue The default value if the property is not in the file.
@return Returns the property value. | [
"This",
"method",
"will",
"get",
"a",
"runtime",
"property",
"from",
"the",
"sib",
".",
"properties",
"file",
"as",
"a",
"boolean",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsUtils.java#L77-L86 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsUtils.java | CommsUtils.checkFapLevel | public static void checkFapLevel(HandshakeProperties handShakeProps, short fapLevel)
throws SIIncorrectCallException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "checkFapLevel", ""+fapLevel);
short actualFapVersion = handShakeProps.getFapLevel();
... | java | public static void checkFapLevel(HandshakeProperties handShakeProps, short fapLevel)
throws SIIncorrectCallException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "checkFapLevel", ""+fapLevel);
short actualFapVersion = handShakeProps.getFapLevel();
... | [
"public",
"static",
"void",
"checkFapLevel",
"(",
"HandshakeProperties",
"handShakeProps",
",",
"short",
"fapLevel",
")",
"throws",
"SIIncorrectCallException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
... | This method is used on API calls when checking to see if the call is supported for the current
FAP level. Before making a call in a method that is only supported in a particular FAP version
call this method passing in the lowest FAP version this method is supported in. If the current
negotiated FAP version is lower tha... | [
"This",
"method",
"is",
"used",
"on",
"API",
"calls",
"when",
"checking",
"to",
"see",
"if",
"the",
"call",
"is",
"supported",
"for",
"the",
"current",
"FAP",
"level",
".",
"Before",
"making",
"a",
"call",
"in",
"a",
"method",
"that",
"is",
"only",
"su... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsUtils.java#L168-L186 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsUtils.java | CommsUtils.isRecoverable | public static boolean isRecoverable(final SIBusMessage mess, final Reliability maxUnrecoverableReliability)
{
if(TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "isRecoverable", new Object[] {mess, maxUnrecoverableReliability});
final Reliability messageReliability = mess.ge... | java | public static boolean isRecoverable(final SIBusMessage mess, final Reliability maxUnrecoverableReliability)
{
if(TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "isRecoverable", new Object[] {mess, maxUnrecoverableReliability});
final Reliability messageReliability = mess.ge... | [
"public",
"static",
"boolean",
"isRecoverable",
"(",
"final",
"SIBusMessage",
"mess",
",",
"final",
"Reliability",
"maxUnrecoverableReliability",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
"... | Determines whether a message is recoverable compared to the supplied maxUnrecoverableReliability.
@param mess the message to check.
@para maxUnrecoverableReliability the most reliable reliability that is considered unrecoverable in the context in which this method is executed.
@return true for any message which is m... | [
"Determines",
"whether",
"a",
"message",
"is",
"recoverable",
"compared",
"to",
"the",
"supplied",
"maxUnrecoverableReliability",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/common/CommsUtils.java#L220-L232 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLAlpnNegotiator.java | SSLAlpnNegotiator.tryToRegisterAlpnNegotiator | protected ThirdPartyAlpnNegotiator tryToRegisterAlpnNegotiator(SSLEngine engine, SSLConnectionLink link, boolean useAlpn) {
if (isNativeAlpnActive()) {
if (useAlpn) {
registerNativeAlpn(engine);
}
} else if (isIbmAlpnActive()) {
registerIbmAlpn(engine,... | java | protected ThirdPartyAlpnNegotiator tryToRegisterAlpnNegotiator(SSLEngine engine, SSLConnectionLink link, boolean useAlpn) {
if (isNativeAlpnActive()) {
if (useAlpn) {
registerNativeAlpn(engine);
}
} else if (isIbmAlpnActive()) {
registerIbmAlpn(engine,... | [
"protected",
"ThirdPartyAlpnNegotiator",
"tryToRegisterAlpnNegotiator",
"(",
"SSLEngine",
"engine",
",",
"SSLConnectionLink",
"link",
",",
"boolean",
"useAlpn",
")",
"{",
"if",
"(",
"isNativeAlpnActive",
"(",
")",
")",
"{",
"if",
"(",
"useAlpn",
")",
"{",
"registe... | Check for the Java 9 ALPN API, IBM's ALPNJSSEExt, jetty-alpn, and grizzly-npn; if any are present, set up the connection for ALPN.
Order of preference is Java 9 ALPN API, IBM's ALPNJSSEExt, jetty-alpn, then grizzly-npn.
@param SSLEngine
@param SSLConnectionLink
@param useAlpn true if alpn should be used
@return ThirdP... | [
"Check",
"for",
"the",
"Java",
"9",
"ALPN",
"API",
"IBM",
"s",
"ALPNJSSEExt",
"jetty",
"-",
"alpn",
"and",
"grizzly",
"-",
"npn",
";",
"if",
"any",
"are",
"present",
"set",
"up",
"the",
"connection",
"for",
"ALPN",
".",
"Order",
"of",
"preference",
"is... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLAlpnNegotiator.java#L202-L215 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLAlpnNegotiator.java | SSLAlpnNegotiator.tryToRemoveAlpnNegotiator | protected void tryToRemoveAlpnNegotiator(ThirdPartyAlpnNegotiator negotiator, SSLEngine engine, SSLConnectionLink link) {
// the Java 9 and IBM JSSE ALPN implementations don't use a negotiator object
if (negotiator == null && isNativeAlpnActive()) {
getNativeAlpnChoice(engine, link);
... | java | protected void tryToRemoveAlpnNegotiator(ThirdPartyAlpnNegotiator negotiator, SSLEngine engine, SSLConnectionLink link) {
// the Java 9 and IBM JSSE ALPN implementations don't use a negotiator object
if (negotiator == null && isNativeAlpnActive()) {
getNativeAlpnChoice(engine, link);
... | [
"protected",
"void",
"tryToRemoveAlpnNegotiator",
"(",
"ThirdPartyAlpnNegotiator",
"negotiator",
",",
"SSLEngine",
"engine",
",",
"SSLConnectionLink",
"link",
")",
"{",
"// the Java 9 and IBM JSSE ALPN implementations don't use a negotiator object",
"if",
"(",
"negotiator",
"==",... | If ALPN is active, try to remove the ThirdPartyAlpnNegotiator from the map of active negotiators
@param ThirdPartyAlpnNegotiator
@param SSLEngine
@param SSLConnectionLink | [
"If",
"ALPN",
"is",
"active",
"try",
"to",
"remove",
"the",
"ThirdPartyAlpnNegotiator",
"from",
"the",
"map",
"of",
"active",
"negotiators"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLAlpnNegotiator.java#L224-L235 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLAlpnNegotiator.java | SSLAlpnNegotiator.getAndRemoveIbmAlpnChoice | protected void getAndRemoveIbmAlpnChoice(SSLEngine engine, SSLConnectionLink link) {
if (this.isIbmAlpnActive()) {
try {
// invoke ALPNJSSEExt.get(engine)
String[] alpnResult = (String[]) ibmAlpnGet.invoke(null, engine);
// invoke ALPNJSSEExt.delete(e... | java | protected void getAndRemoveIbmAlpnChoice(SSLEngine engine, SSLConnectionLink link) {
if (this.isIbmAlpnActive()) {
try {
// invoke ALPNJSSEExt.get(engine)
String[] alpnResult = (String[]) ibmAlpnGet.invoke(null, engine);
// invoke ALPNJSSEExt.delete(e... | [
"protected",
"void",
"getAndRemoveIbmAlpnChoice",
"(",
"SSLEngine",
"engine",
",",
"SSLConnectionLink",
"link",
")",
"{",
"if",
"(",
"this",
".",
"isIbmAlpnActive",
"(",
")",
")",
"{",
"try",
"{",
"// invoke ALPNJSSEExt.get(engine)",
"String",
"[",
"]",
"alpnResul... | Ask the JSSE ALPN provider for the protocol selected for the given SSLEngine, then delete the engine from
the ALPN provider's map. If the selected protocol was "h2", set that as the protocol to use on the given link.
@param SSLEngine
@param SSLConnectionLink | [
"Ask",
"the",
"JSSE",
"ALPN",
"provider",
"for",
"the",
"protocol",
"selected",
"for",
"the",
"given",
"SSLEngine",
"then",
"delete",
"the",
"engine",
"from",
"the",
"ALPN",
"provider",
"s",
"map",
".",
"If",
"the",
"selected",
"protocol",
"was",
"h2",
"se... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLAlpnNegotiator.java#L344-L384 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLAlpnNegotiator.java | SSLAlpnNegotiator.registerGrizzlyAlpn | protected GrizzlyAlpnNegotiator registerGrizzlyAlpn(SSLEngine engine, SSLConnectionLink link) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "registerGrizzlyAlpn entry " + engine);
}
if (grizzlyNegotiationSupport != null && grizzlyAlpnClientNegoti... | java | protected GrizzlyAlpnNegotiator registerGrizzlyAlpn(SSLEngine engine, SSLConnectionLink link) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "registerGrizzlyAlpn entry " + engine);
}
if (grizzlyNegotiationSupport != null && grizzlyAlpnClientNegoti... | [
"protected",
"GrizzlyAlpnNegotiator",
"registerGrizzlyAlpn",
"(",
"SSLEngine",
"engine",
",",
"SSLConnectionLink",
"link",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"Tr",
"... | Using grizzly-npn, set up a new GrizzlyAlpnNegotiator to handle ALPN for a given SSLEngine and link
@param SSLEngine
@param SSLConnectionLink
@return GrizzlyAlpnNegotiator or null if ALPN was not set up | [
"Using",
"grizzly",
"-",
"npn",
"set",
"up",
"a",
"new",
"GrizzlyAlpnNegotiator",
"to",
"handle",
"ALPN",
"for",
"a",
"given",
"SSLEngine",
"and",
"link"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLAlpnNegotiator.java#L393-L436 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLAlpnNegotiator.java | SSLAlpnNegotiator.registerJettyAlpn | protected JettyServerNegotiator registerJettyAlpn(final SSLEngine engine, SSLConnectionLink link) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "registerJettyAlpn entry " + engine);
}
try {
JettyServerNegotiator negotiator = new JettyS... | java | protected JettyServerNegotiator registerJettyAlpn(final SSLEngine engine, SSLConnectionLink link) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "registerJettyAlpn entry " + engine);
}
try {
JettyServerNegotiator negotiator = new JettyS... | [
"protected",
"JettyServerNegotiator",
"registerJettyAlpn",
"(",
"final",
"SSLEngine",
"engine",
",",
"SSLConnectionLink",
"link",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
... | Using jetty-alpn, set up a new JettyServerNotiator to handle ALPN for a given SSLEngine and link
@param SSLEngine
@param SSLConnectionLink
@return JettyServerNegotiator or null if ALPN was not set up | [
"Using",
"jetty",
"-",
"alpn",
"set",
"up",
"a",
"new",
"JettyServerNotiator",
"to",
"handle",
"ALPN",
"for",
"a",
"given",
"SSLEngine",
"and",
"link"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLAlpnNegotiator.java#L445-L469 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSVariant.java | JSVariant.addCase | public void addCase(JMFType theCase) {
if (theCase == null)
throw new NullPointerException("Variant case cannot be null");
JSType newCase = (JSType)theCase;
if (cases == null)
cases = new JSType[1];
else {
JSType[] oldCases = cases;
cases = new JSType[oldCases.length + 1];
... | java | public void addCase(JMFType theCase) {
if (theCase == null)
throw new NullPointerException("Variant case cannot be null");
JSType newCase = (JSType)theCase;
if (cases == null)
cases = new JSType[1];
else {
JSType[] oldCases = cases;
cases = new JSType[oldCases.length + 1];
... | [
"public",
"void",
"addCase",
"(",
"JMFType",
"theCase",
")",
"{",
"if",
"(",
"theCase",
"==",
"null",
")",
"throw",
"new",
"NullPointerException",
"(",
"\"Variant case cannot be null\"",
")",
";",
"JSType",
"newCase",
"=",
"(",
"JSType",
")",
"theCase",
";",
... | Add a case to the variant. Note that every variant must have at least one case. | [
"Add",
"a",
"case",
"to",
"the",
"variant",
".",
"Note",
"that",
"every",
"variant",
"must",
"have",
"at",
"least",
"one",
"case",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSVariant.java#L115-L129 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSVariant.java | JSVariant.setMultiChoiceCount | BigInteger setMultiChoiceCount() {
if (boxed == null) {
multiChoiceCount = BigInteger.ZERO;
for (int i = 0; i < cases.length; i++)
multiChoiceCount = multiChoiceCount.add(cases[i].setMultiChoiceCount());
}
return multiChoiceCount;
} | java | BigInteger setMultiChoiceCount() {
if (boxed == null) {
multiChoiceCount = BigInteger.ZERO;
for (int i = 0; i < cases.length; i++)
multiChoiceCount = multiChoiceCount.add(cases[i].setMultiChoiceCount());
}
return multiChoiceCount;
} | [
"BigInteger",
"setMultiChoiceCount",
"(",
")",
"{",
"if",
"(",
"boxed",
"==",
"null",
")",
"{",
"multiChoiceCount",
"=",
"BigInteger",
".",
"ZERO",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"cases",
".",
"length",
";",
"i",
"++",
")",
"... | otherwise, it's the sum of the multiChoice counts for the cases. | [
"otherwise",
"it",
"s",
"the",
"sum",
"of",
"the",
"multiChoice",
"counts",
"for",
"the",
"cases",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSVariant.java#L134-L141 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSVariant.java | JSVariant.getDominatedVariants | public JSVariant[] getDominatedVariants(int i) {
if (dominated == null)
dominated = new JSVariant[cases.length][];
if (dominated[i] == null) {
JSType acase = cases[i];
if (acase instanceof JSVariant)
dominated[i] = new JSVariant[] {(JSVariant)acase };
else if (acase instanceof JS... | java | public JSVariant[] getDominatedVariants(int i) {
if (dominated == null)
dominated = new JSVariant[cases.length][];
if (dominated[i] == null) {
JSType acase = cases[i];
if (acase instanceof JSVariant)
dominated[i] = new JSVariant[] {(JSVariant)acase };
else if (acase instanceof JS... | [
"public",
"JSVariant",
"[",
"]",
"getDominatedVariants",
"(",
"int",
"i",
")",
"{",
"if",
"(",
"dominated",
"==",
"null",
")",
"dominated",
"=",
"new",
"JSVariant",
"[",
"cases",
".",
"length",
"]",
"[",
"",
"]",
";",
"if",
"(",
"dominated",
"[",
"i"... | Get the unboxed variants dominated by a case of this variant | [
"Get",
"the",
"unboxed",
"variants",
"dominated",
"by",
"a",
"case",
"of",
"this",
"variant"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSVariant.java#L146-L161 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSVariant.java | JSVariant.box | JSchema box(Map context) {
if (boxed != null)
return boxed; // only do it once
JSVariant subTop = new JSVariant();
subTop.cases = cases;
subTop.boxedBy = this;
boxed = (JSchema)context.get(subTop);
if (boxed == null) {
boxed = new JSchema(subTop, context);
for (int i = 0; i < c... | java | JSchema box(Map context) {
if (boxed != null)
return boxed; // only do it once
JSVariant subTop = new JSVariant();
subTop.cases = cases;
subTop.boxedBy = this;
boxed = (JSchema)context.get(subTop);
if (boxed == null) {
boxed = new JSchema(subTop, context);
for (int i = 0; i < c... | [
"JSchema",
"box",
"(",
"Map",
"context",
")",
"{",
"if",
"(",
"boxed",
"!=",
"null",
")",
"return",
"boxed",
";",
"// only do it once",
"JSVariant",
"subTop",
"=",
"new",
"JSVariant",
"(",
")",
";",
"subTop",
".",
"cases",
"=",
"cases",
";",
"subTop",
... | includes a cyclic reference to a JSchema already under construction. | [
"includes",
"a",
"cyclic",
"reference",
"to",
"a",
"JSchema",
"already",
"under",
"construction",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSVariant.java#L195-L209 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSVariant.java | JSVariant.getBoxAccessor | public int getBoxAccessor(JMFSchema schema) {
for (Accessor acc = boxAccessor; acc != null; acc = acc.next)
if (schema == acc.schema)
return acc.accessor;
return -1;
} | java | public int getBoxAccessor(JMFSchema schema) {
for (Accessor acc = boxAccessor; acc != null; acc = acc.next)
if (schema == acc.schema)
return acc.accessor;
return -1;
} | [
"public",
"int",
"getBoxAccessor",
"(",
"JMFSchema",
"schema",
")",
"{",
"for",
"(",
"Accessor",
"acc",
"=",
"boxAccessor",
";",
"acc",
"!=",
"null",
";",
"acc",
"=",
"acc",
".",
"next",
")",
"if",
"(",
"schema",
"==",
"acc",
".",
"schema",
")",
"ret... | Implement the general form of getBoxAccessor | [
"Implement",
"the",
"general",
"form",
"of",
"getBoxAccessor"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSVariant.java#L224-L229 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security.wim.base/src/com/ibm/wsspi/security/wim/model/PartyRole.java | PartyRole.setPrimaryRolePlayer | public void setPrimaryRolePlayer(com.ibm.wsspi.security.wim.model.RolePlayer value) {
this.primaryRolePlayer = value;
} | java | public void setPrimaryRolePlayer(com.ibm.wsspi.security.wim.model.RolePlayer value) {
this.primaryRolePlayer = value;
} | [
"public",
"void",
"setPrimaryRolePlayer",
"(",
"com",
".",
"ibm",
".",
"wsspi",
".",
"security",
".",
"wim",
".",
"model",
".",
"RolePlayer",
"value",
")",
"{",
"this",
".",
"primaryRolePlayer",
"=",
"value",
";",
"}"
] | Sets the value of the primaryRolePlayer property.
@param value
allowed object is {@link com.ibm.wsspi.security.wim.model.RolePlayer } | [
"Sets",
"the",
"value",
"of",
"the",
"primaryRolePlayer",
"property",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security.wim.base/src/com/ibm/wsspi/security/wim/model/PartyRole.java#L104-L106 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security.wim.base/src/com/ibm/wsspi/security/wim/model/PartyRole.java | PartyRole.getRelatedRolePlayer | public List<com.ibm.wsspi.security.wim.model.RolePlayer> getRelatedRolePlayer() {
if (relatedRolePlayer == null) {
relatedRolePlayer = new ArrayList<com.ibm.wsspi.security.wim.model.RolePlayer>();
}
return this.relatedRolePlayer;
} | java | public List<com.ibm.wsspi.security.wim.model.RolePlayer> getRelatedRolePlayer() {
if (relatedRolePlayer == null) {
relatedRolePlayer = new ArrayList<com.ibm.wsspi.security.wim.model.RolePlayer>();
}
return this.relatedRolePlayer;
} | [
"public",
"List",
"<",
"com",
".",
"ibm",
".",
"wsspi",
".",
"security",
".",
"wim",
".",
"model",
".",
"RolePlayer",
">",
"getRelatedRolePlayer",
"(",
")",
"{",
"if",
"(",
"relatedRolePlayer",
"==",
"null",
")",
"{",
"relatedRolePlayer",
"=",
"new",
"Ar... | Gets the value of the relatedRolePlayer property.
<p>
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a <CODE>set</CODE> method for the relatedRolePlayer property.
<p>
F... | [
"Gets",
"the",
"value",
"of",
"the",
"relatedRolePlayer",
"property",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security.wim.base/src/com/ibm/wsspi/security/wim/model/PartyRole.java#L134-L139 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging.hpel.osgi/src/com/ibm/ws/logging/internal/osgi/hpel/AbstractHPELConfigService.java | AbstractHPELConfigService.stop | void stop() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) {
Tr.event(tc, "Stopping the HPEL managed service");
}
// disconnect from the config admin
this.configRef.unregister();
} | java | void stop() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) {
Tr.event(tc, "Stopping the HPEL managed service");
}
// disconnect from the config admin
this.configRef.unregister();
} | [
"void",
"stop",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEventEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"event",
"(",
"tc",
",",
"\"Stopping the HPEL managed service\"",
")",
";",
"}",
"// disconn... | Stop this service and free any allocated resources when the owning bundle
is being stopped. | [
"Stop",
"this",
"service",
"and",
"free",
"any",
"allocated",
"resources",
"when",
"the",
"owning",
"bundle",
"is",
"being",
"stopped",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging.hpel.osgi/src/com/ibm/ws/logging/internal/osgi/hpel/AbstractHPELConfigService.java#L82-L88 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/parser/JSParser.java | JSParser.reconcile | private static void reconcile(JSType top, List defs, Map refs) {
List unres = (List) refs.get(top.getFeatureName());
if (unres != null)
for (Iterator iter = unres.iterator(); iter.hasNext(); )
((JSDynamic) iter.next()).setExpectedType(top);
for (Iterator iter = defs.iterator(); iter.hasNext();... | java | private static void reconcile(JSType top, List defs, Map refs) {
List unres = (List) refs.get(top.getFeatureName());
if (unres != null)
for (Iterator iter = unres.iterator(); iter.hasNext(); )
((JSDynamic) iter.next()).setExpectedType(top);
for (Iterator iter = defs.iterator(); iter.hasNext();... | [
"private",
"static",
"void",
"reconcile",
"(",
"JSType",
"top",
",",
"List",
"defs",
",",
"Map",
"refs",
")",
"{",
"List",
"unres",
"=",
"(",
"List",
")",
"refs",
".",
"get",
"(",
"top",
".",
"getFeatureName",
"(",
")",
")",
";",
"if",
"(",
"unres"... | Subroutine to resolve dangling "expected" references | [
"Subroutine",
"to",
"resolve",
"dangling",
"expected",
"references"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/parser/JSParser.java#L94-L106 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/parser/JSParser.java | JSParser.addRef | private static void addRef(Map refs, String key, JSDynamic unres) {
List thisKey = (List) refs.get(key);
if (thisKey == null) {
thisKey = new ArrayList();
refs.put(key, thisKey);
}
thisKey.add(unres);
} | java | private static void addRef(Map refs, String key, JSDynamic unres) {
List thisKey = (List) refs.get(key);
if (thisKey == null) {
thisKey = new ArrayList();
refs.put(key, thisKey);
}
thisKey.add(unres);
} | [
"private",
"static",
"void",
"addRef",
"(",
"Map",
"refs",
",",
"String",
"key",
",",
"JSDynamic",
"unres",
")",
"{",
"List",
"thisKey",
"=",
"(",
"List",
")",
"refs",
".",
"get",
"(",
"key",
")",
";",
"if",
"(",
"thisKey",
"==",
"null",
")",
"{",
... | Subroutine to enter a dangling "expected" reference in the refs map | [
"Subroutine",
"to",
"enter",
"a",
"dangling",
"expected",
"reference",
"in",
"the",
"refs",
"map"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/parser/JSParser.java#L111-L118 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/strategies/writeable/AddThenHideOldStrategy.java | AddThenHideOldStrategy.getNewerResource | private RepositoryResource getNewerResource(RepositoryResource res1, RepositoryResource res2) throws RepositoryResourceValidationException {
// if one of the resources is beta and the other not, return the non-beta one
RepositoryResource singleNonBetaResource = returnNonBetaResourceOrNull(res1, res2);
... | java | private RepositoryResource getNewerResource(RepositoryResource res1, RepositoryResource res2) throws RepositoryResourceValidationException {
// if one of the resources is beta and the other not, return the non-beta one
RepositoryResource singleNonBetaResource = returnNonBetaResourceOrNull(res1, res2);
... | [
"private",
"RepositoryResource",
"getNewerResource",
"(",
"RepositoryResource",
"res1",
",",
"RepositoryResource",
"res2",
")",
"throws",
"RepositoryResourceValidationException",
"{",
"// if one of the resources is beta and the other not, return the non-beta one",
"RepositoryResource",
... | Return the higher version of the resource or the first one if this cannot be determined. For Products
this is based off the ProductVersion and for everything else it is based of the appliesTo information.
For resources that have the same appliesTo version the version field is used to determine which to return.
If the... | [
"Return",
"the",
"higher",
"version",
"of",
"the",
"resource",
"or",
"the",
"first",
"one",
"if",
"this",
"cannot",
"be",
"determined",
".",
"For",
"Products",
"this",
"is",
"based",
"off",
"the",
"ProductVersion",
"and",
"for",
"everything",
"else",
"it",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/strategies/writeable/AddThenHideOldStrategy.java#L243-L283 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/strategies/writeable/AddThenHideOldStrategy.java | AddThenHideOldStrategy.compareNonProductResourceAppliesTo | private RepositoryResource compareNonProductResourceAppliesTo(RepositoryResource res1, RepositoryResource res2) {
// all types other than INSTALLS or TOOLS use appliesTo to determine which is the higher level
String res1AppliesTo = ((ApplicableToProduct) res1).getAppliesTo();
String res2Applies... | java | private RepositoryResource compareNonProductResourceAppliesTo(RepositoryResource res1, RepositoryResource res2) {
// all types other than INSTALLS or TOOLS use appliesTo to determine which is the higher level
String res1AppliesTo = ((ApplicableToProduct) res1).getAppliesTo();
String res2Applies... | [
"private",
"RepositoryResource",
"compareNonProductResourceAppliesTo",
"(",
"RepositoryResource",
"res1",
",",
"RepositoryResource",
"res2",
")",
"{",
"// all types other than INSTALLS or TOOLS use appliesTo to determine which is the higher level",
"String",
"res1AppliesTo",
"=",
"(",
... | This routine handles non product resources
@param res1 - a non-product resource
@param res2 - a non-product resource
@return the newer resource | [
"This",
"routine",
"handles",
"non",
"product",
"resources"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/strategies/writeable/AddThenHideOldStrategy.java#L327-L366 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/strategies/writeable/AddThenHideOldStrategy.java | AddThenHideOldStrategy.getNonProductResourceWithHigherVersion | private RepositoryResource getNonProductResourceWithHigherVersion(RepositoryResource res1, RepositoryResource res2) {
if (res1.getVersion() == null || res2.getVersion() == null) {
return res1; // don't have two versions so can't compare
}
// have two String versions .. convert them... | java | private RepositoryResource getNonProductResourceWithHigherVersion(RepositoryResource res1, RepositoryResource res2) {
if (res1.getVersion() == null || res2.getVersion() == null) {
return res1; // don't have two versions so can't compare
}
// have two String versions .. convert them... | [
"private",
"RepositoryResource",
"getNonProductResourceWithHigherVersion",
"(",
"RepositoryResource",
"res1",
",",
"RepositoryResource",
"res2",
")",
"{",
"if",
"(",
"res1",
".",
"getVersion",
"(",
")",
"==",
"null",
"||",
"res2",
".",
"getVersion",
"(",
")",
"=="... | Return the resource with the highest version for when the appliesTo versions are equal
@param res1 resource to compare
@param res2 resource to compare
@return RepositoryResource with the higher version field | [
"Return",
"the",
"resource",
"with",
"the",
"highest",
"version",
"for",
"when",
"the",
"appliesTo",
"versions",
"are",
"equal"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/strategies/writeable/AddThenHideOldStrategy.java#L375-L398 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/strategies/writeable/AddThenHideOldStrategy.java | AddThenHideOldStrategy.getMinAndMaxAppliesToVersionFromAppliesTo | private MinAndMaxVersion getMinAndMaxAppliesToVersionFromAppliesTo(String appliesTo) {
List<AppliesToFilterInfo> res1Filters = AppliesToProcessor.parseAppliesToHeader(appliesTo);
Version4Digit highestVersion = null;
Version4Digit lowestVersion = null;
for (AppliesToFilterInfo f : res1Fi... | java | private MinAndMaxVersion getMinAndMaxAppliesToVersionFromAppliesTo(String appliesTo) {
List<AppliesToFilterInfo> res1Filters = AppliesToProcessor.parseAppliesToHeader(appliesTo);
Version4Digit highestVersion = null;
Version4Digit lowestVersion = null;
for (AppliesToFilterInfo f : res1Fi... | [
"private",
"MinAndMaxVersion",
"getMinAndMaxAppliesToVersionFromAppliesTo",
"(",
"String",
"appliesTo",
")",
"{",
"List",
"<",
"AppliesToFilterInfo",
">",
"res1Filters",
"=",
"AppliesToProcessor",
".",
"parseAppliesToHeader",
"(",
"appliesTo",
")",
";",
"Version4Digit",
"... | Parse an appliesTo to get the lowest and highest version that this asset applies to and
return an object describing this.
@param apliesTo the appliesTo String
@return MinAndMaxVersion object describing the range of levels supported | [
"Parse",
"an",
"appliesTo",
"to",
"get",
"the",
"lowest",
"and",
"highest",
"version",
"that",
"this",
"asset",
"applies",
"to",
"and",
"return",
"an",
"object",
"describing",
"this",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/strategies/writeable/AddThenHideOldStrategy.java#L407-L426 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/ResourceAdapterService.java | ResourceAdapterService.rarFileExists | public boolean rarFileExists() {
final File zipFile = new File(rarFilePath);
return AccessController.doPrivileged(new PrivilegedAction<Boolean>() {
@Override
public Boolean run() {
return zipFile.exists();
}
});
} | java | public boolean rarFileExists() {
final File zipFile = new File(rarFilePath);
return AccessController.doPrivileged(new PrivilegedAction<Boolean>() {
@Override
public Boolean run() {
return zipFile.exists();
}
});
} | [
"public",
"boolean",
"rarFileExists",
"(",
")",
"{",
"final",
"File",
"zipFile",
"=",
"new",
"File",
"(",
"rarFilePath",
")",
";",
"return",
"AccessController",
".",
"doPrivileged",
"(",
"new",
"PrivilegedAction",
"<",
"Boolean",
">",
"(",
")",
"{",
"@",
"... | Check that resource adapter path exists
@return true if path exists, false if it does not | [
"Check",
"that",
"resource",
"adapter",
"path",
"exists"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/ResourceAdapterService.java#L187-L195 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/ResourceAdapterService.java | ResourceAdapterService.getClassLoader | public ClassLoader getClassLoader() throws UnableToAdaptException, MalformedURLException {
lock.readLock().lock();
try {
if (classloader != null)
return classloader;
} finally {
lock.readLock().unlock();
}
if (!rarFileExists())
... | java | public ClassLoader getClassLoader() throws UnableToAdaptException, MalformedURLException {
lock.readLock().lock();
try {
if (classloader != null)
return classloader;
} finally {
lock.readLock().unlock();
}
if (!rarFileExists())
... | [
"public",
"ClassLoader",
"getClassLoader",
"(",
")",
"throws",
"UnableToAdaptException",
",",
"MalformedURLException",
"{",
"lock",
".",
"readLock",
"(",
")",
".",
"lock",
"(",
")",
";",
"try",
"{",
"if",
"(",
"classloader",
"!=",
"null",
")",
"return",
"cla... | Returns the class loader for the resource adapter.
@return class loader
@throws UnableToAdaptException
@throws MalformedURLException | [
"Returns",
"the",
"class",
"loader",
"for",
"the",
"resource",
"adapter",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/ResourceAdapterService.java#L204-L223 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/ResourceAdapterService.java | ResourceAdapterService.getProtectionDomain | private ProtectionDomain getProtectionDomain(Container rarContainer) throws UnableToAdaptException, MalformedURLException {
PermissionCollection perms = new Permissions();
CodeSource codeSource;
try {
// codesource must start file:///
// assume loc starts with 0 or 1 /
... | java | private ProtectionDomain getProtectionDomain(Container rarContainer) throws UnableToAdaptException, MalformedURLException {
PermissionCollection perms = new Permissions();
CodeSource codeSource;
try {
// codesource must start file:///
// assume loc starts with 0 or 1 /
... | [
"private",
"ProtectionDomain",
"getProtectionDomain",
"(",
"Container",
"rarContainer",
")",
"throws",
"UnableToAdaptException",
",",
"MalformedURLException",
"{",
"PermissionCollection",
"perms",
"=",
"new",
"Permissions",
"(",
")",
";",
"CodeSource",
"codeSource",
";",
... | Create a protection domain for the given RA, that includes the effective server
java security permissions as well as those defined in the RA's permissions.xml.
@param rarContainer resource adapter container object
@return ProtectionDomain object configured for the resource adapter
@throws UnableToAdaptException
@throw... | [
"Create",
"a",
"protection",
"domain",
"for",
"the",
"given",
"RA",
"that",
"includes",
"the",
"effective",
"server",
"java",
"security",
"permissions",
"as",
"well",
"as",
"those",
"defined",
"in",
"the",
"RA",
"s",
"permissions",
".",
"xml",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/ResourceAdapterService.java#L386-L427 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/ResourceAdapterService.java | ResourceAdapterService.deleteBundleCacheDir | private boolean deleteBundleCacheDir(File path) {
final boolean trace = TraceComponent.isAnyTracingEnabled();
if (FileUtils.fileExists(path)) {
if (trace && tc.isDebugEnabled()) {
Tr.debug(this, tc, "Path specified exists: " + path.getPath());
}
} else {
... | java | private boolean deleteBundleCacheDir(File path) {
final boolean trace = TraceComponent.isAnyTracingEnabled();
if (FileUtils.fileExists(path)) {
if (trace && tc.isDebugEnabled()) {
Tr.debug(this, tc, "Path specified exists: " + path.getPath());
}
} else {
... | [
"private",
"boolean",
"deleteBundleCacheDir",
"(",
"File",
"path",
")",
"{",
"final",
"boolean",
"trace",
"=",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
";",
"if",
"(",
"FileUtils",
".",
"fileExists",
"(",
"path",
")",
")",
"{",
"if",
"(",
"t... | Deletes the directory and its contents or the file that is specified
@param path to cache directory to delete
@return true if path was deleted or if it did not exist | [
"Deletes",
"the",
"directory",
"and",
"its",
"contents",
"or",
"the",
"file",
"that",
"is",
"specified"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca/src/com/ibm/ws/jca/internal/ResourceAdapterService.java#L484-L527 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.classloading/src/com/ibm/ws/classloading/internal/UnifiedClassLoader.java | UnifiedClassLoader.addTransformer | @Override
public boolean addTransformer(final ClassFileTransformer cft) {
boolean added = false;
for (ClassLoader loader : followOnClassLoaders) {
if (loader instanceof SpringLoader) {
added |= ((SpringLoader) loader).addTransformer(cft);
}
}
r... | java | @Override
public boolean addTransformer(final ClassFileTransformer cft) {
boolean added = false;
for (ClassLoader loader : followOnClassLoaders) {
if (loader instanceof SpringLoader) {
added |= ((SpringLoader) loader).addTransformer(cft);
}
}
r... | [
"@",
"Override",
"public",
"boolean",
"addTransformer",
"(",
"final",
"ClassFileTransformer",
"cft",
")",
"{",
"boolean",
"added",
"=",
"false",
";",
"for",
"(",
"ClassLoader",
"loader",
":",
"followOnClassLoaders",
")",
"{",
"if",
"(",
"loader",
"instanceof",
... | Spring to register the given ClassFileTransformer on this ClassLoader | [
"Spring",
"to",
"register",
"the",
"given",
"ClassFileTransformer",
"on",
"this",
"ClassLoader"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.classloading/src/com/ibm/ws/classloading/internal/UnifiedClassLoader.java#L45-L54 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.classloading/src/com/ibm/ws/classloading/internal/UnifiedClassLoader.java | UnifiedClassLoader.getThrowawayClassLoader | @Override
public ClassLoader getThrowawayClassLoader() {
ClassLoader newParent = getThrowawayVersion(getParent());
ClassLoader[] newFollowOns = new ClassLoader[followOnClassLoaders.size()];
for (int i = 0; i < newFollowOns.length; i++) {
newFollowOns[i] = getThrowawayVersion(foll... | java | @Override
public ClassLoader getThrowawayClassLoader() {
ClassLoader newParent = getThrowawayVersion(getParent());
ClassLoader[] newFollowOns = new ClassLoader[followOnClassLoaders.size()];
for (int i = 0; i < newFollowOns.length; i++) {
newFollowOns[i] = getThrowawayVersion(foll... | [
"@",
"Override",
"public",
"ClassLoader",
"getThrowawayClassLoader",
"(",
")",
"{",
"ClassLoader",
"newParent",
"=",
"getThrowawayVersion",
"(",
"getParent",
"(",
")",
")",
";",
"ClassLoader",
"[",
"]",
"newFollowOns",
"=",
"new",
"ClassLoader",
"[",
"followOnClas... | Special method used by Spring to obtain a throwaway class loader for this ClassLoader | [
"Special",
"method",
"used",
"by",
"Spring",
"to",
"obtain",
"a",
"throwaway",
"class",
"loader",
"for",
"this",
"ClassLoader"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.classloading/src/com/ibm/ws/classloading/internal/UnifiedClassLoader.java#L59-L67 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/logging/MyfacesLogger.java | MyfacesLogger.throwing | public void throwing(
Level level,
String sourceClass,
String sourceMethod,
Throwable thrown
)
{
logp(level, sourceClass, sourceMethod, null, thrown);
} | java | public void throwing(
Level level,
String sourceClass,
String sourceMethod,
Throwable thrown
)
{
logp(level, sourceClass, sourceMethod, null, thrown);
} | [
"public",
"void",
"throwing",
"(",
"Level",
"level",
",",
"String",
"sourceClass",
",",
"String",
"sourceMethod",
",",
"Throwable",
"thrown",
")",
"{",
"logp",
"(",
"level",
",",
"sourceClass",
",",
"sourceMethod",
",",
"null",
",",
"thrown",
")",
";",
"}"... | Log throwing an exception.
Comparing to Java Logging function
Logger.throwing(sourceClass, sourceMethod, thrown)
this function takes one more parameter "level" so that developers can
specify the logging level of an exception. Developers should pass value
for the "level" parameter using following convention,
<p>
Leve... | [
"Log",
"throwing",
"an",
"exception",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/logging/MyfacesLogger.java#L937-L945 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java | TransactionToDispatchableMap.addDispatchableForLocalTransaction | public Dispatchable addDispatchableForLocalTransaction(int clientTransactionId) {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "addDispatchableForLocalTransaction", "" + clientTransactionId);
if (idToFirstLevelEntryMap.containsKey(clientTransactionId)) {
final SIErrorException ... | java | public Dispatchable addDispatchableForLocalTransaction(int clientTransactionId) {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "addDispatchableForLocalTransaction", "" + clientTransactionId);
if (idToFirstLevelEntryMap.containsKey(clientTransactionId)) {
final SIErrorException ... | [
"public",
"Dispatchable",
"addDispatchableForLocalTransaction",
"(",
"int",
"clientTransactionId",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"addDispatchableForLocalTransaction\"",
",",
"... | Adds a dispatchable for use with a specific local transaction.
Typically this is done by the done by the TCP channel thread
when it determines it is about to pass the transmission relating
to the start of a local transaction to the receive listener
dispatcher.
@param clientTransactionId Identifies the local transactio... | [
"Adds",
"a",
"dispatchable",
"for",
"use",
"with",
"a",
"specific",
"local",
"transaction",
".",
"Typically",
"this",
"is",
"done",
"by",
"the",
"done",
"by",
"the",
"TCP",
"channel",
"thread",
"when",
"it",
"determines",
"it",
"is",
"about",
"to",
"pass",... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java#L61-L79 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java | TransactionToDispatchableMap.addEnlistedDispatchableForGlobalTransaction | public Dispatchable addEnlistedDispatchableForGlobalTransaction(int clientXAResourceId, XidProxy xid) {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "addEnlistedDispatchableForGlobalTransaction", new Object[] { "" + clientXAResourceId });
AbstractFirstLevelMapEntry firstLevelEntry = null;
... | java | public Dispatchable addEnlistedDispatchableForGlobalTransaction(int clientXAResourceId, XidProxy xid) {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "addEnlistedDispatchableForGlobalTransaction", new Object[] { "" + clientXAResourceId });
AbstractFirstLevelMapEntry firstLevelEntry = null;
... | [
"public",
"Dispatchable",
"addEnlistedDispatchableForGlobalTransaction",
"(",
"int",
"clientXAResourceId",
",",
"XidProxy",
"xid",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"addEnlisted... | Adds a dispatchable for use with a specific SIXAResource, which is
currently enlisted in a global transaction. Typically this is
done by the TCP channel thread when it determines that it is about
to pass the transmission relating to the XA_START of enlistment
into a global transaction to the receive listener dispatcher... | [
"Adds",
"a",
"dispatchable",
"for",
"use",
"with",
"a",
"specific",
"SIXAResource",
"which",
"is",
"currently",
"enlisted",
"in",
"a",
"global",
"transaction",
".",
"Typically",
"this",
"is",
"done",
"by",
"the",
"TCP",
"channel",
"thread",
"when",
"it",
"de... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java#L94-L130 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java | TransactionToDispatchableMap.getDispatchable | public Dispatchable getDispatchable(int clientId) {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "getDispatchable", "" + clientId);
AbstractFirstLevelMapEntry firstLevelEntry = null;
if (idToFirstLevelEntryMap.containsKey(clientId)) {
firstLevelEntry =
... | java | public Dispatchable getDispatchable(int clientId) {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "getDispatchable", "" + clientId);
AbstractFirstLevelMapEntry firstLevelEntry = null;
if (idToFirstLevelEntryMap.containsKey(clientId)) {
firstLevelEntry =
... | [
"public",
"Dispatchable",
"getDispatchable",
"(",
"int",
"clientId",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"getDispatchable\"",
",",
"\"\"",
"+",
"clientId",
")",
";",
"Abst... | Obtains a dispatchable for the specified client side transaction ID.
The dispatchable returned will either correspond to an in-flight local
transaction or an inflight enlisted SIXAResource. If there is no
corresponding dispatchable in the table the a value of null is returned.
@param clientId the client id to obtain a... | [
"Obtains",
"a",
"dispatchable",
"for",
"the",
"specified",
"client",
"side",
"transaction",
"ID",
".",
"The",
"dispatchable",
"returned",
"will",
"either",
"correspond",
"to",
"an",
"in",
"-",
"flight",
"local",
"transaction",
"or",
"an",
"inflight",
"enlisted",... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java#L141-L162 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java | TransactionToDispatchableMap.removeDispatchableForLocalTransaction | public Dispatchable removeDispatchableForLocalTransaction(int clientId) {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "removeDispatchableForLocalTransaction", "" + clientId);
AbstractFirstLevelMapEntry firstLevelEntry = null;
if (idToFirstLevelEntryMap.containsKey(clientId)) {
... | java | public Dispatchable removeDispatchableForLocalTransaction(int clientId) {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "removeDispatchableForLocalTransaction", "" + clientId);
AbstractFirstLevelMapEntry firstLevelEntry = null;
if (idToFirstLevelEntryMap.containsKey(clientId)) {
... | [
"public",
"Dispatchable",
"removeDispatchableForLocalTransaction",
"(",
"int",
"clientId",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"removeDispatchableForLocalTransaction\"",
",",
"\"\""... | Removes, from the table, the dispatchable corresponding to a local transaction.
@param clientId The client transaction id corresponding to the dispatchable to
remove
@return the removed dispatchable or null if no entry could be found for the
specified clientId parameter. | [
"Removes",
"from",
"the",
"table",
"the",
"dispatchable",
"corresponding",
"to",
"a",
"local",
"transaction",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java#L172-L201 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java | TransactionToDispatchableMap.removeAllDispatchablesForTransaction | public void removeAllDispatchablesForTransaction(int clientId) {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "removeAllDispatchablesForTransaction", clientId);
idToFirstLevelEntryMap.remove(clientId);
if (tc.isEntryEnabled())
SibTr.exit(this, tc, "removeAllDispatchab... | java | public void removeAllDispatchablesForTransaction(int clientId) {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "removeAllDispatchablesForTransaction", clientId);
idToFirstLevelEntryMap.remove(clientId);
if (tc.isEntryEnabled())
SibTr.exit(this, tc, "removeAllDispatchab... | [
"public",
"void",
"removeAllDispatchablesForTransaction",
"(",
"int",
"clientId",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"removeAllDispatchablesForTransaction\"",
",",
"clientId",
")... | In the event that the connection is going down, we need to ensure that the dispatchable
table is cleared of all references to transactions that were created by that connection.
@param clientId | [
"In",
"the",
"event",
"that",
"the",
"connection",
"is",
"going",
"down",
"we",
"need",
"to",
"ensure",
"that",
"the",
"dispatchable",
"table",
"is",
"cleared",
"of",
"all",
"references",
"to",
"transactions",
"that",
"were",
"created",
"by",
"that",
"connec... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java#L209-L217 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java | TransactionToDispatchableMap.addDispatchableForOptimizedLocalTransaction | public Dispatchable addDispatchableForOptimizedLocalTransaction(int transactionId) {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "addDispatchableForOptimizedLocalTransaction", "" + transactionId);
final Dispatchable result = addDispatchableForLocalTransaction(transactionId);
if (t... | java | public Dispatchable addDispatchableForOptimizedLocalTransaction(int transactionId) {
if (tc.isEntryEnabled())
SibTr.entry(this, tc, "addDispatchableForOptimizedLocalTransaction", "" + transactionId);
final Dispatchable result = addDispatchableForLocalTransaction(transactionId);
if (t... | [
"public",
"Dispatchable",
"addDispatchableForOptimizedLocalTransaction",
"(",
"int",
"transactionId",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"addDispatchableForOptimizedLocalTransaction\""... | Adds a new dispatchable to the map for an optimized local transaction.
@param transactionId
@return | [
"Adds",
"a",
"new",
"dispatchable",
"to",
"the",
"map",
"for",
"an",
"optimized",
"local",
"transaction",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java#L272-L279 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java | TransactionToDispatchableMap.getTotalDispatchables | public int getTotalDispatchables() {
int count = 0;
Iterator i = idToFirstLevelEntryMap.iterator();
while (i.hasNext())
++count;
return count;
} | java | public int getTotalDispatchables() {
int count = 0;
Iterator i = idToFirstLevelEntryMap.iterator();
while (i.hasNext())
++count;
return count;
} | [
"public",
"int",
"getTotalDispatchables",
"(",
")",
"{",
"int",
"count",
"=",
"0",
";",
"Iterator",
"i",
"=",
"idToFirstLevelEntryMap",
".",
"iterator",
"(",
")",
";",
"while",
"(",
"i",
".",
"hasNext",
"(",
")",
")",
"++",
"count",
";",
"return",
"cou... | For unit test use only!
@return the total number of dispatchables currently held within the table. | [
"For",
"unit",
"test",
"use",
"only!"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/TransactionToDispatchableMap.java#L435-L441 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java | RepositoryResourceImpl.createNewResource | @SuppressWarnings("unchecked")
protected <T extends RepositoryResourceImpl> T createNewResource() {
T result;
if (null == getType()) {
result = (T) createTestResource(getRepositoryConnection());
} else {
result = ResourceFactory.getInstance().createResource(getType()... | java | @SuppressWarnings("unchecked")
protected <T extends RepositoryResourceImpl> T createNewResource() {
T result;
if (null == getType()) {
result = (T) createTestResource(getRepositoryConnection());
} else {
result = ResourceFactory.getInstance().createResource(getType()... | [
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"protected",
"<",
"T",
"extends",
"RepositoryResourceImpl",
">",
"T",
"createNewResource",
"(",
")",
"{",
"T",
"result",
";",
"if",
"(",
"null",
"==",
"getType",
"(",
")",
")",
"{",
"result",
"=",
"(",
... | Creates a new resource using the same logon infomation as this resource
@param <T>
@return | [
"Creates",
"a",
"new",
"resource",
"using",
"the",
"same",
"logon",
"infomation",
"as",
"this",
"resource"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java#L207-L217 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java | RepositoryResourceImpl.matches | public MatchResult matches(ProductDefinition def) {
Collection<AppliesToFilterInfo> atfiList = _asset.getWlpInformation().getAppliesToFilterInfo();
if (atfiList == null || atfiList.isEmpty()) {
return MatchResult.NOT_APPLICABLE;
}
MatchResult matchResult = MatchResult.MATCHED... | java | public MatchResult matches(ProductDefinition def) {
Collection<AppliesToFilterInfo> atfiList = _asset.getWlpInformation().getAppliesToFilterInfo();
if (atfiList == null || atfiList.isEmpty()) {
return MatchResult.NOT_APPLICABLE;
}
MatchResult matchResult = MatchResult.MATCHED... | [
"public",
"MatchResult",
"matches",
"(",
"ProductDefinition",
"def",
")",
"{",
"Collection",
"<",
"AppliesToFilterInfo",
">",
"atfiList",
"=",
"_asset",
".",
"getWlpInformation",
"(",
")",
".",
"getAppliesToFilterInfo",
"(",
")",
";",
"if",
"(",
"atfiList",
"=="... | Check if this resources matches the supplied product definition
@param def The product definition to check against
@return A {@link MatchResult} that says whether the resource matches the product definition, and if
not the reason why the match failed. | [
"Check",
"if",
"this",
"resources",
"matches",
"the",
"supplied",
"product",
"definition"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java#L245-L280 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java | RepositoryResourceImpl.readAttachmentsFromAsset | private synchronized void readAttachmentsFromAsset(Asset ass) {
Collection<Attachment> attachments = ass.getAttachments();
_attachments = new HashMap<String, AttachmentResourceImpl>();
if (attachments != null) {
for (Attachment at : attachments) {
_attachments.put(at... | java | private synchronized void readAttachmentsFromAsset(Asset ass) {
Collection<Attachment> attachments = ass.getAttachments();
_attachments = new HashMap<String, AttachmentResourceImpl>();
if (attachments != null) {
for (Attachment at : attachments) {
_attachments.put(at... | [
"private",
"synchronized",
"void",
"readAttachmentsFromAsset",
"(",
"Asset",
"ass",
")",
"{",
"Collection",
"<",
"Attachment",
">",
"attachments",
"=",
"ass",
".",
"getAttachments",
"(",
")",
";",
"_attachments",
"=",
"new",
"HashMap",
"<",
"String",
",",
"Att... | Read the attachments from the supplied asset and create an AttachmentResource to represent them
and then store them in our AttachmentResource list
@param ass
@throws RepositoryBackenAttachment | [
"Read",
"the",
"attachments",
"from",
"the",
"supplied",
"asset",
"and",
"create",
"an",
"AttachmentResource",
"to",
"represent",
"them",
"and",
"then",
"store",
"them",
"in",
"our",
"AttachmentResource",
"list"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java#L298-L312 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java | RepositoryResourceImpl.updateRequired | public UpdateType updateRequired(RepositoryResourceImpl matching) {
if (null == matching) {
// No matching asset found
return UpdateType.ADD;
}
if (equivalentWithoutAttachments(matching)) {
return UpdateType.NOTHING;
} else {
// As we are... | java | public UpdateType updateRequired(RepositoryResourceImpl matching) {
if (null == matching) {
// No matching asset found
return UpdateType.ADD;
}
if (equivalentWithoutAttachments(matching)) {
return UpdateType.NOTHING;
} else {
// As we are... | [
"public",
"UpdateType",
"updateRequired",
"(",
"RepositoryResourceImpl",
"matching",
")",
"{",
"if",
"(",
"null",
"==",
"matching",
")",
"{",
"// No matching asset found",
"return",
"UpdateType",
".",
"ADD",
";",
"}",
"if",
"(",
"equivalentWithoutAttachments",
"(",
... | Decide whether an attachment needs updating.
@return boolean - whether the attachment needs updating | [
"Decide",
"whether",
"an",
"attachment",
"needs",
"updating",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java#L924-L939 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java | RepositoryResourceImpl.createMatchingData | public RepositoryResourceMatchingData createMatchingData() {
RepositoryResourceMatchingData matchingData = new RepositoryResourceMatchingData();
matchingData.setName(getName());
matchingData.setProviderName(getProviderName());
matchingData.setType(getType());
return matchingData;... | java | public RepositoryResourceMatchingData createMatchingData() {
RepositoryResourceMatchingData matchingData = new RepositoryResourceMatchingData();
matchingData.setName(getName());
matchingData.setProviderName(getProviderName());
matchingData.setType(getType());
return matchingData;... | [
"public",
"RepositoryResourceMatchingData",
"createMatchingData",
"(",
")",
"{",
"RepositoryResourceMatchingData",
"matchingData",
"=",
"new",
"RepositoryResourceMatchingData",
"(",
")",
";",
"matchingData",
".",
"setName",
"(",
"getName",
"(",
")",
")",
";",
"matchingD... | Creates an object which can be used to compare with another resource's to determine if
they represent the same asset.
@return | [
"Creates",
"an",
"object",
"which",
"can",
"be",
"used",
"to",
"compare",
"with",
"another",
"resource",
"s",
"to",
"determine",
"if",
"they",
"represent",
"the",
"same",
"asset",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java#L947-L953 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java | RepositoryResourceImpl.findMatchingResource | public List<RepositoryResourceImpl> findMatchingResource() throws RepositoryResourceValidationException, RepositoryBackendException, RepositoryBadDataException, RepositoryResourceNoConnectionException {
List<RepositoryResourceImpl> matchingRes;
try {
matchingRes = performMatching();
... | java | public List<RepositoryResourceImpl> findMatchingResource() throws RepositoryResourceValidationException, RepositoryBackendException, RepositoryBadDataException, RepositoryResourceNoConnectionException {
List<RepositoryResourceImpl> matchingRes;
try {
matchingRes = performMatching();
... | [
"public",
"List",
"<",
"RepositoryResourceImpl",
">",
"findMatchingResource",
"(",
")",
"throws",
"RepositoryResourceValidationException",
",",
"RepositoryBackendException",
",",
"RepositoryBadDataException",
",",
"RepositoryResourceNoConnectionException",
"{",
"List",
"<",
"Re... | This method tries to find out if there is a match for "this" resource already in massive.
@return A list of resources that were found in massive which has the same name, provider and type as this
resource, an empty list otherwise.
@throws RepositoryResourceValidationException If the resource fails a validation check
@... | [
"This",
"method",
"tries",
"to",
"find",
"out",
"if",
"there",
"is",
"a",
"match",
"for",
"this",
"resource",
"already",
"in",
"massive",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java#L1028-L1045 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java | RepositoryResourceImpl.copyFieldsFrom | protected void copyFieldsFrom(RepositoryResourceImpl fromResource, boolean includeAttachmentInfo) {
setName(fromResource.getName()); // part of the identification so locked
setDescription(fromResource.getDescription());
setShortDescription(fromResource.getShortDescription());
setProvider... | java | protected void copyFieldsFrom(RepositoryResourceImpl fromResource, boolean includeAttachmentInfo) {
setName(fromResource.getName()); // part of the identification so locked
setDescription(fromResource.getDescription());
setShortDescription(fromResource.getShortDescription());
setProvider... | [
"protected",
"void",
"copyFieldsFrom",
"(",
"RepositoryResourceImpl",
"fromResource",
",",
"boolean",
"includeAttachmentInfo",
")",
"{",
"setName",
"(",
"fromResource",
".",
"getName",
"(",
")",
")",
";",
"// part of the identification so locked",
"setDescription",
"(",
... | Resources should override this method to copy fields that should be used as part of an
update
@param fromResource | [
"Resources",
"should",
"override",
"this",
"method",
"to",
"copy",
"fields",
"that",
"should",
"be",
"used",
"as",
"part",
"of",
"an",
"update"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java#L1053-L1075 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java | RepositoryResourceImpl.overWriteAssetData | public void overWriteAssetData(RepositoryResourceImpl fromResource, boolean includeAttachmentInfo) throws RepositoryResourceValidationException {
// Make sure we are dealing with the same type....this
// should never happen
if (!fromResource.getClass().getName().equals(getClass().getName())) {
... | java | public void overWriteAssetData(RepositoryResourceImpl fromResource, boolean includeAttachmentInfo) throws RepositoryResourceValidationException {
// Make sure we are dealing with the same type....this
// should never happen
if (!fromResource.getClass().getName().equals(getClass().getName())) {
... | [
"public",
"void",
"overWriteAssetData",
"(",
"RepositoryResourceImpl",
"fromResource",
",",
"boolean",
"includeAttachmentInfo",
")",
"throws",
"RepositoryResourceValidationException",
"{",
"// Make sure we are dealing with the same type....this",
"// should never happen",
"if",
"(",
... | This method copies the fields from "this" that we care about to the "fromResource". Then we
set our asset to point to the one in "fromResource". In effect this means we get all the details
from the "fromResource" and override fields we care about and store the merged result in our asset.
This is used when we have read... | [
"This",
"method",
"copies",
"the",
"fields",
"from",
"this",
"that",
"we",
"care",
"about",
"to",
"the",
"fromResource",
".",
"Then",
"we",
"set",
"our",
"asset",
"to",
"point",
"to",
"the",
"one",
"in",
"fromResource",
".",
"In",
"effect",
"this",
"mean... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java#L1092-L1105 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java | RepositoryResourceImpl.moveToState | public void moveToState(State state) throws RepositoryBackendException, RepositoryResourceException {
if (getState() == null) {
return;
}
int counter = 0;
while (getState() != state) {
counter++;
StateAction nextAction = getState().getNextAction(state)... | java | public void moveToState(State state) throws RepositoryBackendException, RepositoryResourceException {
if (getState() == null) {
return;
}
int counter = 0;
while (getState() != state) {
counter++;
StateAction nextAction = getState().getNextAction(state)... | [
"public",
"void",
"moveToState",
"(",
"State",
"state",
")",
"throws",
"RepositoryBackendException",
",",
"RepositoryResourceException",
"{",
"if",
"(",
"getState",
"(",
")",
"==",
"null",
")",
"{",
"return",
";",
"}",
"int",
"counter",
"=",
"0",
";",
"while... | Moves the resource to the desired state
@param resource
@param state
@throws RepositoryBackendException
@throws RepositoryResourceException | [
"Moves",
"the",
"resource",
"to",
"the",
"desired",
"state"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java#L1318-L1332 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java | RepositoryResourceImpl.equivalent | public boolean equivalent(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
RepositoryResourceImpl other = (RepositoryResourceImpl) obj;
if (_asset == null) {
... | java | public boolean equivalent(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
RepositoryResourceImpl other = (RepositoryResourceImpl) obj;
if (_asset == null) {
... | [
"public",
"boolean",
"equivalent",
"(",
"Object",
"obj",
")",
"{",
"if",
"(",
"this",
"==",
"obj",
")",
"return",
"true",
";",
"if",
"(",
"obj",
"==",
"null",
")",
"return",
"false",
";",
"if",
"(",
"getClass",
"(",
")",
"!=",
"obj",
".",
"getClass... | Checks if the two resources are equivalent by checking if the assets
are equivalent.
@param obj
@return | [
"Checks",
"if",
"the",
"two",
"resources",
"are",
"equivalent",
"by",
"checking",
"if",
"the",
"assets",
"are",
"equivalent",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java#L1474-L1488 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java | RepositoryResourceImpl.getCRC | private static long getCRC(InputStream is) throws IOException {
CheckedInputStream check = new CheckedInputStream(is, new CRC32());
BufferedInputStream in = new BufferedInputStream(check);
while (in.read() != -1) {
// Read file in completely
}
long crc = check.getChec... | java | private static long getCRC(InputStream is) throws IOException {
CheckedInputStream check = new CheckedInputStream(is, new CRC32());
BufferedInputStream in = new BufferedInputStream(check);
while (in.read() != -1) {
// Read file in completely
}
long crc = check.getChec... | [
"private",
"static",
"long",
"getCRC",
"(",
"InputStream",
"is",
")",
"throws",
"IOException",
"{",
"CheckedInputStream",
"check",
"=",
"new",
"CheckedInputStream",
"(",
"is",
",",
"new",
"CRC32",
"(",
")",
")",
";",
"BufferedInputStream",
"in",
"=",
"new",
... | Get the CRC of a file from an InputStream
@param is The input stream to obtain the CRC from
@return a long representing the CRC value of the data read from the supplied input stream
@throws IOException | [
"Get",
"the",
"CRC",
"of",
"a",
"file",
"from",
"an",
"InputStream"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository/src/com/ibm/ws/repository/resources/internal/RepositoryResourceImpl.java#L1548-L1556 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.anno/src/com/ibm/ws/anno/util/internal/UtilImpl_BidirectionalMap.java | UtilImpl_BidirectionalMap.record | public boolean record(String holderName, String heldName) {
return i_record(internHolder(holderName, Util_InternMap.DO_FORCE),
internHeld(heldName, Util_InternMap.DO_FORCE));
} | java | public boolean record(String holderName, String heldName) {
return i_record(internHolder(holderName, Util_InternMap.DO_FORCE),
internHeld(heldName, Util_InternMap.DO_FORCE));
} | [
"public",
"boolean",
"record",
"(",
"String",
"holderName",
",",
"String",
"heldName",
")",
"{",
"return",
"i_record",
"(",
"internHolder",
"(",
"holderName",
",",
"Util_InternMap",
".",
"DO_FORCE",
")",
",",
"internHeld",
"(",
"heldName",
",",
"Util_InternMap",... | Or rely on the caller to know to make no store calls? | [
"Or",
"rely",
"on",
"the",
"caller",
"to",
"know",
"to",
"make",
"no",
"store",
"calls?"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.anno/src/com/ibm/ws/anno/util/internal/UtilImpl_BidirectionalMap.java#L257-L260 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging/src/com/ibm/ws/logging/utils/FileLogHolder.java | FileLogHolder.getTc | private static TraceComponent getTc() {
if (tc == null) {
tc = Tr.register(FileLogHolder.class, null, "com.ibm.ws.logging.internal.resources.LoggingMessages");
}
return tc;
} | java | private static TraceComponent getTc() {
if (tc == null) {
tc = Tr.register(FileLogHolder.class, null, "com.ibm.ws.logging.internal.resources.LoggingMessages");
}
return tc;
} | [
"private",
"static",
"TraceComponent",
"getTc",
"(",
")",
"{",
"if",
"(",
"tc",
"==",
"null",
")",
"{",
"tc",
"=",
"Tr",
".",
"register",
"(",
"FileLogHolder",
".",
"class",
",",
"null",
",",
"\"com.ibm.ws.logging.internal.resources.LoggingMessages\"",
")",
";... | This method will get an instance of TraceComponent
@return | [
"This",
"method",
"will",
"get",
"an",
"instance",
"of",
"TraceComponent"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging/src/com/ibm/ws/logging/utils/FileLogHolder.java#L107-L112 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging/src/com/ibm/ws/logging/utils/FileLogHolder.java | FileLogHolder.getPrimaryStream | private PrintStream getPrimaryStream(boolean showError) {
File primaryFile = getPrimaryFile();
setStreamFromFile(primaryFile, false, primaryFile.length(), showError);
return currentPrintStream;
} | java | private PrintStream getPrimaryStream(boolean showError) {
File primaryFile = getPrimaryFile();
setStreamFromFile(primaryFile, false, primaryFile.length(), showError);
return currentPrintStream;
} | [
"private",
"PrintStream",
"getPrimaryStream",
"(",
"boolean",
"showError",
")",
"{",
"File",
"primaryFile",
"=",
"getPrimaryFile",
"(",
")",
";",
"setStreamFromFile",
"(",
"primaryFile",
",",
"false",
",",
"primaryFile",
".",
"length",
"(",
")",
",",
"showError"... | This assume that the primary file exists.
@param showError
@return | [
"This",
"assume",
"that",
"the",
"primary",
"file",
"exists",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging/src/com/ibm/ws/logging/utils/FileLogHolder.java#L468-L472 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.config/src/com/ibm/ws/config/admin/internal/ManagedServiceFactoryTracker.java | ManagedServiceFactoryTracker.addingService | @Override
public ManagedServiceFactory addingService(ServiceReference<ManagedServiceFactory> reference) {
String[] factoryPids = getServicePid(reference);
if (factoryPids == null) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "handleReg... | java | @Override
public ManagedServiceFactory addingService(ServiceReference<ManagedServiceFactory> reference) {
String[] factoryPids = getServicePid(reference);
if (factoryPids == null) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "handleReg... | [
"@",
"Override",
"public",
"ManagedServiceFactory",
"addingService",
"(",
"ServiceReference",
"<",
"ManagedServiceFactory",
">",
"reference",
")",
"{",
"String",
"[",
"]",
"factoryPids",
"=",
"getServicePid",
"(",
"reference",
")",
";",
"if",
"(",
"factoryPids",
"... | Processes registered ManagedServiceFactory and updates each with their own
configuration properties.
@param reference
- ServiceReference for MangedServiceFactory | [
"Processes",
"registered",
"ManagedServiceFactory",
"and",
"updates",
"each",
"with",
"their",
"own",
"configuration",
"properties",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.config/src/com/ibm/ws/config/admin/internal/ManagedServiceFactoryTracker.java#L66-L89 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.config/src/com/ibm/ws/config/admin/internal/ManagedServiceFactoryTracker.java | ManagedServiceFactoryTracker.removedService | @Override
public void removedService(ServiceReference<ManagedServiceFactory> reference, ManagedServiceFactory service) {
String[] factoryPids = getServicePid(reference);
if (factoryPids == null) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debu... | java | @Override
public void removedService(ServiceReference<ManagedServiceFactory> reference, ManagedServiceFactory service) {
String[] factoryPids = getServicePid(reference);
if (factoryPids == null) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debu... | [
"@",
"Override",
"public",
"void",
"removedService",
"(",
"ServiceReference",
"<",
"ManagedServiceFactory",
">",
"reference",
",",
"ManagedServiceFactory",
"service",
")",
"{",
"String",
"[",
"]",
"factoryPids",
"=",
"getServicePid",
"(",
"reference",
")",
";",
"i... | MangedServiceFactory service removed. Process removal and unget service
from its context.
@param reference
@param service | [
"MangedServiceFactory",
"service",
"removed",
".",
"Process",
"removal",
"and",
"unget",
"service",
"from",
"its",
"context",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.config/src/com/ibm/ws/config/admin/internal/ManagedServiceFactoryTracker.java#L131-L149 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jpa.container/src/com/ibm/ws/jpa/container/osgi/internal/OSGiJPAPUnitInfo.java | OSGiJPAPUnitInfo.getContainerRootParent | private Container getContainerRootParent(Container base) {
Container puBase = base.getEnclosingContainer();
while (puBase != null && !puBase.isRoot()) {
puBase = puBase.getEnclosingContainer();
}
if (puBase != null && puBase.isRoot()) {
Container parent = puBase.g... | java | private Container getContainerRootParent(Container base) {
Container puBase = base.getEnclosingContainer();
while (puBase != null && !puBase.isRoot()) {
puBase = puBase.getEnclosingContainer();
}
if (puBase != null && puBase.isRoot()) {
Container parent = puBase.g... | [
"private",
"Container",
"getContainerRootParent",
"(",
"Container",
"base",
")",
"{",
"Container",
"puBase",
"=",
"base",
".",
"getEnclosingContainer",
"(",
")",
";",
"while",
"(",
"puBase",
"!=",
"null",
"&&",
"!",
"puBase",
".",
"isRoot",
"(",
")",
")",
... | Navigates to the root of the base container and returns the parent
container
@param base
@return | [
"Navigates",
"to",
"the",
"root",
"of",
"the",
"base",
"container",
"and",
"returns",
"the",
"parent",
"container"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jpa.container/src/com/ibm/ws/jpa/container/osgi/internal/OSGiJPAPUnitInfo.java#L225-L237 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/renderkit/html/HtmlTextRendererBase.java | HtmlTextRendererBase.isAutocompleteOff | protected boolean isAutocompleteOff(FacesContext facesContext, UIComponent component)
{
if (component instanceof HtmlInputText)
{
String autocomplete = ((HtmlInputText)component).getAutocomplete();
if (autocomplete != null)
{
return autocomplete.eq... | java | protected boolean isAutocompleteOff(FacesContext facesContext, UIComponent component)
{
if (component instanceof HtmlInputText)
{
String autocomplete = ((HtmlInputText)component).getAutocomplete();
if (autocomplete != null)
{
return autocomplete.eq... | [
"protected",
"boolean",
"isAutocompleteOff",
"(",
"FacesContext",
"facesContext",
",",
"UIComponent",
"component",
")",
"{",
"if",
"(",
"component",
"instanceof",
"HtmlInputText",
")",
"{",
"String",
"autocomplete",
"=",
"(",
"(",
"HtmlInputText",
")",
"component",
... | If autocomplete is "on" or not set, do not render it | [
"If",
"autocomplete",
"is",
"on",
"or",
"not",
"set",
"do",
"not",
"render",
"it"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/shared/renderkit/html/HtmlTextRendererBase.java#L313-L325 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsLocalizer.java | JsLocalizer.updateLpMaps | private MasterEntry updateLpMaps(LWMConfig lp) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, "updateLpMaps", lp);
}
SIBLocalizationPoint lpConfig = ((SIBLocalizationPoint) lp);
// Create a new LocalizationDefinition and update the lpMap... | java | private MasterEntry updateLpMaps(LWMConfig lp) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, "updateLpMaps", lp);
}
SIBLocalizationPoint lpConfig = ((SIBLocalizationPoint) lp);
// Create a new LocalizationDefinition and update the lpMap... | [
"private",
"MasterEntry",
"updateLpMaps",
"(",
"LWMConfig",
"lp",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"\"updateLpMaps\"",
... | Update the given SIBLocalizationPoint in the internal data structures lpMap
lpMap contains all types of SIBLocalizationPoints.
@param lp
Localization point to add.
@return masterEntry the masterMap entry | [
"Update",
"the",
"given",
"SIBLocalizationPoint",
"in",
"the",
"internal",
"data",
"structures",
"lpMap"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsLocalizer.java#L257-L284 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsLocalizer.java | JsLocalizer.addLocalizationPoint | public boolean addLocalizationPoint(LWMConfig lp, DestinationDefinition dd) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, "addLocalizationPoint", lp);
}
boolean valid = false;
LocalizationDefinition ld = ((JsAdminFactoryImpl) jsaf).cre... | java | public boolean addLocalizationPoint(LWMConfig lp, DestinationDefinition dd) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, "addLocalizationPoint", lp);
}
boolean valid = false;
LocalizationDefinition ld = ((JsAdminFactoryImpl) jsaf).cre... | [
"public",
"boolean",
"addLocalizationPoint",
"(",
"LWMConfig",
"lp",
",",
"DestinationDefinition",
"dd",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"SibTr",
".",
"entry",
... | Add a single localization point to this JsLocalizer object and tell MP
about it. This method is used by dynamic config in tWAS.
@param lp
@param dd
@return boolean success Whether the LP was successfully added | [
"Add",
"a",
"single",
"localization",
"point",
"to",
"this",
"JsLocalizer",
"object",
"and",
"tell",
"MP",
"about",
"it",
".",
"This",
"method",
"is",
"used",
"by",
"dynamic",
"config",
"in",
"tWAS",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsLocalizer.java#L294-L324 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsLocalizer.java | JsLocalizer.isNewDestination | private boolean isNewDestination(String key) {
Object dd = null;
try {
dd = _me.getSIBDestinationByUuid(_me.getBusName(), key, false);
} catch (Exception e) {
// No FFDC code needed
}
return (dd == null);
} | java | private boolean isNewDestination(String key) {
Object dd = null;
try {
dd = _me.getSIBDestinationByUuid(_me.getBusName(), key, false);
} catch (Exception e) {
// No FFDC code needed
}
return (dd == null);
} | [
"private",
"boolean",
"isNewDestination",
"(",
"String",
"key",
")",
"{",
"Object",
"dd",
"=",
"null",
";",
"try",
"{",
"dd",
"=",
"_me",
".",
"getSIBDestinationByUuid",
"(",
"_me",
".",
"getBusName",
"(",
")",
",",
"key",
",",
"false",
")",
";",
"}",
... | Check the old destination cache, if the destination is not found then it
has just been created. This method assumes that the destination is in the
new cache - this is not checked.
@param key
@return true if getSIBDestinationByUuid fails to return anything | [
"Check",
"the",
"old",
"destination",
"cache",
"if",
"the",
"destination",
"is",
"not",
"found",
"then",
"it",
"has",
"just",
"been",
"created",
".",
"This",
"method",
"assumes",
"that",
"the",
"destination",
"is",
"in",
"the",
"new",
"cache",
"-",
"this",... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsLocalizer.java#L334-L345 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsLocalizer.java | JsLocalizer.alterLocalizationPoint | public void alterLocalizationPoint(BaseDestination destination,LWMConfig lp) throws Exception {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, "alterLocalizationPoint", lp);
}
boolean valid = true;
DestinationDefinition dd = null;
... | java | public void alterLocalizationPoint(BaseDestination destination,LWMConfig lp) throws Exception {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, "alterLocalizationPoint", lp);
}
boolean valid = true;
DestinationDefinition dd = null;
... | [
"public",
"void",
"alterLocalizationPoint",
"(",
"BaseDestination",
"destination",
",",
"LWMConfig",
"lp",
")",
"throws",
"Exception",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
... | Modify the given localization point and tell MP. The parameter is a new
SIBLocalizationPoint which will replace the existing object inside of this.
This method is used by dynamic config.
@param lp
New localizationPoint | [
"Modify",
"the",
"given",
"localization",
"point",
"and",
"tell",
"MP",
".",
"The",
"parameter",
"is",
"a",
"new",
"SIBLocalizationPoint",
"which",
"will",
"replace",
"the",
"existing",
"object",
"inside",
"of",
"this",
".",
"This",
"method",
"is",
"used",
"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsLocalizer.java#L355-L418 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsLocalizer.java | JsLocalizer.getMasterMapKey | private String getMasterMapKey(LWMConfig lp) {
String key = null;
String lpIdentifier = ((SIBLocalizationPoint) lp).getIdentifier();
key = lpIdentifier.substring(0, lpIdentifier.indexOf("@"));
return key;
} | java | private String getMasterMapKey(LWMConfig lp) {
String key = null;
String lpIdentifier = ((SIBLocalizationPoint) lp).getIdentifier();
key = lpIdentifier.substring(0, lpIdentifier.indexOf("@"));
return key;
} | [
"private",
"String",
"getMasterMapKey",
"(",
"LWMConfig",
"lp",
")",
"{",
"String",
"key",
"=",
"null",
";",
"String",
"lpIdentifier",
"=",
"(",
"(",
"SIBLocalizationPoint",
")",
"lp",
")",
".",
"getIdentifier",
"(",
")",
";",
"key",
"=",
"lpIdentifier",
"... | Returns the name of the destination associated with the supplied
localization point.
@param lp a localization point proxy.
@return the identifier of the destination associated with the supplied
localization point proxy. | [
"Returns",
"the",
"name",
"of",
"the",
"destination",
"associated",
"with",
"the",
"supplied",
"localization",
"point",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsLocalizer.java#L498-L504 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsLocalizer.java | JsLocalizer.deleteDestLocalizations | private void deleteDestLocalizations(JsBus bus) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, "deleteDestLocalizations", this);
}
Iterator i = alterDestinations.iterator();
while (i.hasNext()) {
String key = (String) i.ne... | java | private void deleteDestLocalizations(JsBus bus) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, "deleteDestLocalizations", this);
}
Iterator i = alterDestinations.iterator();
while (i.hasNext()) {
String key = (String) i.ne... | [
"private",
"void",
"deleteDestLocalizations",
"(",
"JsBus",
"bus",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"\"deleteDestLocaliz... | Tell MP about all deleted LPs that previously existed on locations which
have also been deleted. | [
"Tell",
"MP",
"about",
"all",
"deleted",
"LPs",
"that",
"previously",
"existed",
"on",
"locations",
"which",
"have",
"also",
"been",
"deleted",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsLocalizer.java#L642-L677 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging/src/com/ibm/ws/logging/internal/impl/LoggingConfigUtils.java | LoggingConfigUtils.getLogDirectory | static File getLogDirectory(Object newValue, File defaultDirectory) {
File newDirectory = defaultDirectory;
// If a value was specified, try creating a file with it
if (newValue != null && newValue instanceof String) {
newDirectory = new File((String) newValue);
}
... | java | static File getLogDirectory(Object newValue, File defaultDirectory) {
File newDirectory = defaultDirectory;
// If a value was specified, try creating a file with it
if (newValue != null && newValue instanceof String) {
newDirectory = new File((String) newValue);
}
... | [
"static",
"File",
"getLogDirectory",
"(",
"Object",
"newValue",
",",
"File",
"defaultDirectory",
")",
"{",
"File",
"newDirectory",
"=",
"defaultDirectory",
";",
"// If a value was specified, try creating a file with it",
"if",
"(",
"newValue",
"!=",
"null",
"&&",
"newVa... | Find, create, and validate the log directory.
@param newValue
New parameter value to parse/evaluate
@param defaultValue
Starting/Previous log directory-- this value might *also* be null.
@return defaultValue if the newValue is null or is was badly
formatted, or the converted new value | [
"Find",
"create",
"and",
"validate",
"the",
"log",
"directory",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging/src/com/ibm/ws/logging/internal/impl/LoggingConfigUtils.java#L40-L65 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging/src/com/ibm/ws/logging/internal/impl/LoggingConfigUtils.java | LoggingConfigUtils.getStringValue | public static String getStringValue(Object newValue, String defaultValue) {
if (newValue == null)
return defaultValue;
return (String) newValue;
} | java | public static String getStringValue(Object newValue, String defaultValue) {
if (newValue == null)
return defaultValue;
return (String) newValue;
} | [
"public",
"static",
"String",
"getStringValue",
"(",
"Object",
"newValue",
",",
"String",
"defaultValue",
")",
"{",
"if",
"(",
"newValue",
"==",
"null",
")",
"return",
"defaultValue",
";",
"return",
"(",
"String",
")",
"newValue",
";",
"}"
] | If the value is null, return the defaultValue.
Otherwise return the new value. | [
"If",
"the",
"value",
"is",
"null",
"return",
"the",
"defaultValue",
".",
"Otherwise",
"return",
"the",
"new",
"value",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging/src/com/ibm/ws/logging/internal/impl/LoggingConfigUtils.java#L120-L125 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging/src/com/ibm/ws/logging/internal/impl/LoggingConfigUtils.java | LoggingConfigUtils.getFormatValue | public static TraceFormat getFormatValue(Object newValue, TraceFormat defaultValue) {
if (newValue != null && newValue instanceof String) {
String strValue = ((String) newValue).toUpperCase();
try {
return TraceFormat.valueOf(strValue);
} catch (Exception e) {... | java | public static TraceFormat getFormatValue(Object newValue, TraceFormat defaultValue) {
if (newValue != null && newValue instanceof String) {
String strValue = ((String) newValue).toUpperCase();
try {
return TraceFormat.valueOf(strValue);
} catch (Exception e) {... | [
"public",
"static",
"TraceFormat",
"getFormatValue",
"(",
"Object",
"newValue",
",",
"TraceFormat",
"defaultValue",
")",
"{",
"if",
"(",
"newValue",
"!=",
"null",
"&&",
"newValue",
"instanceof",
"String",
")",
"{",
"String",
"strValue",
"=",
"(",
"(",
"String"... | Convert the property value to a TraceFormat type
@param s
String value
@return TraceFormat, BASIC is the default. | [
"Convert",
"the",
"property",
"value",
"to",
"a",
"TraceFormat",
"type"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging/src/com/ibm/ws/logging/internal/impl/LoggingConfigUtils.java#L163-L173 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging/src/com/ibm/ws/logging/internal/impl/LoggingConfigUtils.java | LoggingConfigUtils.getStringFromCollection | public static String getStringFromCollection(Collection<String> values) {
StringBuilder builder = new StringBuilder();
if (values != null) {
for (String value : values) {
builder.append(value).append(',');
}
if (builder.charAt(builder.length() - 1) == ... | java | public static String getStringFromCollection(Collection<String> values) {
StringBuilder builder = new StringBuilder();
if (values != null) {
for (String value : values) {
builder.append(value).append(',');
}
if (builder.charAt(builder.length() - 1) == ... | [
"public",
"static",
"String",
"getStringFromCollection",
"(",
"Collection",
"<",
"String",
">",
"values",
")",
"{",
"StringBuilder",
"builder",
"=",
"new",
"StringBuilder",
"(",
")",
";",
"if",
"(",
"values",
"!=",
"null",
")",
"{",
"for",
"(",
"String",
"... | Convert a collection of String values back into a comma separated list
@param values The collection of strings | [
"Convert",
"a",
"collection",
"of",
"String",
"values",
"back",
"into",
"a",
"comma",
"separated",
"list"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging/src/com/ibm/ws/logging/internal/impl/LoggingConfigUtils.java#L256-L266 | train |
OpenLiberty/open-liberty | dev/com.ibm.json4j/src/com/ibm/json/java/internal/Tokenizer.java | Tokenizer.readNumber | private Number readNumber() throws IOException {
StringBuffer sb = new StringBuffer();
int l = lineNo;
int c = colNo;
while (isDigitChar(lastChar))
{
sb.append((char)lastChar);
readChar();
}
// convert it!
... | java | private Number readNumber() throws IOException {
StringBuffer sb = new StringBuffer();
int l = lineNo;
int c = colNo;
while (isDigitChar(lastChar))
{
sb.append((char)lastChar);
readChar();
}
// convert it!
... | [
"private",
"Number",
"readNumber",
"(",
")",
"throws",
"IOException",
"{",
"StringBuffer",
"sb",
"=",
"new",
"StringBuffer",
"(",
")",
";",
"int",
"l",
"=",
"lineNo",
";",
"int",
"c",
"=",
"colNo",
";",
"while",
"(",
"isDigitChar",
"(",
"lastChar",
")",
... | Method to read a number from the JSON string.
(-)(1-9)(0-9)* : decimal
(-)0(0-7)* : octal
(-)0(x|X)(0-9|a-f|A-F)* : hex
[digits][.digits][(E|e)[(+|-)]digits]
@returns The number as the wrapper Java Number type.
@throws IOException Thrown in invalid numbers or unexpected end of JSON string | [
"Method",
"to",
"read",
"a",
"number",
"from",
"the",
"JSON",
"string",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.json4j/src/com/ibm/json/java/internal/Tokenizer.java#L253-L314 | train |
OpenLiberty/open-liberty | dev/com.ibm.json4j/src/com/ibm/json/java/internal/Tokenizer.java | Tokenizer.readIdentifier | private String readIdentifier() throws IOException {
StringBuffer sb = new StringBuffer();
while ((-1 != lastChar) && Character.isLetter((char)lastChar))
{
sb.append((char)lastChar);
readChar();
}
return sb.toString();
} | java | private String readIdentifier() throws IOException {
StringBuffer sb = new StringBuffer();
while ((-1 != lastChar) && Character.isLetter((char)lastChar))
{
sb.append((char)lastChar);
readChar();
}
return sb.toString();
} | [
"private",
"String",
"readIdentifier",
"(",
")",
"throws",
"IOException",
"{",
"StringBuffer",
"sb",
"=",
"new",
"StringBuffer",
"(",
")",
";",
"while",
"(",
"(",
"-",
"1",
"!=",
"lastChar",
")",
"&&",
"Character",
".",
"isLetter",
"(",
"(",
"char",
")",... | Method to read a partular character string.
only really need to handle 'null', 'true', and 'false' | [
"Method",
"to",
"read",
"a",
"partular",
"character",
"string",
".",
"only",
"really",
"need",
"to",
"handle",
"null",
"true",
"and",
"false"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.json4j/src/com/ibm/json/java/internal/Tokenizer.java#L409-L419 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java | MessagingSecurityUtility.createAuthenticationData | public static AuthenticationData createAuthenticationData(String userName, UserRegistry userRegistry) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "createAuthenticationData", userName);
}
AuthenticationData authData = new WSAuthent... | java | public static AuthenticationData createAuthenticationData(String userName, UserRegistry userRegistry) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "createAuthenticationData", userName);
}
AuthenticationData authData = new WSAuthent... | [
"public",
"static",
"AuthenticationData",
"createAuthenticationData",
"(",
"String",
"userName",
",",
"UserRegistry",
"userRegistry",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{"... | Create the AuthenticationData from the UserName
@param userName
@return | [
"Create",
"the",
"AuthenticationData",
"from",
"the",
"UserName"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java#L64-L79 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java | MessagingSecurityUtility.createAuthenticationData | public static AuthenticationData createAuthenticationData(byte[] token) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "createAuthenticationData", token);
}
AuthenticationData authData = new WSAuthenticationData();
authData.s... | java | public static AuthenticationData createAuthenticationData(byte[] token) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "createAuthenticationData", token);
}
AuthenticationData authData = new WSAuthenticationData();
authData.s... | [
"public",
"static",
"AuthenticationData",
"createAuthenticationData",
"(",
"byte",
"[",
"]",
"token",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"SibTr",
".",
"entry",
"... | Create AuthenticationData object from the Token passed
@param token
@return | [
"Create",
"AuthenticationData",
"object",
"from",
"the",
"Token",
"passed"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java#L87-L97 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java | MessagingSecurityUtility.createAuthenticationData | public static AuthenticationData createAuthenticationData(String userName, String password) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "createAuthenticationData", new Object[] { userName, "Password Not Traced" });
}
Authenticatio... | java | public static AuthenticationData createAuthenticationData(String userName, String password) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "createAuthenticationData", new Object[] { userName, "Password Not Traced" });
}
Authenticatio... | [
"public",
"static",
"AuthenticationData",
"createAuthenticationData",
"(",
"String",
"userName",
",",
"String",
"password",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"SibTr... | Create AuthenticationData Object from the UserName and Password passed
@param userName
@param password
@return | [
"Create",
"AuthenticationData",
"Object",
"from",
"the",
"UserName",
"and",
"Password",
"passed"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java#L106-L121 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java | MessagingSecurityUtility.createAuthenticationData | public static AuthenticationData createAuthenticationData(Certificate[] certs, UserRegistry userRegistry) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "createAuthenticationData", certs);
}
AuthenticationData authData = new WSAuthen... | java | public static AuthenticationData createAuthenticationData(Certificate[] certs, UserRegistry userRegistry) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "createAuthenticationData", certs);
}
AuthenticationData authData = new WSAuthen... | [
"public",
"static",
"AuthenticationData",
"createAuthenticationData",
"(",
"Certificate",
"[",
"]",
"certs",
",",
"UserRegistry",
"userRegistry",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
"... | Create AuthenticationData object from the Certificate
@param certs
@param userRegistry
@return | [
"Create",
"AuthenticationData",
"object",
"from",
"the",
"Certificate"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java#L130-L151 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java | MessagingSecurityUtility.getDefaultRealm | private static String getDefaultRealm(UserRegistry _userRegistry) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "getDefaultRealm");
}
String realm = DEFAULT_REALM;
if (_userRegistry != null) {
realm = _userRegist... | java | private static String getDefaultRealm(UserRegistry _userRegistry) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "getDefaultRealm");
}
String realm = DEFAULT_REALM;
if (_userRegistry != null) {
realm = _userRegist... | [
"private",
"static",
"String",
"getDefaultRealm",
"(",
"UserRegistry",
"_userRegistry",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"SibTr",
".",
"entry",
"(",
"tc",
",",... | Get the Default Realm
@param _userRegistry
@return | [
"Get",
"the",
"Default",
"Realm"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java#L159-L171 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java | MessagingSecurityUtility.getUniqueUserName | public static String getUniqueUserName(Subject subject) throws MessagingSecurityException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "getUniqueUserName", subject);
}
if (subject == null) {
return null;
}
... | java | public static String getUniqueUserName(Subject subject) throws MessagingSecurityException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "getUniqueUserName", subject);
}
if (subject == null) {
return null;
}
... | [
"public",
"static",
"String",
"getUniqueUserName",
"(",
"Subject",
"subject",
")",
"throws",
"MessagingSecurityException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"SibTr",
"."... | This method returns the unique name of the user that was being
authenticated. This is a best can do process and a user name may not be
available, in which case null should be returned. This method should not
return an empty string.
@param subject
the WAS authenticated subject
@return The name of the user being authen... | [
"This",
"method",
"returns",
"the",
"unique",
"name",
"of",
"the",
"user",
"that",
"was",
"being",
"authenticated",
".",
"This",
"is",
"a",
"best",
"can",
"do",
"process",
"and",
"a",
"user",
"name",
"may",
"not",
"be",
"available",
"in",
"which",
"case"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java#L185-L208 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java | MessagingSecurityUtility.isUnauthenticated | public static boolean isUnauthenticated(Subject subject) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "isUnauthenticated", subject);
}
boolean result = subjectHelper.isUnauthenticated(subject);
if (TraceComponent.isAnyTraci... | java | public static boolean isUnauthenticated(Subject subject) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
SibTr.entry(tc, CLASS_NAME + "isUnauthenticated", subject);
}
boolean result = subjectHelper.isUnauthenticated(subject);
if (TraceComponent.isAnyTraci... | [
"public",
"static",
"boolean",
"isUnauthenticated",
"(",
"Subject",
"subject",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"CLASS... | Check if the Subject is Authenticated
@param subject
@return
true if Subject is not authenticated | [
"Check",
"if",
"the",
"Subject",
"is",
"Authenticated"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.security/src/com/ibm/ws/messaging/security/utility/MessagingSecurityUtility.java#L238-L247 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ThreadLocalStack.java | ThreadLocalStack.pop | public E pop() throws EmptyStackException
{
E answer = peek(); // Throws EmptyStackException if there's nothing there
_elements.get().remove(_elements.get().size()-1);
return answer;
} | java | public E pop() throws EmptyStackException
{
E answer = peek(); // Throws EmptyStackException if there's nothing there
_elements.get().remove(_elements.get().size()-1);
return answer;
} | [
"public",
"E",
"pop",
"(",
")",
"throws",
"EmptyStackException",
"{",
"E",
"answer",
"=",
"peek",
"(",
")",
";",
"// Throws EmptyStackException if there's nothing there",
"_elements",
".",
"get",
"(",
")",
".",
"remove",
"(",
"_elements",
".",
"get",
"(",
")",... | Pop and return the top element of the stack for this thread
@return The previously top element of the stack for this thread
@throws EmptyStackException is thrown if the stack for this thread is empty | [
"Pop",
"and",
"return",
"the",
"top",
"element",
"of",
"the",
"stack",
"for",
"this",
"thread"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ThreadLocalStack.java#L88-L93 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.concurrent.persistent/src/com/ibm/ws/concurrent/persistent/internal/TaskInfo.java | TaskInfo.deserializeThreadContext | public ThreadContextDescriptor deserializeThreadContext(Map<String, String> execProps) throws IOException, ClassNotFoundException {
return threadContextBytes == null ? null : ThreadContextDeserializer.deserialize(threadContextBytes, execProps);
} | java | public ThreadContextDescriptor deserializeThreadContext(Map<String, String> execProps) throws IOException, ClassNotFoundException {
return threadContextBytes == null ? null : ThreadContextDeserializer.deserialize(threadContextBytes, execProps);
} | [
"public",
"ThreadContextDescriptor",
"deserializeThreadContext",
"(",
"Map",
"<",
"String",
",",
"String",
">",
"execProps",
")",
"throws",
"IOException",
",",
"ClassNotFoundException",
"{",
"return",
"threadContextBytes",
"==",
"null",
"?",
"null",
":",
"ThreadContex... | Returns the thread context that was captured at the point when the task was submitted.
@param execProps execution properties for the persistent task.
@return the thread context that was captured at the point when the task was submitted.
@throws IOException
@throws ClassNotFoundException | [
"Returns",
"the",
"thread",
"context",
"that",
"was",
"captured",
"at",
"the",
"point",
"when",
"the",
"task",
"was",
"submitted",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.concurrent.persistent/src/com/ibm/ws/concurrent/persistent/internal/TaskInfo.java#L151-L153 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jaxws.common/src/com/ibm/ws/jaxws/metadata/builder/HandlerChainInfoBuilder.java | HandlerChainInfoBuilder.buildHandlerChainInfoFromXML | public static HandlerChainInfo buildHandlerChainInfoFromXML(HandlerChain hChain) {
HandlerChainInfo hcInfo = new HandlerChainInfo();
// set Service QName
if (hChain.getServiceNamePattern() != null) {
hcInfo.setServiceNamePattern(new QName(hChain.getServiceNamePattern().getNamespaceUR... | java | public static HandlerChainInfo buildHandlerChainInfoFromXML(HandlerChain hChain) {
HandlerChainInfo hcInfo = new HandlerChainInfo();
// set Service QName
if (hChain.getServiceNamePattern() != null) {
hcInfo.setServiceNamePattern(new QName(hChain.getServiceNamePattern().getNamespaceUR... | [
"public",
"static",
"HandlerChainInfo",
"buildHandlerChainInfoFromXML",
"(",
"HandlerChain",
"hChain",
")",
"{",
"HandlerChainInfo",
"hcInfo",
"=",
"new",
"HandlerChainInfo",
"(",
")",
";",
"// set Service QName",
"if",
"(",
"hChain",
".",
"getServiceNamePattern",
"(",
... | Build the handlerChain info from web.xml
@param hChain
@return | [
"Build",
"the",
"handlerChain",
"info",
"from",
"web",
".",
"xml"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxws.common/src/com/ibm/ws/jaxws/metadata/builder/HandlerChainInfoBuilder.java#L82-L106 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jaxws.common/src/com/ibm/ws/jaxws/metadata/builder/HandlerChainInfoBuilder.java | HandlerChainInfoBuilder.buildHandlerInfoFromXML | public static HandlerInfo buildHandlerInfoFromXML(com.ibm.ws.javaee.dd.common.wsclient.Handler handler) {
HandlerInfo hInfo = new HandlerInfo();
hInfo.setHandlerClass(handler.getHandlerClassName());
hInfo.setHandlerName(handler.getHandlerName());
for (ParamValue pv : handler.getInitPar... | java | public static HandlerInfo buildHandlerInfoFromXML(com.ibm.ws.javaee.dd.common.wsclient.Handler handler) {
HandlerInfo hInfo = new HandlerInfo();
hInfo.setHandlerClass(handler.getHandlerClassName());
hInfo.setHandlerName(handler.getHandlerName());
for (ParamValue pv : handler.getInitPar... | [
"public",
"static",
"HandlerInfo",
"buildHandlerInfoFromXML",
"(",
"com",
".",
"ibm",
".",
"ws",
".",
"javaee",
".",
"dd",
".",
"common",
".",
"wsclient",
".",
"Handler",
"handler",
")",
"{",
"HandlerInfo",
"hInfo",
"=",
"new",
"HandlerInfo",
"(",
")",
";"... | Build the handler info from web.xml
@param handler
@return | [
"Build",
"the",
"handler",
"info",
"from",
"web",
".",
"xml"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxws.common/src/com/ibm/ws/jaxws/metadata/builder/HandlerChainInfoBuilder.java#L114-L131 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jaxws.common/src/com/ibm/ws/jaxws/metadata/builder/HandlerChainInfoBuilder.java | HandlerChainInfoBuilder.resolveHandlerChainFileName | protected URL resolveHandlerChainFileName(String clzName, String fileName) {
URL handlerFile = null;
InputStream in = null;
String handlerChainFileName = fileName;
URL baseUrl = classLoader.getResource(getClassResourceName(clzName));
try {
//if the filename start wi... | java | protected URL resolveHandlerChainFileName(String clzName, String fileName) {
URL handlerFile = null;
InputStream in = null;
String handlerChainFileName = fileName;
URL baseUrl = classLoader.getResource(getClassResourceName(clzName));
try {
//if the filename start wi... | [
"protected",
"URL",
"resolveHandlerChainFileName",
"(",
"String",
"clzName",
",",
"String",
"fileName",
")",
"{",
"URL",
"handlerFile",
"=",
"null",
";",
"InputStream",
"in",
"=",
"null",
";",
"String",
"handlerChainFileName",
"=",
"fileName",
";",
"URL",
"baseU... | Resolve handler chain configuration file associated with the given class
@param clzName
@param fileName
@return A URL object or null if no resource with this name is found | [
"Resolve",
"handler",
"chain",
"configuration",
"file",
"associated",
"with",
"the",
"given",
"class"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxws.common/src/com/ibm/ws/jaxws/metadata/builder/HandlerChainInfoBuilder.java#L356-L383 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jaxws.common/src/com/ibm/ws/jaxws/metadata/builder/HandlerChainInfoBuilder.java | HandlerChainInfoBuilder.sortHandlers | @SuppressWarnings("rawtypes")
public static List<Handler> sortHandlers(List<Handler> handlers) {
List<LogicalHandler<?>> logicalHandlers = new ArrayList<LogicalHandler<?>>();
List<Handler<?>> protocolHandlers = new ArrayList<Handler<?>>();
for (Handler<?> handler : handlers) {
... | java | @SuppressWarnings("rawtypes")
public static List<Handler> sortHandlers(List<Handler> handlers) {
List<LogicalHandler<?>> logicalHandlers = new ArrayList<LogicalHandler<?>>();
List<Handler<?>> protocolHandlers = new ArrayList<Handler<?>>();
for (Handler<?> handler : handlers) {
... | [
"@",
"SuppressWarnings",
"(",
"\"rawtypes\"",
")",
"public",
"static",
"List",
"<",
"Handler",
">",
"sortHandlers",
"(",
"List",
"<",
"Handler",
">",
"handlers",
")",
"{",
"List",
"<",
"LogicalHandler",
"<",
"?",
">",
">",
"logicalHandlers",
"=",
"new",
"A... | sorts the handlers into correct order. All of the logical handlers first
followed by the protocol handlers
@param handlers
@return sorted list of handlers | [
"sorts",
"the",
"handlers",
"into",
"correct",
"order",
".",
"All",
"of",
"the",
"logical",
"handlers",
"first",
"followed",
"by",
"the",
"protocol",
"handlers"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxws.common/src/com/ibm/ws/jaxws/metadata/builder/HandlerChainInfoBuilder.java#L438-L456 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.classloading/src/com/ibm/ws/classloading/internal/ApplicationClassloadingServiceFactory.java | ApplicationClassloadingServiceFactory.buildServicePropsAndFilterTargets | private Dictionary<String, Object> buildServicePropsAndFilterTargets(String pid, Dictionary<String, Object> config) throws IOException, InvalidSyntaxException {
Dictionary<String, Object> result = new Hashtable<String, Object>();
// we will use this later to discover the properties configured in this c... | java | private Dictionary<String, Object> buildServicePropsAndFilterTargets(String pid, Dictionary<String, Object> config) throws IOException, InvalidSyntaxException {
Dictionary<String, Object> result = new Hashtable<String, Object>();
// we will use this later to discover the properties configured in this c... | [
"private",
"Dictionary",
"<",
"String",
",",
"Object",
">",
"buildServicePropsAndFilterTargets",
"(",
"String",
"pid",
",",
"Dictionary",
"<",
"String",
",",
"Object",
">",
"config",
")",
"throws",
"IOException",
",",
"InvalidSyntaxException",
"{",
"Dictionary",
"... | Add the properties for this new service to allow
other components locate this service
@throws InvalidSyntaxException
@throws IOException | [
"Add",
"the",
"properties",
"for",
"this",
"new",
"service",
"to",
"allow",
"other",
"components",
"locate",
"this",
"service"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.classloading/src/com/ibm/ws/classloading/internal/ApplicationClassloadingServiceFactory.java#L119-L172 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.classloading/src/com/ibm/ws/classloading/internal/ApplicationClassloadingServiceFactory.java | ApplicationClassloadingServiceFactory.buildTargetString | private String buildTargetString(List<String> privateLibraries) {
StringBuilder filter = new StringBuilder();
filter.append("(&");
for (String lib : privateLibraries)
filter.append(String.format("(|(%s=%s)(%s=%s))", LibraryStatusService.LIBRARY_IDS, lib, LibraryStatusService.LIBRARY_... | java | private String buildTargetString(List<String> privateLibraries) {
StringBuilder filter = new StringBuilder();
filter.append("(&");
for (String lib : privateLibraries)
filter.append(String.format("(|(%s=%s)(%s=%s))", LibraryStatusService.LIBRARY_IDS, lib, LibraryStatusService.LIBRARY_... | [
"private",
"String",
"buildTargetString",
"(",
"List",
"<",
"String",
">",
"privateLibraries",
")",
"{",
"StringBuilder",
"filter",
"=",
"new",
"StringBuilder",
"(",
")",
";",
"filter",
".",
"append",
"(",
"\"(&\"",
")",
";",
"for",
"(",
"String",
"lib",
"... | This filter will cause the new application classloading service to block until these libraries are active
Each library is added twice as it may be an automatic librari in which case
its pid will not yet be known so we use the id. | [
"This",
"filter",
"will",
"cause",
"the",
"new",
"application",
"classloading",
"service",
"to",
"block",
"until",
"these",
"libraries",
"are",
"active",
"Each",
"library",
"is",
"added",
"twice",
"as",
"it",
"may",
"be",
"an",
"automatic",
"librari",
"in",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.classloading/src/com/ibm/ws/classloading/internal/ApplicationClassloadingServiceFactory.java#L179-L191 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.logging.core/src/com/ibm/ws/logging/internal/StackFinder.java | StackFinder.matchCaller | @SuppressWarnings("unchecked")
public Class<Object> matchCaller(String className) {
// Walk the stack backwards to find the calling class: don't
// want to use Class.forName, because we want the class as loaded
// by it's original classloader
Class<Object> stack[] = (Class<Object>[])... | java | @SuppressWarnings("unchecked")
public Class<Object> matchCaller(String className) {
// Walk the stack backwards to find the calling class: don't
// want to use Class.forName, because we want the class as loaded
// by it's original classloader
Class<Object> stack[] = (Class<Object>[])... | [
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"public",
"Class",
"<",
"Object",
">",
"matchCaller",
"(",
"String",
"className",
")",
"{",
"// Walk the stack backwards to find the calling class: don't",
"// want to use Class.forName, because we want the class as loaded",
"//... | Return the class if the given classname is found on the stack.
@param fragment
@return boolean | [
"Return",
"the",
"class",
"if",
"the",
"given",
"classname",
"is",
"found",
"on",
"the",
"stack",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging.core/src/com/ibm/ws/logging/internal/StackFinder.java#L101-L114 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.