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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java | FileUtil.getDirectoryname | public static String getDirectoryname(final String pPath, final char pSeparator) {
int index = pPath.lastIndexOf(pSeparator);
if (index < 0) {
return ""; // Assume only filename
}
return pPath.substring(0, index);
} | java | public static String getDirectoryname(final String pPath, final char pSeparator) {
int index = pPath.lastIndexOf(pSeparator);
if (index < 0) {
return ""; // Assume only filename
}
return pPath.substring(0, index);
} | [
"public",
"static",
"String",
"getDirectoryname",
"(",
"final",
"String",
"pPath",
",",
"final",
"char",
"pSeparator",
")",
"{",
"int",
"index",
"=",
"pPath",
".",
"lastIndexOf",
"(",
"pSeparator",
")",
";",
"if",
"(",
"index",
"<",
"0",
")",
"{",
"retur... | Extracts the directory path without the filename, from a complete
filename path.
@param pPath The full filename path.
@param pSeparator the separator char used in {@code pPath}
@return the path without the filename.
@see File#getParent
@see #getFilename | [
"Extracts",
"the",
"directory",
"path",
"without",
"the",
"filename",
"from",
"a",
"complete",
"filename",
"path",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java#L436-L443 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java | FileUtil.getFilename | public static String getFilename(final String pPath, final char pSeparator) {
int index = pPath.lastIndexOf(pSeparator);
if (index < 0) {
return pPath; // Assume only filename
}
return pPath.substring(index + 1);
} | java | public static String getFilename(final String pPath, final char pSeparator) {
int index = pPath.lastIndexOf(pSeparator);
if (index < 0) {
return pPath; // Assume only filename
}
return pPath.substring(index + 1);
} | [
"public",
"static",
"String",
"getFilename",
"(",
"final",
"String",
"pPath",
",",
"final",
"char",
"pSeparator",
")",
"{",
"int",
"index",
"=",
"pPath",
".",
"lastIndexOf",
"(",
"pSeparator",
")",
";",
"if",
"(",
"index",
"<",
"0",
")",
"{",
"return",
... | Extracts the filename of a complete filename path.
@param pPath The full filename path.
@param pSeparator The file separator.
@return the extracted filename.
@see File#getName
@see #getDirectoryname | [
"Extracts",
"the",
"filename",
"of",
"a",
"complete",
"filename",
"path",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java#L466-L474 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java | FileUtil.isEmpty | public static boolean isEmpty(File pFile) {
if (pFile.isDirectory()) {
return (pFile.list().length == 0);
}
return (pFile.length() == 0);
} | java | public static boolean isEmpty(File pFile) {
if (pFile.isDirectory()) {
return (pFile.list().length == 0);
}
return (pFile.length() == 0);
} | [
"public",
"static",
"boolean",
"isEmpty",
"(",
"File",
"pFile",
")",
"{",
"if",
"(",
"pFile",
".",
"isDirectory",
"(",
")",
")",
"{",
"return",
"(",
"pFile",
".",
"list",
"(",
")",
".",
"length",
"==",
"0",
")",
";",
"}",
"return",
"(",
"pFile",
... | Tests if a file or directory has no content.
A file is empty if it has a length of 0L. A non-existing file is also
considered empty.
A directory is considered empty if it contains no files.
@param pFile The file to test
@return {@code true} if the file is empty, otherwise
{@code false}. | [
"Tests",
"if",
"a",
"file",
"or",
"directory",
"has",
"no",
"content",
".",
"A",
"file",
"is",
"empty",
"if",
"it",
"has",
"a",
"length",
"of",
"0L",
".",
"A",
"non",
"-",
"existing",
"file",
"is",
"also",
"considered",
"empty",
".",
"A",
"directory"... | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java#L487-L492 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java | FileUtil.getTempDir | public static String getTempDir() {
synchronized (FileUtil.class) {
if (TEMP_DIR == null) {
// Get the 'java.io.tmpdir' property
String tmpDir = System.getProperty("java.io.tmpdir");
if (StringUtil.isEmpty(tmpDir)) {
// Stup... | java | public static String getTempDir() {
synchronized (FileUtil.class) {
if (TEMP_DIR == null) {
// Get the 'java.io.tmpdir' property
String tmpDir = System.getProperty("java.io.tmpdir");
if (StringUtil.isEmpty(tmpDir)) {
// Stup... | [
"public",
"static",
"String",
"getTempDir",
"(",
")",
"{",
"synchronized",
"(",
"FileUtil",
".",
"class",
")",
"{",
"if",
"(",
"TEMP_DIR",
"==",
"null",
")",
"{",
"// Get the 'java.io.tmpdir' property\r",
"String",
"tmpDir",
"=",
"System",
".",
"getProperty",
... | Gets the default temp directory for the system.
@return a {@code String}, representing the path to the default temp
directory.
@see File#createTempFile | [
"Gets",
"the",
"default",
"temp",
"directory",
"for",
"the",
"system",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java#L511-L531 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java | FileUtil.read | public static byte[] read(File pFile) throws IOException {
// Custom implementation, as we know the size of a file
if (!pFile.exists()) {
throw new FileNotFoundException(pFile.toString());
}
byte[] bytes = new byte[(int) pFile.length()];
InputStream in = null;... | java | public static byte[] read(File pFile) throws IOException {
// Custom implementation, as we know the size of a file
if (!pFile.exists()) {
throw new FileNotFoundException(pFile.toString());
}
byte[] bytes = new byte[(int) pFile.length()];
InputStream in = null;... | [
"public",
"static",
"byte",
"[",
"]",
"read",
"(",
"File",
"pFile",
")",
"throws",
"IOException",
"{",
"// Custom implementation, as we know the size of a file\r",
"if",
"(",
"!",
"pFile",
".",
"exists",
"(",
")",
")",
"{",
"throw",
"new",
"FileNotFoundException",... | Gets the contents of the given file, as a byte array.
@param pFile the file to get content from
@return the content of the file as a byte array.
@throws IOException if the read operation fails | [
"Gets",
"the",
"contents",
"of",
"the",
"given",
"file",
"as",
"a",
"byte",
"array",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java#L551-L577 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java | FileUtil.read | public static byte[] read(InputStream pInput) throws IOException {
// Create byte array
ByteArrayOutputStream bytes = new FastByteArrayOutputStream(BUF_SIZE);
// Copy from stream to byte array
copy(pInput, bytes);
return bytes.toByteArray();
} | java | public static byte[] read(InputStream pInput) throws IOException {
// Create byte array
ByteArrayOutputStream bytes = new FastByteArrayOutputStream(BUF_SIZE);
// Copy from stream to byte array
copy(pInput, bytes);
return bytes.toByteArray();
} | [
"public",
"static",
"byte",
"[",
"]",
"read",
"(",
"InputStream",
"pInput",
")",
"throws",
"IOException",
"{",
"// Create byte array\r",
"ByteArrayOutputStream",
"bytes",
"=",
"new",
"FastByteArrayOutputStream",
"(",
"BUF_SIZE",
")",
";",
"// Copy from stream to byte ar... | Reads all data from the input stream to a byte array.
@param pInput The input stream to read from
@return The content of the stream as a byte array.
@throws IOException if an i/o error occurs during read. | [
"Reads",
"all",
"data",
"from",
"the",
"input",
"stream",
"to",
"a",
"byte",
"array",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java#L586-L594 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java | FileUtil.write | public static boolean write(File pFile, byte[] pData) throws IOException {
boolean success = false;
OutputStream out = null;
try {
out = new BufferedOutputStream(new FileOutputStream(pFile));
success = write(out, pData);
}
finally {
c... | java | public static boolean write(File pFile, byte[] pData) throws IOException {
boolean success = false;
OutputStream out = null;
try {
out = new BufferedOutputStream(new FileOutputStream(pFile));
success = write(out, pData);
}
finally {
c... | [
"public",
"static",
"boolean",
"write",
"(",
"File",
"pFile",
",",
"byte",
"[",
"]",
"pData",
")",
"throws",
"IOException",
"{",
"boolean",
"success",
"=",
"false",
";",
"OutputStream",
"out",
"=",
"null",
";",
"try",
"{",
"out",
"=",
"new",
"BufferedOut... | Writes the contents from a byte array to a file.
@param pFile The file to write to
@param pData The byte array to write
@return {@code true}, otherwise an IOException is thrown.
@throws IOException if an i/o error occurs during write. | [
"Writes",
"the",
"contents",
"from",
"a",
"byte",
"array",
"to",
"a",
"file",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java#L620-L632 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java | FileUtil.delete | public static boolean delete(final File pFile, final boolean pForce) throws IOException {
if (pForce && pFile.isDirectory()) {
return deleteDir(pFile);
}
return pFile.exists() && pFile.delete();
} | java | public static boolean delete(final File pFile, final boolean pForce) throws IOException {
if (pForce && pFile.isDirectory()) {
return deleteDir(pFile);
}
return pFile.exists() && pFile.delete();
} | [
"public",
"static",
"boolean",
"delete",
"(",
"final",
"File",
"pFile",
",",
"final",
"boolean",
"pForce",
")",
"throws",
"IOException",
"{",
"if",
"(",
"pForce",
"&&",
"pFile",
".",
"isDirectory",
"(",
")",
")",
"{",
"return",
"deleteDir",
"(",
"pFile",
... | Deletes the specified file.
@param pFile The file to delete
@param pForce Forces delete, even if the parameter is a directory, and
is not empty. Be careful!
@return {@code true}, if the file existed and was deleted.
@throws IOException if an i/o error occurs during delete. | [
"Deletes",
"the",
"specified",
"file",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java#L655-L660 | train |
haraldk/TwelveMonkeys | imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/KCMSSanitizerStrategy.java | KCMSSanitizerStrategy.fixProfileXYZTag | private static boolean fixProfileXYZTag(final ICC_Profile profile, final int tagSignature) {
byte[] data = profile.getData(tagSignature);
// The CMM expects 0x64 65 73 63 ('XYZ ') but is 0x17 A5 05 B8..?
if (data != null && intFromBigEndian(data, 0) == CORBIS_RGB_ALTERNATE_XYZ) {
in... | java | private static boolean fixProfileXYZTag(final ICC_Profile profile, final int tagSignature) {
byte[] data = profile.getData(tagSignature);
// The CMM expects 0x64 65 73 63 ('XYZ ') but is 0x17 A5 05 B8..?
if (data != null && intFromBigEndian(data, 0) == CORBIS_RGB_ALTERNATE_XYZ) {
in... | [
"private",
"static",
"boolean",
"fixProfileXYZTag",
"(",
"final",
"ICC_Profile",
"profile",
",",
"final",
"int",
"tagSignature",
")",
"{",
"byte",
"[",
"]",
"data",
"=",
"profile",
".",
"getData",
"(",
"tagSignature",
")",
";",
"// The CMM expects 0x64 65 73 63 ('... | Fixes problematic 'XYZ ' tags in Corbis RGB profile.
@return {@code true} if found and fixed, otherwise {@code false} for short-circuiting
to avoid unnecessary array copying. | [
"Fixes",
"problematic",
"XYZ",
"tags",
"in",
"Corbis",
"RGB",
"profile",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/KCMSSanitizerStrategy.java#L81-L93 | train |
haraldk/TwelveMonkeys | imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/YCbCrConverter.java | YCbCrConverter.buildYCCtoRGBtable | private static void buildYCCtoRGBtable() {
if (ColorSpaces.DEBUG) {
System.err.println("Building YCC conversion table");
}
for (int i = 0, x = -CENTERJSAMPLE; i <= MAXJSAMPLE; i++, x++) {
// i is the actual input pixel value, in the range 0..MAXJSAMPLE
// The... | java | private static void buildYCCtoRGBtable() {
if (ColorSpaces.DEBUG) {
System.err.println("Building YCC conversion table");
}
for (int i = 0, x = -CENTERJSAMPLE; i <= MAXJSAMPLE; i++, x++) {
// i is the actual input pixel value, in the range 0..MAXJSAMPLE
// The... | [
"private",
"static",
"void",
"buildYCCtoRGBtable",
"(",
")",
"{",
"if",
"(",
"ColorSpaces",
".",
"DEBUG",
")",
"{",
"System",
".",
"err",
".",
"println",
"(",
"\"Building YCC conversion table\"",
")",
";",
"}",
"for",
"(",
"int",
"i",
"=",
"0",
",",
"x",... | Initializes tables for YCC->RGB color space conversion. | [
"Initializes",
"tables",
"for",
"YCC",
"-",
">",
"RGB",
"color",
"space",
"conversion",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/YCbCrConverter.java#L56-L74 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/droplet/taglib/OparamTag.java | OparamTag.getOparamCountFromRequest | private int getOparamCountFromRequest(HttpServletRequest pRequest) {
// Use request.attribute for incrementing oparam counter
Integer count = (Integer) pRequest.getAttribute(COUNTER);
if (count == null) {
count = new Integer(0);
}
else {
count = new... | java | private int getOparamCountFromRequest(HttpServletRequest pRequest) {
// Use request.attribute for incrementing oparam counter
Integer count = (Integer) pRequest.getAttribute(COUNTER);
if (count == null) {
count = new Integer(0);
}
else {
count = new... | [
"private",
"int",
"getOparamCountFromRequest",
"(",
"HttpServletRequest",
"pRequest",
")",
"{",
"// Use request.attribute for incrementing oparam counter\r",
"Integer",
"count",
"=",
"(",
"Integer",
")",
"pRequest",
".",
"getAttribute",
"(",
"COUNTER",
")",
";",
"if",
"... | Gets the current oparam count for this request | [
"Gets",
"the",
"current",
"oparam",
"count",
"for",
"this",
"request"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/droplet/taglib/OparamTag.java#L205-L219 | train |
haraldk/TwelveMonkeys | common/common-image/src/main/java/com/twelvemonkeys/image/ResampleOp.java | ResampleOp.getFilterType | private static int getFilterType(RenderingHints pHints) {
if (pHints == null) {
return FILTER_UNDEFINED;
}
if (pHints.containsKey(KEY_RESAMPLE_INTERPOLATION)) {
Object value = pHints.get(KEY_RESAMPLE_INTERPOLATION);
// NOTE: Workaround for a bug in Ren... | java | private static int getFilterType(RenderingHints pHints) {
if (pHints == null) {
return FILTER_UNDEFINED;
}
if (pHints.containsKey(KEY_RESAMPLE_INTERPOLATION)) {
Object value = pHints.get(KEY_RESAMPLE_INTERPOLATION);
// NOTE: Workaround for a bug in Ren... | [
"private",
"static",
"int",
"getFilterType",
"(",
"RenderingHints",
"pHints",
")",
"{",
"if",
"(",
"pHints",
"==",
"null",
")",
"{",
"return",
"FILTER_UNDEFINED",
";",
"}",
"if",
"(",
"pHints",
".",
"containsKey",
"(",
"KEY_RESAMPLE_INTERPOLATION",
")",
")",
... | Gets the filter type specified by the given hints.
@param pHints rendering hints
@return a filter type constant | [
"Gets",
"the",
"filter",
"type",
"specified",
"by",
"the",
"given",
"hints",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-image/src/main/java/com/twelvemonkeys/image/ResampleOp.java#L456-L491 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java | ObjectMapper.getColumn | public String getColumn(String pProperty) {
if (mPropertiesMap == null || pProperty == null)
return null;
return (String) mPropertiesMap.get(pProperty);
} | java | public String getColumn(String pProperty) {
if (mPropertiesMap == null || pProperty == null)
return null;
return (String) mPropertiesMap.get(pProperty);
} | [
"public",
"String",
"getColumn",
"(",
"String",
"pProperty",
")",
"{",
"if",
"(",
"mPropertiesMap",
"==",
"null",
"||",
"pProperty",
"==",
"null",
")",
"return",
"null",
";",
"return",
"(",
"String",
")",
"mPropertiesMap",
".",
"get",
"(",
"pProperty",
")"... | Gets the column for a given property.
@param property The property
@return The name of the matching database column, on the form
table.column | [
"Gets",
"the",
"column",
"for",
"a",
"given",
"property",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java#L264-L268 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java | ObjectMapper.getTable | public String getTable(String pProperty) {
String table = getColumn(pProperty);
if (table != null) {
int dotIdx = 0;
if ((dotIdx = table.lastIndexOf(".")) >= 0)
table = table.substring(0, dotIdx);
else
return null;
}
... | java | public String getTable(String pProperty) {
String table = getColumn(pProperty);
if (table != null) {
int dotIdx = 0;
if ((dotIdx = table.lastIndexOf(".")) >= 0)
table = table.substring(0, dotIdx);
else
return null;
}
... | [
"public",
"String",
"getTable",
"(",
"String",
"pProperty",
")",
"{",
"String",
"table",
"=",
"getColumn",
"(",
"pProperty",
")",
";",
"if",
"(",
"table",
"!=",
"null",
")",
"{",
"int",
"dotIdx",
"=",
"0",
";",
"if",
"(",
"(",
"dotIdx",
"=",
"table",... | Gets the table name for a given property.
@param property The property
@return The name of the matching database table. | [
"Gets",
"the",
"table",
"name",
"for",
"a",
"given",
"property",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java#L277-L289 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java | ObjectMapper.getProperty | public String getProperty(String pColumn) {
if (mColumnMap == null || pColumn == null)
return null;
String property = (String) mColumnMap.get(pColumn);
int dotIdx = 0;
if (property == null && (dotIdx = pColumn.lastIndexOf(".")) >= 0)
property = (String) ... | java | public String getProperty(String pColumn) {
if (mColumnMap == null || pColumn == null)
return null;
String property = (String) mColumnMap.get(pColumn);
int dotIdx = 0;
if (property == null && (dotIdx = pColumn.lastIndexOf(".")) >= 0)
property = (String) ... | [
"public",
"String",
"getProperty",
"(",
"String",
"pColumn",
")",
"{",
"if",
"(",
"mColumnMap",
"==",
"null",
"||",
"pColumn",
"==",
"null",
")",
"return",
"null",
";",
"String",
"property",
"=",
"(",
"String",
")",
"mColumnMap",
".",
"get",
"(",
"pColum... | Gets the property for a given database column. If the column incudes
table qualifier, the table qualifier is removed.
@param column The name of the column
@return The name of the mathcing property | [
"Gets",
"the",
"property",
"for",
"a",
"given",
"database",
"column",
".",
"If",
"the",
"column",
"incudes",
"table",
"qualifier",
"the",
"table",
"qualifier",
"is",
"removed",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java#L299-L310 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java | ObjectMapper.mapObjects | public synchronized Object[] mapObjects(ResultSet pRSet) throws SQLException {
Vector result = new Vector();
ResultSetMetaData meta = pRSet.getMetaData();
int cols = meta.getColumnCount();
// Get colum names
String[] colNames = new String[cols];
for (int i = 0; ... | java | public synchronized Object[] mapObjects(ResultSet pRSet) throws SQLException {
Vector result = new Vector();
ResultSetMetaData meta = pRSet.getMetaData();
int cols = meta.getColumnCount();
// Get colum names
String[] colNames = new String[cols];
for (int i = 0; ... | [
"public",
"synchronized",
"Object",
"[",
"]",
"mapObjects",
"(",
"ResultSet",
"pRSet",
")",
"throws",
"SQLException",
"{",
"Vector",
"result",
"=",
"new",
"Vector",
"(",
")",
";",
"ResultSetMetaData",
"meta",
"=",
"pRSet",
".",
"getMetaData",
"(",
")",
";",
... | Maps each row of the given result set to an object ot this OM's type.
@param rs The ResultSet to process (map to objects)
@return An array of objects (of this OM's class). If there are no rows
in the ResultSet, an empty (zero-length) array will be returned. | [
"Maps",
"each",
"row",
"of",
"the",
"given",
"result",
"set",
"to",
"an",
"object",
"ot",
"this",
"OM",
"s",
"type",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java#L321-L377 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java | ObjectMapper.buildIdentitySQL | String buildIdentitySQL(String[] pKeys) {
mTables = new Hashtable();
mColumns = new Vector();
// Get columns to select
mColumns.addElement(getPrimaryKey());
// Get tables to select (and join) from and their joins
tableJoins(null, false);
for (int i =... | java | String buildIdentitySQL(String[] pKeys) {
mTables = new Hashtable();
mColumns = new Vector();
// Get columns to select
mColumns.addElement(getPrimaryKey());
// Get tables to select (and join) from and their joins
tableJoins(null, false);
for (int i =... | [
"String",
"buildIdentitySQL",
"(",
"String",
"[",
"]",
"pKeys",
")",
"{",
"mTables",
"=",
"new",
"Hashtable",
"(",
")",
";",
"mColumns",
"=",
"new",
"Vector",
"(",
")",
";",
"// Get columns to select\r",
"mColumns",
".",
"addElement",
"(",
"getPrimaryKey",
"... | Creates a SQL query string to get the primary keys for this
ObjectMapper. | [
"Creates",
"a",
"SQL",
"query",
"string",
"to",
"get",
"the",
"primary",
"keys",
"for",
"this",
"ObjectMapper",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java#L462-L479 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java | ObjectMapper.buildSQL | public String buildSQL() {
mTables = new Hashtable();
mColumns = new Vector();
String key = null;
for (Enumeration keys = mPropertiesMap.keys(); keys.hasMoreElements();) {
key = (String) keys.nextElement();
// Get columns to select
Strin... | java | public String buildSQL() {
mTables = new Hashtable();
mColumns = new Vector();
String key = null;
for (Enumeration keys = mPropertiesMap.keys(); keys.hasMoreElements();) {
key = (String) keys.nextElement();
// Get columns to select
Strin... | [
"public",
"String",
"buildSQL",
"(",
")",
"{",
"mTables",
"=",
"new",
"Hashtable",
"(",
")",
";",
"mColumns",
"=",
"new",
"Vector",
"(",
")",
";",
"String",
"key",
"=",
"null",
";",
"for",
"(",
"Enumeration",
"keys",
"=",
"mPropertiesMap",
".",
"keys",... | Creates a SQL query string to get objects for this ObjectMapper. | [
"Creates",
"a",
"SQL",
"query",
"string",
"to",
"get",
"objects",
"for",
"this",
"ObjectMapper",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java#L485-L503 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java | ObjectMapper.buildSelectClause | private String buildSelectClause() {
StringBuilder sqlBuf = new StringBuilder();
sqlBuf.append("SELECT ");
String column = null;
for (Enumeration select = mColumns.elements(); select.hasMoreElements();) {
column = (String) select.nextElement();
/*
... | java | private String buildSelectClause() {
StringBuilder sqlBuf = new StringBuilder();
sqlBuf.append("SELECT ");
String column = null;
for (Enumeration select = mColumns.elements(); select.hasMoreElements();) {
column = (String) select.nextElement();
/*
... | [
"private",
"String",
"buildSelectClause",
"(",
")",
"{",
"StringBuilder",
"sqlBuf",
"=",
"new",
"StringBuilder",
"(",
")",
";",
"sqlBuf",
".",
"append",
"(",
"\"SELECT \"",
")",
";",
"String",
"column",
"=",
"null",
";",
"for",
"(",
"Enumeration",
"select",
... | Builds a SQL SELECT clause from the columns Vector | [
"Builds",
"a",
"SQL",
"SELECT",
"clause",
"from",
"the",
"columns",
"Vector"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java#L509-L533 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java | ObjectMapper.tableJoins | private void tableJoins(String pColumn, boolean pWhereJoin) {
String join = null;
String table = null;
if (pColumn == null) {
// Identity
join = getIdentityJoin();
table = getTable(getProperty(getPrimaryKey()));
}
else {
... | java | private void tableJoins(String pColumn, boolean pWhereJoin) {
String join = null;
String table = null;
if (pColumn == null) {
// Identity
join = getIdentityJoin();
table = getTable(getProperty(getPrimaryKey()));
}
else {
... | [
"private",
"void",
"tableJoins",
"(",
"String",
"pColumn",
",",
"boolean",
"pWhereJoin",
")",
"{",
"String",
"join",
"=",
"null",
";",
"String",
"table",
"=",
"null",
";",
"if",
"(",
"pColumn",
"==",
"null",
")",
"{",
"// Identity\r",
"join",
"=",
"getId... | Finds tables used in mappings and joins and adds them to the tables
Hashtable, with the table name as key, and the join as value. | [
"Finds",
"tables",
"used",
"in",
"mappings",
"and",
"joins",
"and",
"adds",
"them",
"to",
"the",
"tables",
"Hashtable",
"with",
"the",
"table",
"name",
"as",
"key",
"and",
"the",
"join",
"as",
"value",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectMapper.java#L603-L661 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/SeekableOutputStream.java | SeekableOutputStream.seek | public final void seek(long pPosition) throws IOException {
checkOpen();
// TODO: This is correct according to javax.imageio (IndexOutOfBoundsException),
// but it's inconsistent with reset that throws IOException...
if (pPosition < flushedPosition) {
throw new IndexOu... | java | public final void seek(long pPosition) throws IOException {
checkOpen();
// TODO: This is correct according to javax.imageio (IndexOutOfBoundsException),
// but it's inconsistent with reset that throws IOException...
if (pPosition < flushedPosition) {
throw new IndexOu... | [
"public",
"final",
"void",
"seek",
"(",
"long",
"pPosition",
")",
"throws",
"IOException",
"{",
"checkOpen",
"(",
")",
";",
"// TODO: This is correct according to javax.imageio (IndexOutOfBoundsException),\r",
"// but it's inconsistent with reset that throws IOException...\r",
"if"... | probably a good idea to extract a delegate..? | [
"probably",
"a",
"good",
"idea",
"to",
"extract",
"a",
"delegate",
"..",
"?"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/SeekableOutputStream.java#L63-L74 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/net/MIMEUtil.java | MIMEUtil.getMIMEType | public static String getMIMEType(final String pFileExt) {
List<String> types = sExtToMIME.get(StringUtil.toLowerCase(pFileExt));
return (types == null || types.isEmpty()) ? null : types.get(0);
} | java | public static String getMIMEType(final String pFileExt) {
List<String> types = sExtToMIME.get(StringUtil.toLowerCase(pFileExt));
return (types == null || types.isEmpty()) ? null : types.get(0);
} | [
"public",
"static",
"String",
"getMIMEType",
"(",
"final",
"String",
"pFileExt",
")",
"{",
"List",
"<",
"String",
">",
"types",
"=",
"sExtToMIME",
".",
"get",
"(",
"StringUtil",
".",
"toLowerCase",
"(",
"pFileExt",
")",
")",
";",
"return",
"(",
"types",
... | Returns the default MIME type for the given file extension.
@param pFileExt the file extension
@return a {@code String} containing the MIME type, or {@code null} if
there are no known MIME types for the given file extension. | [
"Returns",
"the",
"default",
"MIME",
"type",
"for",
"the",
"given",
"file",
"extension",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/net/MIMEUtil.java#L109-L112 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/net/MIMEUtil.java | MIMEUtil.getMIMETypes | public static List<String> getMIMETypes(final String pFileExt) {
List<String> types = sExtToMIME.get(StringUtil.toLowerCase(pFileExt));
return maskNull(types);
} | java | public static List<String> getMIMETypes(final String pFileExt) {
List<String> types = sExtToMIME.get(StringUtil.toLowerCase(pFileExt));
return maskNull(types);
} | [
"public",
"static",
"List",
"<",
"String",
">",
"getMIMETypes",
"(",
"final",
"String",
"pFileExt",
")",
"{",
"List",
"<",
"String",
">",
"types",
"=",
"sExtToMIME",
".",
"get",
"(",
"StringUtil",
".",
"toLowerCase",
"(",
"pFileExt",
")",
")",
";",
"retu... | Returns all MIME types for the given file extension.
@param pFileExt the file extension
@return a {@link List} of {@code String}s containing the MIME types, or an empty
list, if there are no known MIME types for the given file extension. | [
"Returns",
"all",
"MIME",
"types",
"for",
"the",
"given",
"file",
"extension",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/net/MIMEUtil.java#L122-L125 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/net/MIMEUtil.java | MIMEUtil.getExtensionForWildcard | private static List<String> getExtensionForWildcard(final String pMIME) {
final String family = pMIME.substring(0, pMIME.length() - 1);
Set<String> extensions = new LinkedHashSet<String>();
for (Map.Entry<String, List<String>> mimeToExt : sMIMEToExt.entrySet()) {
if ("*/".equals(... | java | private static List<String> getExtensionForWildcard(final String pMIME) {
final String family = pMIME.substring(0, pMIME.length() - 1);
Set<String> extensions = new LinkedHashSet<String>();
for (Map.Entry<String, List<String>> mimeToExt : sMIMEToExt.entrySet()) {
if ("*/".equals(... | [
"private",
"static",
"List",
"<",
"String",
">",
"getExtensionForWildcard",
"(",
"final",
"String",
"pMIME",
")",
"{",
"final",
"String",
"family",
"=",
"pMIME",
".",
"substring",
"(",
"0",
",",
"pMIME",
".",
"length",
"(",
")",
"-",
"1",
")",
";",
"Se... | Gets all extensions for a wildcard MIME type | [
"Gets",
"all",
"extensions",
"for",
"a",
"wildcard",
"MIME",
"type"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/net/MIMEUtil.java#L173-L182 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/net/MIMEUtil.java | MIMEUtil.maskNull | private static List<String> maskNull(List<String> pTypes) {
return (pTypes == null) ? Collections.<String>emptyList() : pTypes;
} | java | private static List<String> maskNull(List<String> pTypes) {
return (pTypes == null) ? Collections.<String>emptyList() : pTypes;
} | [
"private",
"static",
"List",
"<",
"String",
">",
"maskNull",
"(",
"List",
"<",
"String",
">",
"pTypes",
")",
"{",
"return",
"(",
"pTypes",
"==",
"null",
")",
"?",
"Collections",
".",
"<",
"String",
">",
"emptyList",
"(",
")",
":",
"pTypes",
";",
"}"
... | Returns the list or empty list if list is null | [
"Returns",
"the",
"list",
"or",
"empty",
"list",
"if",
"list",
"is",
"null"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/net/MIMEUtil.java#L230-L232 | train |
haraldk/TwelveMonkeys | imageio/imageio-pcx/src/main/java/com/twelvemonkeys/imageio/plugins/pcx/RLEDecoder.java | RLEDecoder.decode | public int decode(final InputStream stream, final ByteBuffer buffer) throws IOException {
while (buffer.remaining() >= 64) {
int val = stream.read();
if (val < 0) {
break; // EOF
}
if ((val & COMPRESSED_RUN_MASK) == COMPRESSED_RUN_MASK) {
... | java | public int decode(final InputStream stream, final ByteBuffer buffer) throws IOException {
while (buffer.remaining() >= 64) {
int val = stream.read();
if (val < 0) {
break; // EOF
}
if ((val & COMPRESSED_RUN_MASK) == COMPRESSED_RUN_MASK) {
... | [
"public",
"int",
"decode",
"(",
"final",
"InputStream",
"stream",
",",
"final",
"ByteBuffer",
"buffer",
")",
"throws",
"IOException",
"{",
"while",
"(",
"buffer",
".",
"remaining",
"(",
")",
">=",
"64",
")",
"{",
"int",
"val",
"=",
"stream",
".",
"read",... | even if this will make the output larger. | [
"even",
"if",
"this",
"will",
"make",
"the",
"output",
"larger",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pcx/src/main/java/com/twelvemonkeys/imageio/plugins/pcx/RLEDecoder.java#L47-L72 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/regex/REWildcardStringParser.java | REWildcardStringParser.buildRegexpParser | private boolean buildRegexpParser() {
// Convert wildcard string mask to regular expression
String regexp = convertWildcardExpressionToRegularExpression(mStringMask);
if (regexp == null) {
out.println(DebugUtil.getPrefixErrorMessage(this)
+ "irregularity in regexp conversion... | java | private boolean buildRegexpParser() {
// Convert wildcard string mask to regular expression
String regexp = convertWildcardExpressionToRegularExpression(mStringMask);
if (regexp == null) {
out.println(DebugUtil.getPrefixErrorMessage(this)
+ "irregularity in regexp conversion... | [
"private",
"boolean",
"buildRegexpParser",
"(",
")",
"{",
"// Convert wildcard string mask to regular expression\r",
"String",
"regexp",
"=",
"convertWildcardExpressionToRegularExpression",
"(",
"mStringMask",
")",
";",
"if",
"(",
"regexp",
"==",
"null",
")",
"{",
"out",
... | Builds the regexp parser. | [
"Builds",
"the",
"regexp",
"parser",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/regex/REWildcardStringParser.java#L196-L226 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/regex/REWildcardStringParser.java | REWildcardStringParser.checkStringToBeParsed | private boolean checkStringToBeParsed(final String pStringToBeParsed) {
// Check for nullness
if (pStringToBeParsed == null) {
if (mDebugging) {
out.println(DebugUtil.getPrefixDebugMessage(this) + "string to be parsed is null - rejection!");
}
return false;
}
// Che... | java | private boolean checkStringToBeParsed(final String pStringToBeParsed) {
// Check for nullness
if (pStringToBeParsed == null) {
if (mDebugging) {
out.println(DebugUtil.getPrefixDebugMessage(this) + "string to be parsed is null - rejection!");
}
return false;
}
// Che... | [
"private",
"boolean",
"checkStringToBeParsed",
"(",
"final",
"String",
"pStringToBeParsed",
")",
"{",
"// Check for nullness\r",
"if",
"(",
"pStringToBeParsed",
"==",
"null",
")",
"{",
"if",
"(",
"mDebugging",
")",
"{",
"out",
".",
"println",
"(",
"DebugUtil",
"... | Simple check of the string to be parsed. | [
"Simple",
"check",
"of",
"the",
"string",
"to",
"be",
"parsed",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/regex/REWildcardStringParser.java#L231-L252 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/regex/REWildcardStringParser.java | REWildcardStringParser.isInAlphabet | public static boolean isInAlphabet(final char pCharToCheck) {
for (int i = 0; i < ALPHABET.length; i++) {
if (pCharToCheck == ALPHABET[i]) {
return true;
}
}
return false;
} | java | public static boolean isInAlphabet(final char pCharToCheck) {
for (int i = 0; i < ALPHABET.length; i++) {
if (pCharToCheck == ALPHABET[i]) {
return true;
}
}
return false;
} | [
"public",
"static",
"boolean",
"isInAlphabet",
"(",
"final",
"char",
"pCharToCheck",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"ALPHABET",
".",
"length",
";",
"i",
"++",
")",
"{",
"if",
"(",
"pCharToCheck",
"==",
"ALPHABET",
"[",
"i"... | Tests if a certain character is a valid character in the alphabet that is applying for this automaton. | [
"Tests",
"if",
"a",
"certain",
"character",
"is",
"a",
"valid",
"character",
"in",
"the",
"alphabet",
"that",
"is",
"applying",
"for",
"this",
"automaton",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/regex/REWildcardStringParser.java#L257-L265 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/CollectionUtil.java | CollectionUtil.main | @SuppressWarnings({"UnusedDeclaration", "UnusedAssignment", "unchecked"})
public static void main(String[] pArgs) {
int howMany = 1000;
if (pArgs.length > 0) {
howMany = Integer.parseInt(pArgs[0]);
}
long start;
long end;
/*
int[] intArr... | java | @SuppressWarnings({"UnusedDeclaration", "UnusedAssignment", "unchecked"})
public static void main(String[] pArgs) {
int howMany = 1000;
if (pArgs.length > 0) {
howMany = Integer.parseInt(pArgs[0]);
}
long start;
long end;
/*
int[] intArr... | [
"@",
"SuppressWarnings",
"(",
"{",
"\"UnusedDeclaration\"",
",",
"\"UnusedAssignment\"",
",",
"\"unchecked\"",
"}",
")",
"public",
"static",
"void",
"main",
"(",
"String",
"[",
"]",
"pArgs",
")",
"{",
"int",
"howMany",
"=",
"1000",
";",
"if",
"(",
"pArgs",
... | Testing only.
@param pArgs command line arguents | [
"Testing",
"only",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/CollectionUtil.java#L58-L205 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/CollectionUtil.java | CollectionUtil.mergeArrays | public static Object mergeArrays(Object pArray1, Object pArray2) {
return mergeArrays(pArray1, 0, Array.getLength(pArray1), pArray2, 0, Array.getLength(pArray2));
} | java | public static Object mergeArrays(Object pArray1, Object pArray2) {
return mergeArrays(pArray1, 0, Array.getLength(pArray1), pArray2, 0, Array.getLength(pArray2));
} | [
"public",
"static",
"Object",
"mergeArrays",
"(",
"Object",
"pArray1",
",",
"Object",
"pArray2",
")",
"{",
"return",
"mergeArrays",
"(",
"pArray1",
",",
"0",
",",
"Array",
".",
"getLength",
"(",
"pArray1",
")",
",",
"pArray2",
",",
"0",
",",
"Array",
"."... | Merges two arrays into a new array. Elements from array1 and array2 will
be copied into a new array, that has array1.length + array2.length
elements.
@param pArray1 First array
@param pArray2 Second array, must be compatible with (assignable from)
the first array
@return A new array, containing the values of array1 an... | [
"Merges",
"two",
"arrays",
"into",
"a",
"new",
"array",
".",
"Elements",
"from",
"array1",
"and",
"array2",
"will",
"be",
"copied",
"into",
"a",
"new",
"array",
"that",
"has",
"array1",
".",
"length",
"+",
"array2",
".",
"length",
"elements",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/CollectionUtil.java#L225-L227 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/CollectionUtil.java | CollectionUtil.mergeArrays | @SuppressWarnings({"SuspiciousSystemArraycopy"})
public static Object mergeArrays(Object pArray1, int pOffset1, int pLength1, Object pArray2, int pOffset2, int pLength2) {
Class class1 = pArray1.getClass();
Class type = class1.getComponentType();
// Create new array of the new length
... | java | @SuppressWarnings({"SuspiciousSystemArraycopy"})
public static Object mergeArrays(Object pArray1, int pOffset1, int pLength1, Object pArray2, int pOffset2, int pLength2) {
Class class1 = pArray1.getClass();
Class type = class1.getComponentType();
// Create new array of the new length
... | [
"@",
"SuppressWarnings",
"(",
"{",
"\"SuspiciousSystemArraycopy\"",
"}",
")",
"public",
"static",
"Object",
"mergeArrays",
"(",
"Object",
"pArray1",
",",
"int",
"pOffset1",
",",
"int",
"pLength1",
",",
"Object",
"pArray2",
",",
"int",
"pOffset2",
",",
"int",
"... | Merges two arrays into a new array. Elements from pArray1 and pArray2 will
be copied into a new array, that has pLength1 + pLength2 elements.
@param pArray1 First array
@param pOffset1 the offset into the first array
@param pLength1 the number of elements to copy from the first array
@param pArray2 Second array, mus... | [
"Merges",
"two",
"arrays",
"into",
"a",
"new",
"array",
".",
"Elements",
"from",
"pArray1",
"and",
"pArray2",
"will",
"be",
"copied",
"into",
"a",
"new",
"array",
"that",
"has",
"pLength1",
"+",
"pLength2",
"elements",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/CollectionUtil.java#L246-L257 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/CollectionUtil.java | CollectionUtil.addAll | public static <E> void addAll(Collection<E> pCollection, Iterator<? extends E> pIterator) {
while (pIterator.hasNext()) {
pCollection.add(pIterator.next());
}
} | java | public static <E> void addAll(Collection<E> pCollection, Iterator<? extends E> pIterator) {
while (pIterator.hasNext()) {
pCollection.add(pIterator.next());
}
} | [
"public",
"static",
"<",
"E",
">",
"void",
"addAll",
"(",
"Collection",
"<",
"E",
">",
"pCollection",
",",
"Iterator",
"<",
"?",
"extends",
"E",
">",
"pIterator",
")",
"{",
"while",
"(",
"pIterator",
".",
"hasNext",
"(",
")",
")",
"{",
"pCollection",
... | Adds all elements of the iterator to the collection.
@param pCollection the collection
@param pIterator the elements to add
@throws UnsupportedOperationException if {@code add} is not supported by
the given collection.
@throws ClassCastException class of the specified element prevents it
from being added to this coll... | [
"Adds",
"all",
"elements",
"of",
"the",
"iterator",
"to",
"the",
"collection",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/CollectionUtil.java#L414-L418 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/service/ServiceRegistry.java | ServiceRegistry.registerSPIs | <T> void registerSPIs(final URL pResource, final Class<T> pCategory, final ClassLoader pLoader) {
Properties classNames = new Properties();
try {
classNames.load(pResource.openStream());
}
catch (IOException e) {
throw new ServiceConfigurationError(e);
... | java | <T> void registerSPIs(final URL pResource, final Class<T> pCategory, final ClassLoader pLoader) {
Properties classNames = new Properties();
try {
classNames.load(pResource.openStream());
}
catch (IOException e) {
throw new ServiceConfigurationError(e);
... | [
"<",
"T",
">",
"void",
"registerSPIs",
"(",
"final",
"URL",
"pResource",
",",
"final",
"Class",
"<",
"T",
">",
"pCategory",
",",
"final",
"ClassLoader",
"pLoader",
")",
"{",
"Properties",
"classNames",
"=",
"new",
"Properties",
"(",
")",
";",
"try",
"{",... | Registers all SPIs listed in the given resource.
@param pResource the resource to load SPIs from
@param pCategory the category class
@param pLoader the class loader to use | [
"Registers",
"all",
"SPIs",
"listed",
"in",
"the",
"given",
"resource",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/service/ServiceRegistry.java#L147-L185 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/service/ServiceRegistry.java | ServiceRegistry.getRegistry | private <T> CategoryRegistry<T> getRegistry(final Class<T> pCategory) {
@SuppressWarnings({"unchecked"})
CategoryRegistry<T> registry = categoryMap.get(pCategory);
if (registry == null) {
throw new IllegalArgumentException("No such category: " + pCategory.getName());
}
... | java | private <T> CategoryRegistry<T> getRegistry(final Class<T> pCategory) {
@SuppressWarnings({"unchecked"})
CategoryRegistry<T> registry = categoryMap.get(pCategory);
if (registry == null) {
throw new IllegalArgumentException("No such category: " + pCategory.getName());
}
... | [
"private",
"<",
"T",
">",
"CategoryRegistry",
"<",
"T",
">",
"getRegistry",
"(",
"final",
"Class",
"<",
"T",
">",
"pCategory",
")",
"{",
"@",
"SuppressWarnings",
"(",
"{",
"\"unchecked\"",
"}",
")",
"CategoryRegistry",
"<",
"T",
">",
"registry",
"=",
"ca... | Gets the category registry for the given category.
@param pCategory the category class
@return the {@code CategoryRegistry} for the given category | [
"Gets",
"the",
"category",
"registry",
"for",
"the",
"given",
"category",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/service/ServiceRegistry.java#L288-L295 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/service/ServiceRegistry.java | ServiceRegistry.register | public boolean register(final Object pProvider) {
Iterator<Class<?>> categories = compatibleCategories(pProvider);
boolean registered = false;
while (categories.hasNext()) {
Class<?> category = categories.next();
if (registerImpl(pProvider, category) && !registered) ... | java | public boolean register(final Object pProvider) {
Iterator<Class<?>> categories = compatibleCategories(pProvider);
boolean registered = false;
while (categories.hasNext()) {
Class<?> category = categories.next();
if (registerImpl(pProvider, category) && !registered) ... | [
"public",
"boolean",
"register",
"(",
"final",
"Object",
"pProvider",
")",
"{",
"Iterator",
"<",
"Class",
"<",
"?",
">",
">",
"categories",
"=",
"compatibleCategories",
"(",
"pProvider",
")",
";",
"boolean",
"registered",
"=",
"false",
";",
"while",
"(",
"... | Registers the given provider for all categories it matches.
@param pProvider the provider instance
@return {@code true} if {@code pProvider} is now registered in
one or more categories it was not registered in before.
@see #compatibleCategories(Object) | [
"Registers",
"the",
"given",
"provider",
"for",
"all",
"categories",
"it",
"matches",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/service/ServiceRegistry.java#L305-L315 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/service/ServiceRegistry.java | ServiceRegistry.register | public <T> boolean register(final T pProvider, final Class<? super T> pCategory) {
return registerImpl(pProvider, pCategory);
} | java | public <T> boolean register(final T pProvider, final Class<? super T> pCategory) {
return registerImpl(pProvider, pCategory);
} | [
"public",
"<",
"T",
">",
"boolean",
"register",
"(",
"final",
"T",
"pProvider",
",",
"final",
"Class",
"<",
"?",
"super",
"T",
">",
"pCategory",
")",
"{",
"return",
"registerImpl",
"(",
"pProvider",
",",
"pCategory",
")",
";",
"}"
] | Registers the given provider for the given category.
@param pProvider the provider instance
@param pCategory the category class
@return {@code true} if {@code pProvider} is now registered in
the given category | [
"Registers",
"the",
"given",
"provider",
"for",
"the",
"given",
"category",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/service/ServiceRegistry.java#L329-L331 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/service/ServiceRegistry.java | ServiceRegistry.deregister | public boolean deregister(final Object pProvider) {
Iterator<Class<?>> categories = containingCategories(pProvider);
boolean deregistered = false;
while (categories.hasNext()) {
Class<?> category = categories.next();
if (deregister(pProvider, category) && !deregist... | java | public boolean deregister(final Object pProvider) {
Iterator<Class<?>> categories = containingCategories(pProvider);
boolean deregistered = false;
while (categories.hasNext()) {
Class<?> category = categories.next();
if (deregister(pProvider, category) && !deregist... | [
"public",
"boolean",
"deregister",
"(",
"final",
"Object",
"pProvider",
")",
"{",
"Iterator",
"<",
"Class",
"<",
"?",
">",
">",
"categories",
"=",
"containingCategories",
"(",
"pProvider",
")",
";",
"boolean",
"deregistered",
"=",
"false",
";",
"while",
"(",... | De-registers the given provider from all categories it's currently
registered in.
@param pProvider the provider instance
@return {@code true} if {@code pProvider} was previously registered in
any category and is now de-registered.
@see #containingCategories(Object) | [
"De",
"-",
"registers",
"the",
"given",
"provider",
"from",
"all",
"categories",
"it",
"s",
"currently",
"registered",
"in",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/service/ServiceRegistry.java#L342-L354 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.isEmpty | public static boolean isEmpty(String[] pStringArray) {
// No elements to test
if (pStringArray == null) {
return true;
}
// Test all the elements
for (String string : pStringArray) {
if (!isEmpty(string)) {
return false;
... | java | public static boolean isEmpty(String[] pStringArray) {
// No elements to test
if (pStringArray == null) {
return true;
}
// Test all the elements
for (String string : pStringArray) {
if (!isEmpty(string)) {
return false;
... | [
"public",
"static",
"boolean",
"isEmpty",
"(",
"String",
"[",
"]",
"pStringArray",
")",
"{",
"// No elements to test\r",
"if",
"(",
"pStringArray",
"==",
"null",
")",
"{",
"return",
"true",
";",
"}",
"// Test all the elements\r",
"for",
"(",
"String",
"string",
... | Tests a string array, to see if all items are null or an empty string.
@param pStringArray The string array to check.
@return true if the string array is null or only contains string items
that are null or contain only whitespace, otherwise false. | [
"Tests",
"a",
"string",
"array",
"to",
"see",
"if",
"all",
"items",
"are",
"null",
"or",
"an",
"empty",
"string",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L167-L182 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.contains | public static boolean contains(String pContainer, String pLookFor) {
return ((pContainer != null) && (pLookFor != null) && (pContainer.indexOf(pLookFor) >= 0));
} | java | public static boolean contains(String pContainer, String pLookFor) {
return ((pContainer != null) && (pLookFor != null) && (pContainer.indexOf(pLookFor) >= 0));
} | [
"public",
"static",
"boolean",
"contains",
"(",
"String",
"pContainer",
",",
"String",
"pLookFor",
")",
"{",
"return",
"(",
"(",
"pContainer",
"!=",
"null",
")",
"&&",
"(",
"pLookFor",
"!=",
"null",
")",
"&&",
"(",
"pContainer",
".",
"indexOf",
"(",
"pLo... | Tests if a string contains another string.
@param pContainer The string to test
@param pLookFor The string to look for
@return {@code true} if the container string is contains the string, and
both parameters are non-{@code null}, otherwise {@code false}. | [
"Tests",
"if",
"a",
"string",
"contains",
"another",
"string",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L192-L194 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.containsIgnoreCase | public static boolean containsIgnoreCase(String pString, int pChar) {
return ((pString != null)
&& ((pString.indexOf(Character.toLowerCase((char) pChar)) >= 0)
|| (pString.indexOf(Character.toUpperCase((char) pChar)) >= 0)));
// NOTE: I don't convert the string to ... | java | public static boolean containsIgnoreCase(String pString, int pChar) {
return ((pString != null)
&& ((pString.indexOf(Character.toLowerCase((char) pChar)) >= 0)
|| (pString.indexOf(Character.toUpperCase((char) pChar)) >= 0)));
// NOTE: I don't convert the string to ... | [
"public",
"static",
"boolean",
"containsIgnoreCase",
"(",
"String",
"pString",
",",
"int",
"pChar",
")",
"{",
"return",
"(",
"(",
"pString",
"!=",
"null",
")",
"&&",
"(",
"(",
"pString",
".",
"indexOf",
"(",
"Character",
".",
"toLowerCase",
"(",
"(",
"ch... | Tests if a string contains a specific character, ignoring case.
@param pString The string to check.
@param pChar The character to search for.
@return true if the string contains the specific character. | [
"Tests",
"if",
"a",
"string",
"contains",
"a",
"specific",
"character",
"ignoring",
"case",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L227-L235 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.indexOfIgnoreCase | public static int indexOfIgnoreCase(String pString, int pChar, int pPos) {
if ((pString == null)) {
return -1;
}
// Get first char
char lower = Character.toLowerCase((char) pChar);
char upper = Character.toUpperCase((char) pChar);
int indexLower;
... | java | public static int indexOfIgnoreCase(String pString, int pChar, int pPos) {
if ((pString == null)) {
return -1;
}
// Get first char
char lower = Character.toLowerCase((char) pChar);
char upper = Character.toUpperCase((char) pChar);
int indexLower;
... | [
"public",
"static",
"int",
"indexOfIgnoreCase",
"(",
"String",
"pString",
",",
"int",
"pChar",
",",
"int",
"pPos",
")",
"{",
"if",
"(",
"(",
"pString",
"==",
"null",
")",
")",
"{",
"return",
"-",
"1",
";",
"}",
"// Get first char\r",
"char",
"lower",
"... | Returns the index within this string of the first occurrence of the
specified character, starting at the specified index.
@param pString The string to test
@param pChar The character to look for
@param pPos The first index to test
@return if the string argument occurs as a substring within this object,
then the i... | [
"Returns",
"the",
"index",
"within",
"this",
"string",
"of",
"the",
"first",
"occurrence",
"of",
"the",
"specified",
"character",
"starting",
"at",
"the",
"specified",
"index",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L465-L496 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.lastIndexOfIgnoreCase | public static int lastIndexOfIgnoreCase(String pString, int pChar) {
return lastIndexOfIgnoreCase(pString, pChar, pString != null ? pString.length() : -1);
} | java | public static int lastIndexOfIgnoreCase(String pString, int pChar) {
return lastIndexOfIgnoreCase(pString, pChar, pString != null ? pString.length() : -1);
} | [
"public",
"static",
"int",
"lastIndexOfIgnoreCase",
"(",
"String",
"pString",
",",
"int",
"pChar",
")",
"{",
"return",
"lastIndexOfIgnoreCase",
"(",
"pString",
",",
"pChar",
",",
"pString",
"!=",
"null",
"?",
"pString",
".",
"length",
"(",
")",
":",
"-",
"... | Returns the index within this string of the last occurrence of the
specified character.
@param pString The string to test
@param pChar The character to look for
@return if the string argument occurs as a substring within this object,
then the index of the first character of the first such substring is
returned; if i... | [
"Returns",
"the",
"index",
"within",
"this",
"string",
"of",
"the",
"last",
"occurrence",
"of",
"the",
"specified",
"character",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L509-L511 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.lastIndexOfIgnoreCase | public static int lastIndexOfIgnoreCase(String pString, int pChar, int pPos) {
if ((pString == null)) {
return -1;
}
// Get first char
char lower = Character.toLowerCase((char) pChar);
char upper = Character.toUpperCase((char) pChar);
int indexLower;
... | java | public static int lastIndexOfIgnoreCase(String pString, int pChar, int pPos) {
if ((pString == null)) {
return -1;
}
// Get first char
char lower = Character.toLowerCase((char) pChar);
char upper = Character.toUpperCase((char) pChar);
int indexLower;
... | [
"public",
"static",
"int",
"lastIndexOfIgnoreCase",
"(",
"String",
"pString",
",",
"int",
"pChar",
",",
"int",
"pPos",
")",
"{",
"if",
"(",
"(",
"pString",
"==",
"null",
")",
")",
"{",
"return",
"-",
"1",
";",
"}",
"// Get first char\r",
"char",
"lower",... | Returns the index within this string of the last occurrence of the
specified character, searching backward starting at the specified index.
@param pString The string to test
@param pChar The character to look for
@param pPos The last index to test
@return if the string argument occurs as a substring within this o... | [
"Returns",
"the",
"index",
"within",
"this",
"string",
"of",
"the",
"last",
"occurrence",
"of",
"the",
"specified",
"character",
"searching",
"backward",
"starting",
"at",
"the",
"specified",
"index",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L525-L556 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.ltrim | public static String ltrim(String pString) {
if ((pString == null) || (pString.length() == 0)) {
return pString;// Null or empty string
}
for (int i = 0; i < pString.length(); i++) {
if (!Character.isWhitespace(pString.charAt(i))) {
if (i == 0) {
... | java | public static String ltrim(String pString) {
if ((pString == null) || (pString.length() == 0)) {
return pString;// Null or empty string
}
for (int i = 0; i < pString.length(); i++) {
if (!Character.isWhitespace(pString.charAt(i))) {
if (i == 0) {
... | [
"public",
"static",
"String",
"ltrim",
"(",
"String",
"pString",
")",
"{",
"if",
"(",
"(",
"pString",
"==",
"null",
")",
"||",
"(",
"pString",
".",
"length",
"(",
")",
"==",
"0",
")",
")",
"{",
"return",
"pString",
";",
"// Null or empty string\r",
"}"... | Trims the argument string for whitespace on the left side only.
@param pString the string to trim
@return the string with no whitespace on the left, or {@code null} if
the string argument is {@code null}.
@see #rtrim
@see String#trim() | [
"Trims",
"the",
"argument",
"string",
"for",
"whitespace",
"on",
"the",
"left",
"side",
"only",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L567-L584 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.replace | public static String replace(String pSource, String pPattern, String pReplace) {
if (pPattern.length() == 0) {
return pSource;// Special case: No pattern to replace
}
int match;
int offset = 0;
StringBuilder result = new StringBuilder();
// Loop str... | java | public static String replace(String pSource, String pPattern, String pReplace) {
if (pPattern.length() == 0) {
return pSource;// Special case: No pattern to replace
}
int match;
int offset = 0;
StringBuilder result = new StringBuilder();
// Loop str... | [
"public",
"static",
"String",
"replace",
"(",
"String",
"pSource",
",",
"String",
"pPattern",
",",
"String",
"pReplace",
")",
"{",
"if",
"(",
"pPattern",
".",
"length",
"(",
")",
"==",
"0",
")",
"{",
"return",
"pSource",
";",
"// Special case: No pattern to ... | Replaces a substring of a string with another string. All matches are
replaced.
@param pSource The source String
@param pPattern The pattern to replace
@param pReplace The new String to be inserted instead of the
replace String
@return The new String with the pattern replaced | [
"Replaces",
"a",
"substring",
"of",
"a",
"string",
"with",
"another",
"string",
".",
"All",
"matches",
"are",
"replaced",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L624-L646 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.replaceIgnoreCase | public static String replaceIgnoreCase(String pSource, String pPattern, String pReplace) {
if (pPattern.length() == 0) {
return pSource;// Special case: No pattern to replace
}
int match;
int offset = 0;
StringBuilder result = new StringBuilder();
whi... | java | public static String replaceIgnoreCase(String pSource, String pPattern, String pReplace) {
if (pPattern.length() == 0) {
return pSource;// Special case: No pattern to replace
}
int match;
int offset = 0;
StringBuilder result = new StringBuilder();
whi... | [
"public",
"static",
"String",
"replaceIgnoreCase",
"(",
"String",
"pSource",
",",
"String",
"pPattern",
",",
"String",
"pReplace",
")",
"{",
"if",
"(",
"pPattern",
".",
"length",
"(",
")",
"==",
"0",
")",
"{",
"return",
"pSource",
";",
"// Special case: No p... | Replaces a substring of a string with another string, ignoring case.
All matches are replaced.
@param pSource The source String
@param pPattern The pattern to replace
@param pReplace The new String to be inserted instead of the
replace String
@return The new String with the pattern replaced
@see #replace(String,Strin... | [
"Replaces",
"a",
"substring",
"of",
"a",
"string",
"with",
"another",
"string",
"ignoring",
"case",
".",
"All",
"matches",
"are",
"replaced",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L659-L674 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.capitalize | public static String capitalize(String pString, int pIndex) {
if (pIndex < 0) {
throw new IndexOutOfBoundsException("Negative index not allowed: " + pIndex);
}
if (pString == null || pString.length() <= pIndex) {
return pString;
}
// This is the f... | java | public static String capitalize(String pString, int pIndex) {
if (pIndex < 0) {
throw new IndexOutOfBoundsException("Negative index not allowed: " + pIndex);
}
if (pString == null || pString.length() <= pIndex) {
return pString;
}
// This is the f... | [
"public",
"static",
"String",
"capitalize",
"(",
"String",
"pString",
",",
"int",
"pIndex",
")",
"{",
"if",
"(",
"pIndex",
"<",
"0",
")",
"{",
"throw",
"new",
"IndexOutOfBoundsException",
"(",
"\"Negative index not allowed: \"",
"+",
"pIndex",
")",
";",
"}",
... | Makes the Nth letter of a String uppercase. If the index is outside the
the length of the argument string, the argument is simply returned.
@param pString The string to capitalize
@param pIndex The base-0 index of the char to capitalize.
@return The capitalized string, or null, if a null argument was given. | [
"Makes",
"the",
"Nth",
"letter",
"of",
"a",
"String",
"uppercase",
".",
"If",
"the",
"index",
"is",
"outside",
"the",
"the",
"length",
"of",
"the",
"argument",
"string",
"the",
"argument",
"is",
"simply",
"returned",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L717-L748 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.pad | public static String pad(String pSource, int pRequiredLength, String pPadString, boolean pPrepend) {
if (pPadString == null || pPadString.length() == 0) {
throw new IllegalArgumentException("Pad string: \"" + pPadString + "\"");
}
if (pSource.length() >= pRequiredLength) {
... | java | public static String pad(String pSource, int pRequiredLength, String pPadString, boolean pPrepend) {
if (pPadString == null || pPadString.length() == 0) {
throw new IllegalArgumentException("Pad string: \"" + pPadString + "\"");
}
if (pSource.length() >= pRequiredLength) {
... | [
"public",
"static",
"String",
"pad",
"(",
"String",
"pSource",
",",
"int",
"pRequiredLength",
",",
"String",
"pPadString",
",",
"boolean",
"pPrepend",
")",
"{",
"if",
"(",
"pPadString",
"==",
"null",
"||",
"pPadString",
".",
"length",
"(",
")",
"==",
"0",
... | String length check with simple concatenation of selected pad-string.
E.g. a zip number from 123 to the correct 0123.
@param pSource The source string.
@param pRequiredLength The accurate length of the resulting string.
@param pPadString The string for concatenation.
@param pPrepend The location of... | [
"String",
"length",
"check",
"with",
"simple",
"concatenation",
"of",
"selected",
"pad",
"-",
"string",
".",
"E",
".",
"g",
".",
"a",
"zip",
"number",
"from",
"123",
"to",
"the",
"correct",
"0123",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L805-L855 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.toStringArray | public static String[] toStringArray(String pString, String pDelimiters) {
if (isEmpty(pString)) {
return new String[0];
}
StringTokenIterator st = new StringTokenIterator(pString, pDelimiters);
List<String> v = new ArrayList<String>();
while (st.hasMoreElem... | java | public static String[] toStringArray(String pString, String pDelimiters) {
if (isEmpty(pString)) {
return new String[0];
}
StringTokenIterator st = new StringTokenIterator(pString, pDelimiters);
List<String> v = new ArrayList<String>();
while (st.hasMoreElem... | [
"public",
"static",
"String",
"[",
"]",
"toStringArray",
"(",
"String",
"pString",
",",
"String",
"pDelimiters",
")",
"{",
"if",
"(",
"isEmpty",
"(",
"pString",
")",
")",
"{",
"return",
"new",
"String",
"[",
"0",
"]",
";",
"}",
"StringTokenIterator",
"st... | Converts a delimiter separated String to an array of Strings.
@param pString The comma-separated string
@param pDelimiters The delimiter string
@return a {@code String} array containing the delimiter separated elements | [
"Converts",
"a",
"delimiter",
"separated",
"String",
"to",
"an",
"array",
"of",
"Strings",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L930-L943 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.toIntArray | public static int[] toIntArray(String pString, String pDelimiters, int pBase) {
if (isEmpty(pString)) {
return new int[0];
}
// Some room for improvement here...
String[] temp = toStringArray(pString, pDelimiters);
int[] array = new int[temp.length];
... | java | public static int[] toIntArray(String pString, String pDelimiters, int pBase) {
if (isEmpty(pString)) {
return new int[0];
}
// Some room for improvement here...
String[] temp = toStringArray(pString, pDelimiters);
int[] array = new int[temp.length];
... | [
"public",
"static",
"int",
"[",
"]",
"toIntArray",
"(",
"String",
"pString",
",",
"String",
"pDelimiters",
",",
"int",
"pBase",
")",
"{",
"if",
"(",
"isEmpty",
"(",
"pString",
")",
")",
"{",
"return",
"new",
"int",
"[",
"0",
"]",
";",
"}",
"// Some r... | Converts a comma-separated String to an array of ints.
@param pString The comma-separated string
@param pDelimiters The delimiter string
@param pBase The radix
@return an {@code int} array
@throws NumberFormatException if any of the elements are not parseable
as an int | [
"Converts",
"a",
"comma",
"-",
"separated",
"String",
"to",
"an",
"array",
"of",
"ints",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L966-L979 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.toLongArray | public static long[] toLongArray(String pString, String pDelimiters) {
if (isEmpty(pString)) {
return new long[0];
}
// Some room for improvement here...
String[] temp = toStringArray(pString, pDelimiters);
long[] array = new long[temp.length];
for ... | java | public static long[] toLongArray(String pString, String pDelimiters) {
if (isEmpty(pString)) {
return new long[0];
}
// Some room for improvement here...
String[] temp = toStringArray(pString, pDelimiters);
long[] array = new long[temp.length];
for ... | [
"public",
"static",
"long",
"[",
"]",
"toLongArray",
"(",
"String",
"pString",
",",
"String",
"pDelimiters",
")",
"{",
"if",
"(",
"isEmpty",
"(",
"pString",
")",
")",
"{",
"return",
"new",
"long",
"[",
"0",
"]",
";",
"}",
"// Some room for improvement here... | Converts a comma-separated String to an array of longs.
@param pString The comma-separated string
@param pDelimiters The delimiter string
@return a {@code long} array
@throws NumberFormatException if any of the elements are not parseable
as a long | [
"Converts",
"a",
"comma",
"-",
"separated",
"String",
"to",
"an",
"array",
"of",
"longs",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L1018-L1031 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.toDoubleArray | public static double[] toDoubleArray(String pString, String pDelimiters) {
if (isEmpty(pString)) {
return new double[0];
}
// Some room for improvement here...
String[] temp = toStringArray(pString, pDelimiters);
double[] array = new double[temp.length];
... | java | public static double[] toDoubleArray(String pString, String pDelimiters) {
if (isEmpty(pString)) {
return new double[0];
}
// Some room for improvement here...
String[] temp = toStringArray(pString, pDelimiters);
double[] array = new double[temp.length];
... | [
"public",
"static",
"double",
"[",
"]",
"toDoubleArray",
"(",
"String",
"pString",
",",
"String",
"pDelimiters",
")",
"{",
"if",
"(",
"isEmpty",
"(",
"pString",
")",
")",
"{",
"return",
"new",
"double",
"[",
"0",
"]",
";",
"}",
"// Some room for improvemen... | Converts a comma-separated String to an array of doubles.
@param pString The comma-separated string
@param pDelimiters The delimiter string
@return a {@code double} array
@throws NumberFormatException if any of the elements are not parseable
as a double | [
"Converts",
"a",
"comma",
"-",
"separated",
"String",
"to",
"an",
"array",
"of",
"doubles",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L1056-L1071 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java | StringUtil.toCSVString | public static String toCSVString(Object[] pStringArray, String pDelimiterString) {
if (pStringArray == null) {
return "";
}
if (pDelimiterString == null) {
throw new IllegalArgumentException("delimiter == null");
}
StringBuilder buffer = new Strin... | java | public static String toCSVString(Object[] pStringArray, String pDelimiterString) {
if (pStringArray == null) {
return "";
}
if (pDelimiterString == null) {
throw new IllegalArgumentException("delimiter == null");
}
StringBuilder buffer = new Strin... | [
"public",
"static",
"String",
"toCSVString",
"(",
"Object",
"[",
"]",
"pStringArray",
",",
"String",
"pDelimiterString",
")",
"{",
"if",
"(",
"pStringArray",
"==",
"null",
")",
"{",
"return",
"\"\"",
";",
"}",
"if",
"(",
"pDelimiterString",
"==",
"null",
"... | Converts a string array to a string separated by the given delimiter.
@param pStringArray the string array
@param pDelimiterString the delimiter string
@return string of delimiter separated values
@throws IllegalArgumentException if {@code pDelimiterString == null} | [
"Converts",
"a",
"string",
"array",
"to",
"a",
"string",
"separated",
"by",
"the",
"given",
"delimiter",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java#L1589-L1607 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/lang/NativeLoader.java | NativeLoader.loadLibrary0 | static void loadLibrary0(String pLibrary, String pResource, ClassLoader pLoader) {
if (pLibrary == null) {
throw new IllegalArgumentException("library == null");
}
// Try loading normal way
UnsatisfiedLinkError unsatisfied;
try {
System.loadLibrar... | java | static void loadLibrary0(String pLibrary, String pResource, ClassLoader pLoader) {
if (pLibrary == null) {
throw new IllegalArgumentException("library == null");
}
// Try loading normal way
UnsatisfiedLinkError unsatisfied;
try {
System.loadLibrar... | [
"static",
"void",
"loadLibrary0",
"(",
"String",
"pLibrary",
",",
"String",
"pResource",
",",
"ClassLoader",
"pLoader",
")",
"{",
"if",
"(",
"pLibrary",
"==",
"null",
")",
"{",
"throw",
"new",
"IllegalArgumentException",
"(",
"\"library == null\"",
")",
";",
"... | Loads a native library.
@param pLibrary name of the library
@param pResource name of the resource
@param pLoader the class loader to use
@throws UnsatisfiedLinkError | [
"Loads",
"a",
"native",
"library",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/lang/NativeLoader.java#L230-L276 | train |
haraldk/TwelveMonkeys | imageio/imageio-metadata/src/main/java/com/twelvemonkeys/imageio/metadata/tiff/Rational.java | Rational.plus | public Rational plus(final Rational pOther) {
// special cases
if (equals(ZERO)) {
return pOther;
}
if (pOther.equals(ZERO)) {
return this;
}
// Find gcd of numerators and denominators
long f = gcd(numerator, pOther.numerator);
lon... | java | public Rational plus(final Rational pOther) {
// special cases
if (equals(ZERO)) {
return pOther;
}
if (pOther.equals(ZERO)) {
return this;
}
// Find gcd of numerators and denominators
long f = gcd(numerator, pOther.numerator);
lon... | [
"public",
"Rational",
"plus",
"(",
"final",
"Rational",
"pOther",
")",
"{",
"// special cases",
"if",
"(",
"equals",
"(",
"ZERO",
")",
")",
"{",
"return",
"pOther",
";",
"}",
"if",
"(",
"pOther",
".",
"equals",
"(",
"ZERO",
")",
")",
"{",
"return",
"... | return a + b, staving off overflow | [
"return",
"a",
"+",
"b",
"staving",
"off",
"overflow"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-metadata/src/main/java/com/twelvemonkeys/imageio/metadata/tiff/Rational.java#L187-L206 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/droplet/Param.java | Param.service | public void service(PageContext pContext)
throws ServletException, IOException {
JspWriter writer = pContext.getOut();
writer.print(value);
} | java | public void service(PageContext pContext)
throws ServletException, IOException {
JspWriter writer = pContext.getOut();
writer.print(value);
} | [
"public",
"void",
"service",
"(",
"PageContext",
"pContext",
")",
"throws",
"ServletException",
",",
"IOException",
"{",
"JspWriter",
"writer",
"=",
"pContext",
".",
"getOut",
"(",
")",
";",
"writer",
".",
"print",
"(",
"value",
")",
";",
"}"
] | Services the page fragment. This version simply prints the value of
this parameter to teh PageContext's out. | [
"Services",
"the",
"page",
"fragment",
".",
"This",
"version",
"simply",
"prints",
"the",
"value",
"of",
"this",
"parameter",
"to",
"teh",
"PageContext",
"s",
"out",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/droplet/Param.java#L36-L40 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/TimeFormat.java | TimeFormat.main | static void main(String[] argv) {
Time time = null;
TimeFormat in = null;
TimeFormat out = null;
if (argv.length >= 3) {
System.out.println("Creating out TimeFormat: \"" + argv[2] + "\"");
out = new TimeFormat(argv[2]);
}
if (argv.length >= 2) {
System.out.println("Creating in TimeForm... | java | static void main(String[] argv) {
Time time = null;
TimeFormat in = null;
TimeFormat out = null;
if (argv.length >= 3) {
System.out.println("Creating out TimeFormat: \"" + argv[2] + "\"");
out = new TimeFormat(argv[2]);
}
if (argv.length >= 2) {
System.out.println("Creating in TimeForm... | [
"static",
"void",
"main",
"(",
"String",
"[",
"]",
"argv",
")",
"{",
"Time",
"time",
"=",
"null",
";",
"TimeFormat",
"in",
"=",
"null",
";",
"TimeFormat",
"out",
"=",
"null",
";",
"if",
"(",
"argv",
".",
"length",
">=",
"3",
")",
"{",
"System",
"... | Main method for testing ONLY | [
"Main",
"method",
"for",
"testing",
"ONLY"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/TimeFormat.java#L96-L128 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/TimeFormat.java | TimeFormat.format | public String format(Time pTime) {
StringBuilder buf = new StringBuilder();
for (int i = 0; i < formatter.length; i++) {
buf.append(formatter[i].format(pTime));
}
return buf.toString();
} | java | public String format(Time pTime) {
StringBuilder buf = new StringBuilder();
for (int i = 0; i < formatter.length; i++) {
buf.append(formatter[i].format(pTime));
}
return buf.toString();
} | [
"public",
"String",
"format",
"(",
"Time",
"pTime",
")",
"{",
"StringBuilder",
"buf",
"=",
"new",
"StringBuilder",
"(",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"formatter",
".",
"length",
";",
"i",
"++",
")",
"{",
"buf",
".",
"... | Formats the the given time, using this format. | [
"Formats",
"the",
"the",
"given",
"time",
"using",
"this",
"format",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/TimeFormat.java#L251-L257 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/cache/HTTPCache.java | HTTPCache.registerContent | void registerContent(
final String pCacheURI,
final CacheRequest pRequest,
final CachedResponse pCachedResponse
) throws IOException {
// System.out.println(" ## HTTPCache ## Registering content for " + pCacheURI);
// pRequest.removeAttribute(ATTRIB_IS_STAL... | java | void registerContent(
final String pCacheURI,
final CacheRequest pRequest,
final CachedResponse pCachedResponse
) throws IOException {
// System.out.println(" ## HTTPCache ## Registering content for " + pCacheURI);
// pRequest.removeAttribute(ATTRIB_IS_STAL... | [
"void",
"registerContent",
"(",
"final",
"String",
"pCacheURI",
",",
"final",
"CacheRequest",
"pRequest",
",",
"final",
"CachedResponse",
"pCachedResponse",
")",
"throws",
"IOException",
"{",
"// System.out.println(\" ## HTTPCache ## Registering content for \" + pCacheURI);\r",
... | Registers content for the given URI in the cache.
@param pCacheURI the cache URI
@param pRequest the request
@param pCachedResponse the cached response
@throws IOException if the content could not be cached | [
"Registers",
"content",
"for",
"the",
"given",
"URI",
"in",
"the",
"cache",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/cache/HTTPCache.java#L736-L846 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/cache/HTTPCache.java | HTTPCache.getDateHeader | static long getDateHeader(final String pHeaderValue) {
long date = -1L;
if (pHeaderValue != null) {
date = HTTPUtil.parseHTTPDate(pHeaderValue);
}
return date;
} | java | static long getDateHeader(final String pHeaderValue) {
long date = -1L;
if (pHeaderValue != null) {
date = HTTPUtil.parseHTTPDate(pHeaderValue);
}
return date;
} | [
"static",
"long",
"getDateHeader",
"(",
"final",
"String",
"pHeaderValue",
")",
"{",
"long",
"date",
"=",
"-",
"1L",
";",
"if",
"(",
"pHeaderValue",
"!=",
"null",
")",
"{",
"date",
"=",
"HTTPUtil",
".",
"parseHTTPDate",
"(",
"pHeaderValue",
")",
";",
"}"... | Utility to read a date header from a cached response.
@param pHeaderValue the header value
@return the parsed date as a long, or {@code -1L} if not found
@see javax.servlet.http.HttpServletRequest#getDateHeader(String) | [
"Utility",
"to",
"read",
"a",
"date",
"header",
"from",
"a",
"cached",
"response",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/cache/HTTPCache.java#L1084-L1090 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/ColorServlet.java | ColorServlet.service | public void service(ServletRequest pRequest, ServletResponse pResponse) throws IOException, ServletException {
int red = 0;
int green = 0;
int blue = 0;
// Get color parameter and parse color
String rgb = pRequest.getParameter(RGB_PARAME);
if (rgb != null && rgb.l... | java | public void service(ServletRequest pRequest, ServletResponse pResponse) throws IOException, ServletException {
int red = 0;
int green = 0;
int blue = 0;
// Get color parameter and parse color
String rgb = pRequest.getParameter(RGB_PARAME);
if (rgb != null && rgb.l... | [
"public",
"void",
"service",
"(",
"ServletRequest",
"pRequest",
",",
"ServletResponse",
"pResponse",
")",
"throws",
"IOException",
",",
"ServletException",
"{",
"int",
"red",
"=",
"0",
";",
"int",
"green",
"=",
"0",
";",
"int",
"blue",
"=",
"0",
";",
"// G... | Renders the 1 x 1 single color PNG to the response.
@see ColorServlet class description
@param pRequest the request
@param pResponse the response
@throws IOException
@throws ServletException | [
"Renders",
"the",
"1",
"x",
"1",
"single",
"color",
"PNG",
"to",
"the",
"response",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/ColorServlet.java#L112-L162 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/ServletUtil.java | ServletUtil.getParameter | public static String getParameter(final ServletRequest pReq, final String pName, final String pDefault) {
String str = pReq.getParameter(pName);
return str != null ? str : pDefault;
} | java | public static String getParameter(final ServletRequest pReq, final String pName, final String pDefault) {
String str = pReq.getParameter(pName);
return str != null ? str : pDefault;
} | [
"public",
"static",
"String",
"getParameter",
"(",
"final",
"ServletRequest",
"pReq",
",",
"final",
"String",
"pName",
",",
"final",
"String",
"pDefault",
")",
"{",
"String",
"str",
"=",
"pReq",
".",
"getParameter",
"(",
"pName",
")",
";",
"return",
"str",
... | Gets the value of the given parameter from the request, or if the
parameter is not set, the default value.
@param pReq the servlet request
@param pName the parameter name
@param pDefault the default value
@return the value of the parameter, or the default value, if the
parameter is not set. | [
"Gets",
"the",
"value",
"of",
"the",
"given",
"parameter",
"from",
"the",
"request",
"or",
"if",
"the",
"parameter",
"is",
"not",
"set",
"the",
"default",
"value",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/ServletUtil.java#L128-L132 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/ServletUtil.java | ServletUtil.getParameter | static <T> T getParameter(final ServletRequest pReq, final String pName, final Class<T> pType, final String pFormat, final T pDefault) {
// Test if pDefault is either null or instance of pType
if (pDefault != null && !pType.isInstance(pDefault)) {
throw new IllegalArgumentException("defau... | java | static <T> T getParameter(final ServletRequest pReq, final String pName, final Class<T> pType, final String pFormat, final T pDefault) {
// Test if pDefault is either null or instance of pType
if (pDefault != null && !pType.isInstance(pDefault)) {
throw new IllegalArgumentException("defau... | [
"static",
"<",
"T",
">",
"T",
"getParameter",
"(",
"final",
"ServletRequest",
"pReq",
",",
"final",
"String",
"pName",
",",
"final",
"Class",
"<",
"T",
">",
"pType",
",",
"final",
"String",
"pFormat",
",",
"final",
"T",
"pDefault",
")",
"{",
"// Test if ... | Gets the value of the given parameter from the request converted to
an Object. If the parameter is not set or not parseable, the default
value is returned.
@param pReq the servlet request
@param pName the parameter name
@param pType the type of object (class) to return
@param pFormat the format to use (migh... | [
"Gets",
"the",
"value",
"of",
"the",
"given",
"parameter",
"from",
"the",
"request",
"converted",
"to",
"an",
"Object",
".",
"If",
"the",
"parameter",
"is",
"not",
"set",
"or",
"not",
"parseable",
"the",
"default",
"value",
"is",
"returned",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/ServletUtil.java#L153-L171 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/ServletUtil.java | ServletUtil.getScriptName | static String getScriptName(final HttpServletRequest pRequest) {
String requestURI = pRequest.getRequestURI();
return StringUtil.getLastElement(requestURI, "/");
} | java | static String getScriptName(final HttpServletRequest pRequest) {
String requestURI = pRequest.getRequestURI();
return StringUtil.getLastElement(requestURI, "/");
} | [
"static",
"String",
"getScriptName",
"(",
"final",
"HttpServletRequest",
"pRequest",
")",
"{",
"String",
"requestURI",
"=",
"pRequest",
".",
"getRequestURI",
"(",
")",
";",
"return",
"StringUtil",
".",
"getLastElement",
"(",
"requestURI",
",",
"\"/\"",
")",
";",... | Gets the name of the servlet or the script that generated the servlet.
@param pRequest The HTTP servlet request object.
@return the script name.
@todo Read the spec, seems to be a mismatch with the Servlet API...
@see javax.servlet.http.HttpServletRequest#getServletPath() | [
"Gets",
"the",
"name",
"of",
"the",
"servlet",
"or",
"the",
"script",
"that",
"generated",
"the",
"servlet",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/ServletUtil.java#L519-L522 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/ServletUtil.java | ServletUtil.getSessionId | public static String getSessionId(final HttpServletRequest pRequest) {
HttpSession session = pRequest.getSession();
return (session != null) ? session.getId() : null;
} | java | public static String getSessionId(final HttpServletRequest pRequest) {
HttpSession session = pRequest.getSession();
return (session != null) ? session.getId() : null;
} | [
"public",
"static",
"String",
"getSessionId",
"(",
"final",
"HttpServletRequest",
"pRequest",
")",
"{",
"HttpSession",
"session",
"=",
"pRequest",
".",
"getSession",
"(",
")",
";",
"return",
"(",
"session",
"!=",
"null",
")",
"?",
"session",
".",
"getId",
"(... | Gets the unique identifier assigned to this session.
The identifier is assigned by the servlet container and is implementation
dependent.
@param pRequest The HTTP servlet request object.
@return the session Id | [
"Gets",
"the",
"unique",
"identifier",
"assigned",
"to",
"this",
"session",
".",
"The",
"identifier",
"is",
"assigned",
"by",
"the",
"servlet",
"container",
"and",
"is",
"implementation",
"dependent",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/ServletUtil.java#L588-L592 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/IgnoreCaseMap.java | IgnoreCaseMap.toUpper | protected static Object toUpper(final Object pObject) {
if (pObject instanceof String) {
return ((String) pObject).toUpperCase();
}
return pObject;
} | java | protected static Object toUpper(final Object pObject) {
if (pObject instanceof String) {
return ((String) pObject).toUpperCase();
}
return pObject;
} | [
"protected",
"static",
"Object",
"toUpper",
"(",
"final",
"Object",
"pObject",
")",
"{",
"if",
"(",
"pObject",
"instanceof",
"String",
")",
"{",
"return",
"(",
"(",
"String",
")",
"pObject",
")",
".",
"toUpperCase",
"(",
")",
";",
"}",
"return",
"pObject... | Converts the parameter to uppercase, if it's a String. | [
"Converts",
"the",
"parameter",
"to",
"uppercase",
"if",
"it",
"s",
"a",
"String",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/IgnoreCaseMap.java#L160-L165 | train |
haraldk/TwelveMonkeys | imageio/imageio-metadata/src/main/java/com/twelvemonkeys/imageio/metadata/xmp/XMPScanner.java | XMPScanner.scanForSequence | private static long scanForSequence(final ImageInputStream pStream, final byte[] pSequence) throws IOException {
long start = -1l;
int index = 0;
int nullBytes = 0;
for (int read; (read = pStream.read()) >= 0;) {
if (pSequence[index] == (byte) read) {
// If ... | java | private static long scanForSequence(final ImageInputStream pStream, final byte[] pSequence) throws IOException {
long start = -1l;
int index = 0;
int nullBytes = 0;
for (int read; (read = pStream.read()) >= 0;) {
if (pSequence[index] == (byte) read) {
// If ... | [
"private",
"static",
"long",
"scanForSequence",
"(",
"final",
"ImageInputStream",
"pStream",
",",
"final",
"byte",
"[",
"]",
"pSequence",
")",
"throws",
"IOException",
"{",
"long",
"start",
"=",
"-",
"1l",
";",
"int",
"index",
"=",
"0",
";",
"int",
"nullBy... | Scans for a given ASCII sequence.
@param pStream the stream to scan
@param pSequence the byte sequence to search for
@return the start position of the given sequence.
@throws IOException if an I/O exception occurs during scanning | [
"Scans",
"for",
"a",
"given",
"ASCII",
"sequence",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-metadata/src/main/java/com/twelvemonkeys/imageio/metadata/xmp/XMPScanner.java#L185-L223 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/SystemUtil.java | SystemUtil.getResourceAsStream | private static InputStream getResourceAsStream(ClassLoader pClassLoader, String pName, boolean pGuessSuffix) {
InputStream is;
if (!pGuessSuffix) {
is = pClassLoader.getResourceAsStream(pName);
// If XML, wrap stream
if (is != null && pName.endsWith(XML_PROPE... | java | private static InputStream getResourceAsStream(ClassLoader pClassLoader, String pName, boolean pGuessSuffix) {
InputStream is;
if (!pGuessSuffix) {
is = pClassLoader.getResourceAsStream(pName);
// If XML, wrap stream
if (is != null && pName.endsWith(XML_PROPE... | [
"private",
"static",
"InputStream",
"getResourceAsStream",
"(",
"ClassLoader",
"pClassLoader",
",",
"String",
"pName",
",",
"boolean",
"pGuessSuffix",
")",
"{",
"InputStream",
"is",
";",
"if",
"(",
"!",
"pGuessSuffix",
")",
"{",
"is",
"=",
"pClassLoader",
".",
... | Gets the named resource as a stream from the given Class' Classoader.
If the pGuessSuffix parameter is true, the method will try to append
typical properties file suffixes, such as ".properties" or ".xml".
@param pClassLoader the class loader to use
@param pName name of the resource
@param pGuessSuffix guess suffix
@... | [
"Gets",
"the",
"named",
"resource",
"as",
"a",
"stream",
"from",
"the",
"given",
"Class",
"Classoader",
".",
"If",
"the",
"pGuessSuffix",
"parameter",
"is",
"true",
"the",
"method",
"will",
"try",
"to",
"append",
"typical",
"properties",
"file",
"suffixes",
... | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/SystemUtil.java#L84-L112 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/SystemUtil.java | SystemUtil.getFileAsStream | private static InputStream getFileAsStream(String pName, boolean pGuessSuffix) {
InputStream is = null;
File propertiesFile;
try {
if (!pGuessSuffix) {
// Get file
propertiesFile = new File(pName);
if (propertiesFile.exists(... | java | private static InputStream getFileAsStream(String pName, boolean pGuessSuffix) {
InputStream is = null;
File propertiesFile;
try {
if (!pGuessSuffix) {
// Get file
propertiesFile = new File(pName);
if (propertiesFile.exists(... | [
"private",
"static",
"InputStream",
"getFileAsStream",
"(",
"String",
"pName",
",",
"boolean",
"pGuessSuffix",
")",
"{",
"InputStream",
"is",
"=",
"null",
";",
"File",
"propertiesFile",
";",
"try",
"{",
"if",
"(",
"!",
"pGuessSuffix",
")",
"{",
"// Get file \r... | Gets the named file as a stream from the current directory.
If the pGuessSuffix parameter is true, the method will try to append
typical properties file suffixes, such as ".properties" or ".xml".
@param pName name of the resource
@param pGuessSuffix guess suffix
@return an input stream reading from the resource | [
"Gets",
"the",
"named",
"file",
"as",
"a",
"stream",
"from",
"the",
"current",
"directory",
".",
"If",
"the",
"pGuessSuffix",
"parameter",
"is",
"true",
"the",
"method",
"will",
"try",
"to",
"append",
"typical",
"properties",
"file",
"suffixes",
"such",
"as"... | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/SystemUtil.java#L124-L167 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/SystemUtil.java | SystemUtil.loadProperties | private static Properties loadProperties(InputStream pInput)
throws IOException {
if (pInput == null) {
throw new IllegalArgumentException("InputStream == null!");
}
Properties mapping = new Properties();
/*if (pInput instanceof XMLPropertiesInputStream) {
... | java | private static Properties loadProperties(InputStream pInput)
throws IOException {
if (pInput == null) {
throw new IllegalArgumentException("InputStream == null!");
}
Properties mapping = new Properties();
/*if (pInput instanceof XMLPropertiesInputStream) {
... | [
"private",
"static",
"Properties",
"loadProperties",
"(",
"InputStream",
"pInput",
")",
"throws",
"IOException",
"{",
"if",
"(",
"pInput",
"==",
"null",
")",
"{",
"throw",
"new",
"IllegalArgumentException",
"(",
"\"InputStream == null!\"",
")",
";",
"}",
"Properti... | Returns a Properties, loaded from the given inputstream. If the given
inputstream is null, then an empty Properties object is returned.
@param pInput the inputstream to read from
@return a Properties object read from the given stream, or an empty
Properties mapping, if the stream is null.
@throws IOException if an e... | [
"Returns",
"a",
"Properties",
"loaded",
"from",
"the",
"given",
"inputstream",
".",
"If",
"the",
"given",
"inputstream",
"is",
"null",
"then",
"an",
"empty",
"Properties",
"object",
"is",
"returned",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/SystemUtil.java#L405-L424 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/StringTokenIterator.java | StringTokenIterator.initMaxDelimiter | private static char initMaxDelimiter(char[] pDelimiters) {
if (pDelimiters == null) {
return 0;
}
char max = 0;
for (char c : pDelimiters) {
if (max < c) {
max = c;
}
}
return max;
} | java | private static char initMaxDelimiter(char[] pDelimiters) {
if (pDelimiters == null) {
return 0;
}
char max = 0;
for (char c : pDelimiters) {
if (max < c) {
max = c;
}
}
return max;
} | [
"private",
"static",
"char",
"initMaxDelimiter",
"(",
"char",
"[",
"]",
"pDelimiters",
")",
"{",
"if",
"(",
"pDelimiters",
"==",
"null",
")",
"{",
"return",
"0",
";",
"}",
"char",
"max",
"=",
"0",
";",
"for",
"(",
"char",
"c",
":",
"pDelimiters",
")"... | Returns the highest char in the delimiter set.
@param pDelimiters the delimiter set
@return the highest char | [
"Returns",
"the",
"highest",
"char",
"in",
"the",
"delimiter",
"set",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/StringTokenIterator.java#L169-L182 | train |
haraldk/TwelveMonkeys | imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTImageReader.java | PICTImageReader.getPICTFrame | private Rectangle getPICTFrame() throws IOException {
if (frame == null) {
// Read in header information
readPICTHeader(imageInput);
if (DEBUG) {
System.out.println("Done reading PICT header!");
}
}
return frame;
} | java | private Rectangle getPICTFrame() throws IOException {
if (frame == null) {
// Read in header information
readPICTHeader(imageInput);
if (DEBUG) {
System.out.println("Done reading PICT header!");
}
}
return frame;
} | [
"private",
"Rectangle",
"getPICTFrame",
"(",
")",
"throws",
"IOException",
"{",
"if",
"(",
"frame",
"==",
"null",
")",
"{",
"// Read in header information",
"readPICTHeader",
"(",
"imageInput",
")",
";",
"if",
"(",
"DEBUG",
")",
"{",
"System",
".",
"out",
".... | Open and read the frame size of the PICT file.
@return return the PICT frame
@throws IOException if an I/O error occurs while reading the image. | [
"Open",
"and",
"read",
"the",
"frame",
"size",
"of",
"the",
"PICT",
"file",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTImageReader.java#L150-L161 | train |
haraldk/TwelveMonkeys | imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTImageReader.java | PICTImageReader.readPICTHeader | private void readPICTHeader(final ImageInputStream pStream) throws IOException {
pStream.seek(0l);
try {
readPICTHeader0(pStream);
}
catch (IIOException e) {
// Rest and try again
pStream.seek(0l);
// Skip first 512 bytes
PICT... | java | private void readPICTHeader(final ImageInputStream pStream) throws IOException {
pStream.seek(0l);
try {
readPICTHeader0(pStream);
}
catch (IIOException e) {
// Rest and try again
pStream.seek(0l);
// Skip first 512 bytes
PICT... | [
"private",
"void",
"readPICTHeader",
"(",
"final",
"ImageInputStream",
"pStream",
")",
"throws",
"IOException",
"{",
"pStream",
".",
"seek",
"(",
"0l",
")",
";",
"try",
"{",
"readPICTHeader0",
"(",
"pStream",
")",
";",
"}",
"catch",
"(",
"IIOException",
"e",... | Read the PICT header. The information read is shown on stdout if "DEBUG" is true.
@param pStream the stream to read from
@throws IOException if an I/O error occurs while reading the image. | [
"Read",
"the",
"PICT",
"header",
".",
"The",
"information",
"read",
"is",
"shown",
"on",
"stdout",
"if",
"DEBUG",
"is",
"true",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTImageReader.java#L170-L184 | train |
haraldk/TwelveMonkeys | imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTImageReader.java | PICTImageReader.readRectangle | private void readRectangle(DataInput pStream, Rectangle pDestRect) throws IOException {
int y = pStream.readUnsignedShort();
int x = pStream.readUnsignedShort();
int h = pStream.readUnsignedShort();
int w = pStream.readUnsignedShort();
pDestRect.setLocation(getXPtCoord(x), getYP... | java | private void readRectangle(DataInput pStream, Rectangle pDestRect) throws IOException {
int y = pStream.readUnsignedShort();
int x = pStream.readUnsignedShort();
int h = pStream.readUnsignedShort();
int w = pStream.readUnsignedShort();
pDestRect.setLocation(getXPtCoord(x), getYP... | [
"private",
"void",
"readRectangle",
"(",
"DataInput",
"pStream",
",",
"Rectangle",
"pDestRect",
")",
"throws",
"IOException",
"{",
"int",
"y",
"=",
"pStream",
".",
"readUnsignedShort",
"(",
")",
";",
"int",
"x",
"=",
"pStream",
".",
"readUnsignedShort",
"(",
... | Reads the rectangle location and size from an 8-byte rectangle stream.
@param pStream the stream to read from
@param pDestRect the rectangle to read into
@throws NullPointerException if {@code pDestRect} is {@code null}
@throws IOException if an I/O error occurs while reading the image. | [
"Reads",
"the",
"rectangle",
"location",
"and",
"size",
"from",
"an",
"8",
"-",
"byte",
"rectangle",
"stream",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTImageReader.java#L2366-L2374 | train |
haraldk/TwelveMonkeys | imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTImageReader.java | PICTImageReader.readPoly | private Polygon readPoly(DataInput pStream, Rectangle pBounds) throws IOException {
// Get polygon data size
int size = pStream.readUnsignedShort();
// Get poly bounds
readRectangle(pStream, pBounds);
// Initialize the point array to the right size
int points = (size - ... | java | private Polygon readPoly(DataInput pStream, Rectangle pBounds) throws IOException {
// Get polygon data size
int size = pStream.readUnsignedShort();
// Get poly bounds
readRectangle(pStream, pBounds);
// Initialize the point array to the right size
int points = (size - ... | [
"private",
"Polygon",
"readPoly",
"(",
"DataInput",
"pStream",
",",
"Rectangle",
"pBounds",
")",
"throws",
"IOException",
"{",
"// Get polygon data size",
"int",
"size",
"=",
"pStream",
".",
"readUnsignedShort",
"(",
")",
";",
"// Get poly bounds",
"readRectangle",
... | Read in a polygon. The input stream should be positioned at the first byte
of the polygon.
@param pStream the stream to read from
@param pBounds the bounds rectangle to read into
@return the polygon
@throws IOException if an I/O error occurs while reading the image. | [
"Read",
"in",
"a",
"polygon",
".",
"The",
"input",
"stream",
"should",
"be",
"positioned",
"at",
"the",
"first",
"byte",
"of",
"the",
"polygon",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTImageReader.java#L2452-L2476 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/ThrottleFilter.java | ThrottleFilter.setMaxConcurrentThreadCount | public void setMaxConcurrentThreadCount(String pMaxConcurrentThreadCount) {
if (!StringUtil.isEmpty(pMaxConcurrentThreadCount)) {
try {
maxConcurrentThreadCount = Integer.parseInt(pMaxConcurrentThreadCount);
}
catch (NumberFormatException nfe) {
... | java | public void setMaxConcurrentThreadCount(String pMaxConcurrentThreadCount) {
if (!StringUtil.isEmpty(pMaxConcurrentThreadCount)) {
try {
maxConcurrentThreadCount = Integer.parseInt(pMaxConcurrentThreadCount);
}
catch (NumberFormatException nfe) {
... | [
"public",
"void",
"setMaxConcurrentThreadCount",
"(",
"String",
"pMaxConcurrentThreadCount",
")",
"{",
"if",
"(",
"!",
"StringUtil",
".",
"isEmpty",
"(",
"pMaxConcurrentThreadCount",
")",
")",
"{",
"try",
"{",
"maxConcurrentThreadCount",
"=",
"Integer",
".",
"parseI... | Sets the minimum free thread count.
@param pMaxConcurrentThreadCount | [
"Sets",
"the",
"minimum",
"free",
"thread",
"count",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/ThrottleFilter.java#L109-L118 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/ThrottleFilter.java | ThrottleFilter.getContentType | private String getContentType(HttpServletRequest pRequest) {
if (responseMessageTypes != null) {
String accept = pRequest.getHeader("Accept");
for (String type : responseMessageTypes) {
// Note: This is not 100% correct way of doing content negotiation
... | java | private String getContentType(HttpServletRequest pRequest) {
if (responseMessageTypes != null) {
String accept = pRequest.getHeader("Accept");
for (String type : responseMessageTypes) {
// Note: This is not 100% correct way of doing content negotiation
... | [
"private",
"String",
"getContentType",
"(",
"HttpServletRequest",
"pRequest",
")",
"{",
"if",
"(",
"responseMessageTypes",
"!=",
"null",
")",
"{",
"String",
"accept",
"=",
"pRequest",
".",
"getHeader",
"(",
"\"Accept\"",
")",
";",
"for",
"(",
"String",
"type",... | Gets the content type for the response, suitable for the requesting user agent.
@param pRequest
@return the content type | [
"Gets",
"the",
"content",
"type",
"for",
"the",
"response",
"suitable",
"for",
"the",
"requesting",
"user",
"agent",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/ThrottleFilter.java#L222-L237 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/ThrottleFilter.java | ThrottleFilter.getMessage | private String getMessage(String pContentType) {
String fileName = responseMessageNames.get(pContentType);
// Get cached value
CacheEntry entry = responseCache.get(fileName);
if ((entry == null) || entry.isExpired()) {
// Create and add or replace cached value
... | java | private String getMessage(String pContentType) {
String fileName = responseMessageNames.get(pContentType);
// Get cached value
CacheEntry entry = responseCache.get(fileName);
if ((entry == null) || entry.isExpired()) {
// Create and add or replace cached value
... | [
"private",
"String",
"getMessage",
"(",
"String",
"pContentType",
")",
"{",
"String",
"fileName",
"=",
"responseMessageNames",
".",
"get",
"(",
"pContentType",
")",
";",
"// Get cached value\r",
"CacheEntry",
"entry",
"=",
"responseCache",
".",
"get",
"(",
"fileNa... | Gets the response message for the given content type.
@param pContentType
@return the message | [
"Gets",
"the",
"response",
"message",
"for",
"the",
"given",
"content",
"type",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/ThrottleFilter.java#L245-L262 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/ThrottleFilter.java | ThrottleFilter.readMessage | private String readMessage(String pFileName) {
try {
// Read resource from web app
InputStream is = getServletContext().getResourceAsStream(pFileName);
if (is != null) {
return new String(FileUtil.read(is));
}
else {
... | java | private String readMessage(String pFileName) {
try {
// Read resource from web app
InputStream is = getServletContext().getResourceAsStream(pFileName);
if (is != null) {
return new String(FileUtil.read(is));
}
else {
... | [
"private",
"String",
"readMessage",
"(",
"String",
"pFileName",
")",
"{",
"try",
"{",
"// Read resource from web app\r",
"InputStream",
"is",
"=",
"getServletContext",
"(",
")",
".",
"getResourceAsStream",
"(",
"pFileName",
")",
";",
"if",
"(",
"is",
"!=",
"null... | Reads the response message from a file in the current web app.
@param pFileName
@return the message | [
"Reads",
"the",
"response",
"message",
"from",
"a",
"file",
"in",
"the",
"current",
"web",
"app",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/ThrottleFilter.java#L270-L286 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/cache/CacheFilter.java | CacheFilter.init | public void init() throws ServletException {
FilterConfig config = getFilterConfig();
// Default don't delete cache files on exit (persistent cache)
boolean deleteCacheOnExit = "TRUE".equalsIgnoreCase(config.getInitParameter("deleteCacheOnExit"));
// Default expiry time 10 minute... | java | public void init() throws ServletException {
FilterConfig config = getFilterConfig();
// Default don't delete cache files on exit (persistent cache)
boolean deleteCacheOnExit = "TRUE".equalsIgnoreCase(config.getInitParameter("deleteCacheOnExit"));
// Default expiry time 10 minute... | [
"public",
"void",
"init",
"(",
")",
"throws",
"ServletException",
"{",
"FilterConfig",
"config",
"=",
"getFilterConfig",
"(",
")",
";",
"// Default don't delete cache files on exit (persistent cache)\r",
"boolean",
"deleteCacheOnExit",
"=",
"\"TRUE\"",
".",
"equalsIgnoreCas... | Initializes the filter
@throws javax.servlet.ServletException | [
"Initializes",
"the",
"filter"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/cache/CacheFilter.java#L69-L131 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/AbstractDecoratedMap.java | AbstractDecoratedMap.removeEntry | protected Entry<K, V> removeEntry(Entry<K, V> pEntry) {
if (pEntry == null) {
return null;
}
// Find candidate entry for this key
Entry<K, V> candidate = getEntry(pEntry.getKey());
if (candidate == pEntry || (candidate != null && candidate.equals(pEntry))) {
... | java | protected Entry<K, V> removeEntry(Entry<K, V> pEntry) {
if (pEntry == null) {
return null;
}
// Find candidate entry for this key
Entry<K, V> candidate = getEntry(pEntry.getKey());
if (candidate == pEntry || (candidate != null && candidate.equals(pEntry))) {
... | [
"protected",
"Entry",
"<",
"K",
",",
"V",
">",
"removeEntry",
"(",
"Entry",
"<",
"K",
",",
"V",
">",
"pEntry",
")",
"{",
"if",
"(",
"pEntry",
"==",
"null",
")",
"{",
"return",
"null",
";",
"}",
"// Find candidate entry for this key\r",
"Entry",
"<",
"K... | Removes the given entry from the Map.
@param pEntry the entry to be removed
@return the removed entry, or {@code null} if nothing was removed. | [
"Removes",
"the",
"given",
"entry",
"from",
"the",
"Map",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/AbstractDecoratedMap.java#L232-L245 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/ExTagSupport.java | ExTagSupport.writeHtml | public void writeHtml(JspWriter pOut, String pHtml) throws IOException {
StringTokenizer parser = new StringTokenizer(pHtml, "<>&", true);
while (parser.hasMoreTokens()) {
String token = parser.nextToken();
if (token.equals("<")) {
pOut.print("<");
... | java | public void writeHtml(JspWriter pOut, String pHtml) throws IOException {
StringTokenizer parser = new StringTokenizer(pHtml, "<>&", true);
while (parser.hasMoreTokens()) {
String token = parser.nextToken();
if (token.equals("<")) {
pOut.print("<");
... | [
"public",
"void",
"writeHtml",
"(",
"JspWriter",
"pOut",
",",
"String",
"pHtml",
")",
"throws",
"IOException",
"{",
"StringTokenizer",
"parser",
"=",
"new",
"StringTokenizer",
"(",
"pHtml",
",",
"\"<>&\"",
",",
"true",
")",
";",
"while",
"(",
"parser",
".",
... | writeHtml ensures that the text being outputted appears as it was
entered. This prevents users from hacking the system by entering
html or jsp code into an entry form where that value will be displayed
later in the site.
@param pOut The JspWriter to write the output to.
@param pHtml The original html to filter and ou... | [
"writeHtml",
"ensures",
"that",
"the",
"text",
"being",
"outputted",
"appears",
"as",
"it",
"was",
"entered",
".",
"This",
"prevents",
"users",
"from",
"hacking",
"the",
"system",
"by",
"entering",
"html",
"or",
"jsp",
"code",
"into",
"an",
"entry",
"form",
... | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/ExTagSupport.java#L56-L75 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/ExTagSupport.java | ExTagSupport.getInitParameter | public String getInitParameter(String pName, int pScope) {
switch (pScope) {
case PageContext.PAGE_SCOPE:
return getServletConfig().getInitParameter(pName);
case PageContext.APPLICATION_SCOPE:
return getServletContext().getInitParameter(pName);
... | java | public String getInitParameter(String pName, int pScope) {
switch (pScope) {
case PageContext.PAGE_SCOPE:
return getServletConfig().getInitParameter(pName);
case PageContext.APPLICATION_SCOPE:
return getServletContext().getInitParameter(pName);
... | [
"public",
"String",
"getInitParameter",
"(",
"String",
"pName",
",",
"int",
"pScope",
")",
"{",
"switch",
"(",
"pScope",
")",
"{",
"case",
"PageContext",
".",
"PAGE_SCOPE",
":",
"return",
"getServletConfig",
"(",
")",
".",
"getInitParameter",
"(",
"pName",
"... | Returns the initialisation parameter from the scope specified with the
name specified.
@param pName The name of the initialisation parameter to return the
value for.
@param pScope The scope to search for the initialisation parameter
within.
@return The value of the parameter found. If no parameter with the
name speci... | [
"Returns",
"the",
"initialisation",
"parameter",
"from",
"the",
"scope",
"specified",
"with",
"the",
"name",
"specified",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/ExTagSupport.java#L211-L220 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/ExTagSupport.java | ExTagSupport.getInitParameterNames | public Enumeration getInitParameterNames(int pScope) {
switch (pScope) {
case PageContext.PAGE_SCOPE:
return getServletConfig().getInitParameterNames();
case PageContext.APPLICATION_SCOPE:
return getServletContext().getInitParameterNames();
... | java | public Enumeration getInitParameterNames(int pScope) {
switch (pScope) {
case PageContext.PAGE_SCOPE:
return getServletConfig().getInitParameterNames();
case PageContext.APPLICATION_SCOPE:
return getServletContext().getInitParameterNames();
... | [
"public",
"Enumeration",
"getInitParameterNames",
"(",
"int",
"pScope",
")",
"{",
"switch",
"(",
"pScope",
")",
"{",
"case",
"PageContext",
".",
"PAGE_SCOPE",
":",
"return",
"getServletConfig",
"(",
")",
".",
"getInitParameterNames",
"(",
")",
";",
"case",
"Pa... | Returns an enumeration containing all the parameters defined in the
scope specified by the parameter.
@param pScope The scope to return the names of all the parameters
defined within.
@return An {@code Enumeration} containing all the names for all the
parameters defined in the scope passed in as a parameter. | [
"Returns",
"an",
"enumeration",
"containing",
"all",
"the",
"parameters",
"defined",
"in",
"the",
"scope",
"specified",
"by",
"the",
"parameter",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/ExTagSupport.java#L232-L241 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/ExTagSupport.java | ExTagSupport.getResourceAsStream | public InputStream getResourceAsStream(String pPath) {
//throws MalformedURLException {
String path = pPath;
if (pPath != null && !pPath.startsWith("/")) {
path = getContextPath() + pPath;
}
return pageContext.getServletContext().getResourceAsStream(path);
... | java | public InputStream getResourceAsStream(String pPath) {
//throws MalformedURLException {
String path = pPath;
if (pPath != null && !pPath.startsWith("/")) {
path = getContextPath() + pPath;
}
return pageContext.getServletContext().getResourceAsStream(path);
... | [
"public",
"InputStream",
"getResourceAsStream",
"(",
"String",
"pPath",
")",
"{",
"//throws MalformedURLException {\r",
"String",
"path",
"=",
"pPath",
";",
"if",
"(",
"pPath",
"!=",
"null",
"&&",
"!",
"pPath",
".",
"startsWith",
"(",
"\"/\"",
")",
")",
"{",
... | Gets the resource associated with the given relative path for the
current JSP page request.
The path may be absolute, or relative to the current context root.
@param pPath the path
@return a path relative to the current context root | [
"Gets",
"the",
"resource",
"associated",
"with",
"the",
"given",
"relative",
"path",
"for",
"the",
"current",
"JSP",
"page",
"request",
".",
"The",
"path",
"may",
"be",
"absolute",
"or",
"relative",
"to",
"the",
"current",
"context",
"root",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/ExTagSupport.java#L281-L290 | train |
haraldk/TwelveMonkeys | imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/ColorSpaces.java | ColorSpaces.isCS_sRGB | public static boolean isCS_sRGB(final ICC_Profile profile) {
Validate.notNull(profile, "profile");
return profile.getColorSpaceType() == ColorSpace.TYPE_RGB && Arrays.equals(getProfileHeaderWithProfileId(profile), sRGB.header);
} | java | public static boolean isCS_sRGB(final ICC_Profile profile) {
Validate.notNull(profile, "profile");
return profile.getColorSpaceType() == ColorSpace.TYPE_RGB && Arrays.equals(getProfileHeaderWithProfileId(profile), sRGB.header);
} | [
"public",
"static",
"boolean",
"isCS_sRGB",
"(",
"final",
"ICC_Profile",
"profile",
")",
"{",
"Validate",
".",
"notNull",
"(",
"profile",
",",
"\"profile\"",
")",
";",
"return",
"profile",
".",
"getColorSpaceType",
"(",
")",
"==",
"ColorSpace",
".",
"TYPE_RGB"... | Tests whether an ICC color profile is equal to the default sRGB profile.
@param profile the ICC profile to test. May not be {@code null}.
@return {@code true} if {@code profile} is equal to the default sRGB profile.
@throws IllegalArgumentException if {@code profile} is {@code null}
@see java.awt.color.ColorSpace#isC... | [
"Tests",
"whether",
"an",
"ICC",
"color",
"profile",
"is",
"equal",
"to",
"the",
"default",
"sRGB",
"profile",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/ColorSpaces.java#L236-L240 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/convert/DateConverter.java | DateConverter.toObject | public Object toObject(String pString, Class pType, String pFormat) throws ConversionException {
if (StringUtil.isEmpty(pString))
return null;
try {
DateFormat format;
if (pFormat == null) {
// Use system default format, using default lo... | java | public Object toObject(String pString, Class pType, String pFormat) throws ConversionException {
if (StringUtil.isEmpty(pString))
return null;
try {
DateFormat format;
if (pFormat == null) {
// Use system default format, using default lo... | [
"public",
"Object",
"toObject",
"(",
"String",
"pString",
",",
"Class",
"pType",
",",
"String",
"pFormat",
")",
"throws",
"ConversionException",
"{",
"if",
"(",
"StringUtil",
".",
"isEmpty",
"(",
"pString",
")",
")",
"return",
"null",
";",
"try",
"{",
"Dat... | Converts the string to a date, using the given format for parsing.
@param pString the string to convert.
@param pType the type to convert to. {@code java.util.Date} and
subclasses allowed.
@param pFormat the format used for parsing. Must be a legal
{@code SimpleDateFormat} format, or {@code null} which will use the
de... | [
"Converts",
"the",
"string",
"to",
"a",
"date",
"using",
"the",
"given",
"format",
"for",
"parsing",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/convert/DateConverter.java#L76-L112 | train |
haraldk/TwelveMonkeys | common/common-image/src/main/java/com/twelvemonkeys/image/DiffusionDither.java | DiffusionDither.toRGBArray | private static int[] toRGBArray(int pARGB, int[] pBuffer) {
pBuffer[0] = ((pARGB & 0x00ff0000) >> 16);
pBuffer[1] = ((pARGB & 0x0000ff00) >> 8);
pBuffer[2] = ((pARGB & 0x000000ff));
//pBuffer[3] = ((pARGB & 0xff000000) >> 24); // alpha
return pBuffer;
} | java | private static int[] toRGBArray(int pARGB, int[] pBuffer) {
pBuffer[0] = ((pARGB & 0x00ff0000) >> 16);
pBuffer[1] = ((pARGB & 0x0000ff00) >> 8);
pBuffer[2] = ((pARGB & 0x000000ff));
//pBuffer[3] = ((pARGB & 0xff000000) >> 24); // alpha
return pBuffer;
} | [
"private",
"static",
"int",
"[",
"]",
"toRGBArray",
"(",
"int",
"pARGB",
",",
"int",
"[",
"]",
"pBuffer",
")",
"{",
"pBuffer",
"[",
"0",
"]",
"=",
"(",
"(",
"pARGB",
"&",
"0x00ff0000",
")",
">>",
"16",
")",
";",
"pBuffer",
"[",
"1",
"]",
"=",
"... | Converts an int ARGB to int triplet. | [
"Converts",
"an",
"int",
"ARGB",
"to",
"int",
"triplet",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-image/src/main/java/com/twelvemonkeys/image/DiffusionDither.java#L215-L222 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/ScaleFilter.java | ScaleFilter.doFilter | protected RenderedImage doFilter(BufferedImage pImage, ServletRequest pRequest, ImageServletResponse pResponse) {
// Get quality setting
// SMOOTH | FAST | REPLICATE | DEFAULT | AREA_AVERAGING
// See Image (mHints)
int quality = getQuality(pRequest.getParameter(PARAM_SCALE_QUALITY)... | java | protected RenderedImage doFilter(BufferedImage pImage, ServletRequest pRequest, ImageServletResponse pResponse) {
// Get quality setting
// SMOOTH | FAST | REPLICATE | DEFAULT | AREA_AVERAGING
// See Image (mHints)
int quality = getQuality(pRequest.getParameter(PARAM_SCALE_QUALITY)... | [
"protected",
"RenderedImage",
"doFilter",
"(",
"BufferedImage",
"pImage",
",",
"ServletRequest",
"pRequest",
",",
"ImageServletResponse",
"pResponse",
")",
"{",
"// Get quality setting\r",
"// SMOOTH | FAST | REPLICATE | DEFAULT | AREA_AVERAGING\r",
"// See Image (mHints)\r",
"int"... | Reads the image from the requested URL, scales it, and returns it in the
Servlet stream. See above for details on parameters. | [
"Reads",
"the",
"image",
"from",
"the",
"requested",
"URL",
"scales",
"it",
"and",
"returns",
"it",
"in",
"the",
"Servlet",
"stream",
".",
"See",
"above",
"for",
"details",
"on",
"parameters",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/ScaleFilter.java#L134-L164 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/ScaleFilter.java | ScaleFilter.getQuality | protected int getQuality(String pQualityStr) {
if (!StringUtil.isEmpty(pQualityStr)) {
try {
// Get quality constant from Image using reflection
Class cl = Image.class;
Field field = cl.getField(pQualityStr.toUpperCase());
retur... | java | protected int getQuality(String pQualityStr) {
if (!StringUtil.isEmpty(pQualityStr)) {
try {
// Get quality constant from Image using reflection
Class cl = Image.class;
Field field = cl.getField(pQualityStr.toUpperCase());
retur... | [
"protected",
"int",
"getQuality",
"(",
"String",
"pQualityStr",
")",
"{",
"if",
"(",
"!",
"StringUtil",
".",
"isEmpty",
"(",
"pQualityStr",
")",
")",
"{",
"try",
"{",
"// Get quality constant from Image using reflection\r",
"Class",
"cl",
"=",
"Image",
".",
"cla... | Gets the quality constant for the scaling, from the string argument.
@param pQualityStr The string representation of the scale quality
constant.
@return The matching quality constant, or the default quality if none
was found.
@see java.awt.Image
@see java.awt.Image#getScaledInstance(int,int,int) | [
"Gets",
"the",
"quality",
"constant",
"for",
"the",
"scaling",
"from",
"the",
"string",
"argument",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/ScaleFilter.java#L176-L194 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/ScaleFilter.java | ScaleFilter.getUnits | protected int getUnits(String pUnitStr) {
if (StringUtil.isEmpty(pUnitStr)
|| pUnitStr.equalsIgnoreCase("PIXELS")) {
return UNITS_PIXELS;
}
else if (pUnitStr.equalsIgnoreCase("PERCENT")) {
return UNITS_PERCENT;
}
else {
... | java | protected int getUnits(String pUnitStr) {
if (StringUtil.isEmpty(pUnitStr)
|| pUnitStr.equalsIgnoreCase("PIXELS")) {
return UNITS_PIXELS;
}
else if (pUnitStr.equalsIgnoreCase("PERCENT")) {
return UNITS_PERCENT;
}
else {
... | [
"protected",
"int",
"getUnits",
"(",
"String",
"pUnitStr",
")",
"{",
"if",
"(",
"StringUtil",
".",
"isEmpty",
"(",
"pUnitStr",
")",
"||",
"pUnitStr",
".",
"equalsIgnoreCase",
"(",
"\"PIXELS\"",
")",
")",
"{",
"return",
"UNITS_PIXELS",
";",
"}",
"else",
"if... | Gets the units constant for the width and height arguments, from the
given string argument.
@param pUnitStr The string representation of the units constant,
can be one of "PIXELS" or "PERCENT".
@return The mathcing units constant, or UNITS_UNKNOWN if none was found. | [
"Gets",
"the",
"units",
"constant",
"for",
"the",
"width",
"and",
"height",
"arguments",
"from",
"the",
"given",
"string",
"argument",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/ScaleFilter.java#L208-L219 | train |
haraldk/TwelveMonkeys | imageio/imageio-jpeg/src/main/java/com/twelvemonkeys/imageio/plugins/jpeg/JPEGLosslessDecoder.java | JPEGLosslessDecoder.getHuffmanValue | private int getHuffmanValue(final int table[], final int temp[], final int index[]) throws IOException {
int code, input;
final int mask = 0xFFFF;
if (index[0] < 8) {
temp[0] <<= 8;
input = this.input.readUnsignedByte();
if (input == 0xFF) {
m... | java | private int getHuffmanValue(final int table[], final int temp[], final int index[]) throws IOException {
int code, input;
final int mask = 0xFFFF;
if (index[0] < 8) {
temp[0] <<= 8;
input = this.input.readUnsignedByte();
if (input == 0xFF) {
m... | [
"private",
"int",
"getHuffmanValue",
"(",
"final",
"int",
"table",
"[",
"]",
",",
"final",
"int",
"temp",
"[",
"]",
",",
"final",
"int",
"index",
"[",
"]",
")",
"throws",
"IOException",
"{",
"int",
"code",
",",
"input",
";",
"final",
"int",
"mask",
"... | will not be called | [
"will",
"not",
"be",
"called"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-jpeg/src/main/java/com/twelvemonkeys/imageio/plugins/jpeg/JPEGLosslessDecoder.java#L548-L604 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/enc/EncoderStream.java | EncoderStream.write | public void write(final byte[] pBytes, final int pOffset, final int pLength) throws IOException {
if (!flushOnWrite && pLength < buffer.remaining()) {
// Buffer data
buffer.put(pBytes, pOffset, pLength);
}
else {
// Encode data already in the buffer
... | java | public void write(final byte[] pBytes, final int pOffset, final int pLength) throws IOException {
if (!flushOnWrite && pLength < buffer.remaining()) {
// Buffer data
buffer.put(pBytes, pOffset, pLength);
}
else {
// Encode data already in the buffer
... | [
"public",
"void",
"write",
"(",
"final",
"byte",
"[",
"]",
"pBytes",
",",
"final",
"int",
"pOffset",
",",
"final",
"int",
"pLength",
")",
"throws",
"IOException",
"{",
"if",
"(",
"!",
"flushOnWrite",
"&&",
"pLength",
"<",
"buffer",
".",
"remaining",
"(",... | tell the EncoderStream how large buffer it prefers... | [
"tell",
"the",
"EncoderStream",
"how",
"large",
"buffer",
"it",
"prefers",
"..."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/enc/EncoderStream.java#L116-L128 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/NetUtil.java | NetUtil.getURLAndSetAuthorization | private static URL getURLAndSetAuthorization(final String pURL, final Properties pProperties) throws MalformedURLException {
String url = pURL;
// Split user/password away from url
String userPass = null;
String protocolPrefix = HTTP;
int httpIdx = url.indexOf(HTTPS);
if... | java | private static URL getURLAndSetAuthorization(final String pURL, final Properties pProperties) throws MalformedURLException {
String url = pURL;
// Split user/password away from url
String userPass = null;
String protocolPrefix = HTTP;
int httpIdx = url.indexOf(HTTPS);
if... | [
"private",
"static",
"URL",
"getURLAndSetAuthorization",
"(",
"final",
"String",
"pURL",
",",
"final",
"Properties",
"pProperties",
")",
"throws",
"MalformedURLException",
"{",
"String",
"url",
"=",
"pURL",
";",
"// Split user/password away from url",
"String",
"userPas... | Registers the password from the URL string, and returns the URL object.
@param pURL the string representation of the URL, possibly including authorization part
@param pProperties the
@return the URL created from {@code pURL}.
@throws java.net.MalformedURLException if there's a syntax error in {@code pURL} | [
"Registers",
"the",
"password",
"from",
"the",
"URL",
"string",
"and",
"returns",
"the",
"URL",
"object",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/NetUtil.java#L597-L631 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/NetUtil.java | NetUtil.createHttpURLConnection | public static HttpURLConnection createHttpURLConnection(URL pURL, Properties pProperties, boolean pFollowRedirects, int pTimeout)
throws IOException {
// Open the connection, and get the stream
HttpURLConnection conn;
if (pTimeout > 0) {
// Supports timeout
... | java | public static HttpURLConnection createHttpURLConnection(URL pURL, Properties pProperties, boolean pFollowRedirects, int pTimeout)
throws IOException {
// Open the connection, and get the stream
HttpURLConnection conn;
if (pTimeout > 0) {
// Supports timeout
... | [
"public",
"static",
"HttpURLConnection",
"createHttpURLConnection",
"(",
"URL",
"pURL",
",",
"Properties",
"pProperties",
",",
"boolean",
"pFollowRedirects",
",",
"int",
"pTimeout",
")",
"throws",
"IOException",
"{",
"// Open the connection, and get the stream",
"HttpURLCon... | Creates a HTTP connection to the given URL.
@param pURL the URL to get.
@param pProperties connection properties.
@param pFollowRedirects specifies whether we should follow redirects.
@param pTimeout the specified timeout, in milliseconds.
@return a HttpURLConnection
@throws UnknownHostExcepti... | [
"Creates",
"a",
"HTTP",
"connection",
"to",
"the",
"given",
"URL",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/NetUtil.java#L869-L919 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/BASE64.java | BASE64.encode | public static String encode(byte[] pData) {
int offset = 0;
int len;
StringBuilder buf = new StringBuilder();
while ((pData.length - offset) > 0) {
byte a, b, c;
if ((pData.length - offset) > 2) {
len = 3;
}
else {
... | java | public static String encode(byte[] pData) {
int offset = 0;
int len;
StringBuilder buf = new StringBuilder();
while ((pData.length - offset) > 0) {
byte a, b, c;
if ((pData.length - offset) > 2) {
len = 3;
}
else {
... | [
"public",
"static",
"String",
"encode",
"(",
"byte",
"[",
"]",
"pData",
")",
"{",
"int",
"offset",
"=",
"0",
";",
"int",
"len",
";",
"StringBuilder",
"buf",
"=",
"new",
"StringBuilder",
"(",
")",
";",
"while",
"(",
"(",
"pData",
".",
"length",
"-",
... | Encodes the input data using the standard base64 encoding scheme.
@param pData the bytes to encode to base64
@return a string with base64 encoded data | [
"Encodes",
"the",
"input",
"data",
"using",
"the",
"standard",
"base64",
"encoding",
"scheme",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/BASE64.java#L68-L116 | train |
haraldk/TwelveMonkeys | common/common-image/src/main/java/com/twelvemonkeys/image/BufferedImageFactory.java | BufferedImageFactory.setSourceSubsampling | public void setSourceSubsampling(int pXSub, int pYSub) {
// Re-fetch everything, if subsampling changed
if (xSub != pXSub || ySub != pYSub) {
dispose();
}
if (pXSub > 1) {
xSub = pXSub;
}
if (pYSub > 1) {
ySub = pYSub;
}
} | java | public void setSourceSubsampling(int pXSub, int pYSub) {
// Re-fetch everything, if subsampling changed
if (xSub != pXSub || ySub != pYSub) {
dispose();
}
if (pXSub > 1) {
xSub = pXSub;
}
if (pYSub > 1) {
ySub = pYSub;
}
} | [
"public",
"void",
"setSourceSubsampling",
"(",
"int",
"pXSub",
",",
"int",
"pYSub",
")",
"{",
"// Re-fetch everything, if subsampling changed",
"if",
"(",
"xSub",
"!=",
"pXSub",
"||",
"ySub",
"!=",
"pYSub",
")",
"{",
"dispose",
"(",
")",
";",
"}",
"if",
"(",... | Sets the source subsampling for the new image.
@param pXSub horizontal subsampling factor
@param pYSub vertical subsampling factor | [
"Sets",
"the",
"source",
"subsampling",
"for",
"the",
"new",
"image",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-image/src/main/java/com/twelvemonkeys/image/BufferedImageFactory.java#L176-L188 | train |
haraldk/TwelveMonkeys | common/common-image/src/main/java/com/twelvemonkeys/image/BufferedImageFactory.java | BufferedImageFactory.addProgressListener | public void addProgressListener(ProgressListener pListener) {
if (pListener == null) {
return;
}
if (listeners == null) {
listeners = new CopyOnWriteArrayList<ProgressListener>();
}
listeners.add(pListener);
} | java | public void addProgressListener(ProgressListener pListener) {
if (pListener == null) {
return;
}
if (listeners == null) {
listeners = new CopyOnWriteArrayList<ProgressListener>();
}
listeners.add(pListener);
} | [
"public",
"void",
"addProgressListener",
"(",
"ProgressListener",
"pListener",
")",
"{",
"if",
"(",
"pListener",
"==",
"null",
")",
"{",
"return",
";",
"}",
"if",
"(",
"listeners",
"==",
"null",
")",
"{",
"listeners",
"=",
"new",
"CopyOnWriteArrayList",
"<",... | Adds a progress listener to this factory.
@param pListener the progress listener | [
"Adds",
"a",
"progress",
"listener",
"to",
"this",
"factory",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-image/src/main/java/com/twelvemonkeys/image/BufferedImageFactory.java#L283-L293 | train |
haraldk/TwelveMonkeys | common/common-image/src/main/java/com/twelvemonkeys/image/BufferedImageFactory.java | BufferedImageFactory.removeProgressListener | public void removeProgressListener(ProgressListener pListener) {
if (pListener == null) {
return;
}
if (listeners == null) {
return;
}
listeners.remove(pListener);
} | java | public void removeProgressListener(ProgressListener pListener) {
if (pListener == null) {
return;
}
if (listeners == null) {
return;
}
listeners.remove(pListener);
} | [
"public",
"void",
"removeProgressListener",
"(",
"ProgressListener",
"pListener",
")",
"{",
"if",
"(",
"pListener",
"==",
"null",
")",
"{",
"return",
";",
"}",
"if",
"(",
"listeners",
"==",
"null",
")",
"{",
"return",
";",
"}",
"listeners",
".",
"remove",
... | Removes a progress listener from this factory.
@param pListener the progress listener | [
"Removes",
"a",
"progress",
"listener",
"from",
"this",
"factory",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-image/src/main/java/com/twelvemonkeys/image/BufferedImageFactory.java#L300-L310 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.