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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
VoltDB/voltdb | third_party/java/src/com/google_voltpatches/common/io/Files.java | Files.readLines | public static List<String> readLines(File file, Charset charset) throws IOException {
// don't use asCharSource(file, charset).readLines() because that returns
// an immutable list, which would change the behavior of this method
return readLines(
file,
charset,
new LineProcessor<List... | java | public static List<String> readLines(File file, Charset charset) throws IOException {
// don't use asCharSource(file, charset).readLines() because that returns
// an immutable list, which would change the behavior of this method
return readLines(
file,
charset,
new LineProcessor<List... | [
"public",
"static",
"List",
"<",
"String",
">",
"readLines",
"(",
"File",
"file",
",",
"Charset",
"charset",
")",
"throws",
"IOException",
"{",
"// don't use asCharSource(file, charset).readLines() because that returns",
"// an immutable list, which would change the behavior of t... | Reads all of the lines from a file. The lines do not include line-termination characters, but
do include other leading and trailing whitespace.
<p>This method returns a mutable {@code List}. For an {@code ImmutableList}, use
{@code Files.asCharSource(file, charset).readLines()}.
@param file the file to read from
@par... | [
"Reads",
"all",
"of",
"the",
"lines",
"from",
"a",
"file",
".",
"The",
"lines",
"do",
"not",
"include",
"line",
"-",
"termination",
"characters",
"but",
"do",
"include",
"other",
"leading",
"and",
"trailing",
"whitespace",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/third_party/java/src/com/google_voltpatches/common/io/Files.java#L517-L537 | train |
VoltDB/voltdb | third_party/java/src/com/google_voltpatches/common/io/Files.java | Files.readBytes | @CanIgnoreReturnValue // some processors won't return a useful result
public static <T> T readBytes(File file, ByteProcessor<T> processor) throws IOException {
return asByteSource(file).read(processor);
} | java | @CanIgnoreReturnValue // some processors won't return a useful result
public static <T> T readBytes(File file, ByteProcessor<T> processor) throws IOException {
return asByteSource(file).read(processor);
} | [
"@",
"CanIgnoreReturnValue",
"// some processors won't return a useful result",
"public",
"static",
"<",
"T",
">",
"T",
"readBytes",
"(",
"File",
"file",
",",
"ByteProcessor",
"<",
"T",
">",
"processor",
")",
"throws",
"IOException",
"{",
"return",
"asByteSource",
"... | Process the bytes of a file.
<p>(If this seems too complicated, maybe you're looking for {@link #toByteArray}.)
@param file the file to read
@param processor the object to which the bytes of the file are passed.
@return the result of the byte processor
@throws IOException if an I/O error occurs | [
"Process",
"the",
"bytes",
"of",
"a",
"file",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/third_party/java/src/com/google_voltpatches/common/io/Files.java#L566-L569 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/RangeVariableResolver.java | RangeVariableResolver.decomposeCondition | static Expression decomposeCondition(Expression e,
HsqlArrayList conditions) {
if (e == null) {
return Expression.EXPR_TRUE;
}
Expression arg1 = e.getLeftNode();
Expression arg2 = e.getRightNode();
int type = e.getType... | java | static Expression decomposeCondition(Expression e,
HsqlArrayList conditions) {
if (e == null) {
return Expression.EXPR_TRUE;
}
Expression arg1 = e.getLeftNode();
Expression arg2 = e.getRightNode();
int type = e.getType... | [
"static",
"Expression",
"decomposeCondition",
"(",
"Expression",
"e",
",",
"HsqlArrayList",
"conditions",
")",
"{",
"if",
"(",
"e",
"==",
"null",
")",
"{",
"return",
"Expression",
".",
"EXPR_TRUE",
";",
"}",
"Expression",
"arg1",
"=",
"e",
".",
"getLeftNode"... | Divides AND conditions and assigns | [
"Divides",
"AND",
"conditions",
"and",
"assigns"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/RangeVariableResolver.java#L142-L189 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/RangeVariableResolver.java | RangeVariableResolver.assignToLists | void assignToLists() {
int lastOuterIndex = -1;
for (int i = 0; i < rangeVariables.length; i++) {
if (rangeVariables[i].isLeftJoin
|| rangeVariables[i].isRightJoin) {
lastOuterIndex = i;
}
if (lastOuterIndex == i) {
... | java | void assignToLists() {
int lastOuterIndex = -1;
for (int i = 0; i < rangeVariables.length; i++) {
if (rangeVariables[i].isLeftJoin
|| rangeVariables[i].isRightJoin) {
lastOuterIndex = i;
}
if (lastOuterIndex == i) {
... | [
"void",
"assignToLists",
"(",
")",
"{",
"int",
"lastOuterIndex",
"=",
"-",
"1",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"rangeVariables",
".",
"length",
";",
"i",
"++",
")",
"{",
"if",
"(",
"rangeVariables",
"[",
"i",
"]",
".",
"isL... | Assigns the conditions to separate lists | [
"Assigns",
"the",
"conditions",
"to",
"separate",
"lists"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/RangeVariableResolver.java#L194-L218 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/RangeVariableResolver.java | RangeVariableResolver.assignToLists | void assignToLists(Expression e, HsqlArrayList[] expressionLists,
int first) {
set.clear();
e.collectRangeVariables(rangeVariables, set);
int index = rangeVarSet.getLargestIndex(set);
// condition is independent of tables if no range variable is found
if... | java | void assignToLists(Expression e, HsqlArrayList[] expressionLists,
int first) {
set.clear();
e.collectRangeVariables(rangeVariables, set);
int index = rangeVarSet.getLargestIndex(set);
// condition is independent of tables if no range variable is found
if... | [
"void",
"assignToLists",
"(",
"Expression",
"e",
",",
"HsqlArrayList",
"[",
"]",
"expressionLists",
",",
"int",
"first",
")",
"{",
"set",
".",
"clear",
"(",
")",
";",
"e",
".",
"collectRangeVariables",
"(",
"rangeVariables",
",",
"set",
")",
";",
"int",
... | Assigns a single condition to the relevant list of conditions
Parameter first indicates the first range variable to which condition
can be assigned | [
"Assigns",
"a",
"single",
"condition",
"to",
"the",
"relevant",
"list",
"of",
"conditions"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/RangeVariableResolver.java#L226-L245 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/RangeVariableResolver.java | RangeVariableResolver.assignToRangeVariables | void assignToRangeVariables() {
for (int i = 0; i < rangeVariables.length; i++) {
boolean isOuter = rangeVariables[i].isLeftJoin
|| rangeVariables[i].isRightJoin;
if (isOuter) {
assignToRangeVariable(rangeVariables[i], i,
... | java | void assignToRangeVariables() {
for (int i = 0; i < rangeVariables.length; i++) {
boolean isOuter = rangeVariables[i].isLeftJoin
|| rangeVariables[i].isRightJoin;
if (isOuter) {
assignToRangeVariable(rangeVariables[i], i,
... | [
"void",
"assignToRangeVariables",
"(",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"rangeVariables",
".",
"length",
";",
"i",
"++",
")",
"{",
"boolean",
"isOuter",
"=",
"rangeVariables",
"[",
"i",
"]",
".",
"isLeftJoin",
"||",
"rangeVari... | Assigns conditions to range variables and converts suitable IN conditions
to table lookup. | [
"Assigns",
"conditions",
"to",
"range",
"variables",
"and",
"converts",
"suitable",
"IN",
"conditions",
"to",
"table",
"lookup",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/RangeVariableResolver.java#L333-L385 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/RangeVariableResolver.java | RangeVariableResolver.setInConditionsAsTables | void setInConditionsAsTables() {
for (int i = rangeVariables.length - 1; i >= 0; i--) {
RangeVariable rangeVar = rangeVariables[i];
Expression in = inExpressions[i];
if (in != null) {
Index index = rangeVar.rangeTable.getIndexForColumn(
... | java | void setInConditionsAsTables() {
for (int i = rangeVariables.length - 1; i >= 0; i--) {
RangeVariable rangeVar = rangeVariables[i];
Expression in = inExpressions[i];
if (in != null) {
Index index = rangeVar.rangeTable.getIndexForColumn(
... | [
"void",
"setInConditionsAsTables",
"(",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"rangeVariables",
".",
"length",
"-",
"1",
";",
"i",
">=",
"0",
";",
"i",
"--",
")",
"{",
"RangeVariable",
"rangeVar",
"=",
"rangeVariables",
"[",
"i",
"]",
";",
"Expression... | Converts an IN conditions into a JOIN | [
"Converts",
"an",
"IN",
"conditions",
"into",
"a",
"JOIN"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/RangeVariableResolver.java#L613-L643 | train |
VoltDB/voltdb | src/frontend/org/voltdb/largequery/LargeBlockTask.java | LargeBlockTask.getStoreTask | public static LargeBlockTask getStoreTask(BlockId blockId, ByteBuffer block) {
return new LargeBlockTask() {
@Override
public LargeBlockResponse call() throws Exception {
Exception theException = null;
try {
LargeBlockManager.getInstanc... | java | public static LargeBlockTask getStoreTask(BlockId blockId, ByteBuffer block) {
return new LargeBlockTask() {
@Override
public LargeBlockResponse call() throws Exception {
Exception theException = null;
try {
LargeBlockManager.getInstanc... | [
"public",
"static",
"LargeBlockTask",
"getStoreTask",
"(",
"BlockId",
"blockId",
",",
"ByteBuffer",
"block",
")",
"{",
"return",
"new",
"LargeBlockTask",
"(",
")",
"{",
"@",
"Override",
"public",
"LargeBlockResponse",
"call",
"(",
")",
"throws",
"Exception",
"{"... | Get a new "store" task
@param blockId The block id of the block to store
@param block A ByteBuffer containing the block data
@return An instance of LargeBlockTask that will store a block | [
"Get",
"a",
"new",
"store",
"task"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/largequery/LargeBlockTask.java#L38-L53 | train |
VoltDB/voltdb | src/frontend/org/voltdb/largequery/LargeBlockTask.java | LargeBlockTask.getReleaseTask | public static LargeBlockTask getReleaseTask(BlockId blockId) {
return new LargeBlockTask() {
@Override
public LargeBlockResponse call() throws Exception {
Exception theException = null;
try {
LargeBlockManager.getInstance().releaseBlock... | java | public static LargeBlockTask getReleaseTask(BlockId blockId) {
return new LargeBlockTask() {
@Override
public LargeBlockResponse call() throws Exception {
Exception theException = null;
try {
LargeBlockManager.getInstance().releaseBlock... | [
"public",
"static",
"LargeBlockTask",
"getReleaseTask",
"(",
"BlockId",
"blockId",
")",
"{",
"return",
"new",
"LargeBlockTask",
"(",
")",
"{",
"@",
"Override",
"public",
"LargeBlockResponse",
"call",
"(",
")",
"throws",
"Exception",
"{",
"Exception",
"theException... | Get a new "release" task
@param blockId The block id of the block to release
@return An instance of LargeBlockTask that will release a block | [
"Get",
"a",
"new",
"release",
"task"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/largequery/LargeBlockTask.java#L60-L75 | train |
VoltDB/voltdb | src/frontend/org/voltdb/largequery/LargeBlockTask.java | LargeBlockTask.getLoadTask | public static LargeBlockTask getLoadTask(BlockId blockId, ByteBuffer block) {
return new LargeBlockTask() {
@Override
public LargeBlockResponse call() throws Exception {
Exception theException = null;
try {
LargeBlockManager.getInstance... | java | public static LargeBlockTask getLoadTask(BlockId blockId, ByteBuffer block) {
return new LargeBlockTask() {
@Override
public LargeBlockResponse call() throws Exception {
Exception theException = null;
try {
LargeBlockManager.getInstance... | [
"public",
"static",
"LargeBlockTask",
"getLoadTask",
"(",
"BlockId",
"blockId",
",",
"ByteBuffer",
"block",
")",
"{",
"return",
"new",
"LargeBlockTask",
"(",
")",
"{",
"@",
"Override",
"public",
"LargeBlockResponse",
"call",
"(",
")",
"throws",
"Exception",
"{",... | Get a new "load" task
@param blockId The block id of the block to load
@param block A ByteBuffer to write data intox
@return An instance of LargeBlockTask that will load a block | [
"Get",
"a",
"new",
"load",
"task"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/largequery/LargeBlockTask.java#L83-L98 | train |
VoltDB/voltdb | src/frontend/org/voltcore/utils/Pair.java | Pair.of | public static <T, U> Pair<T, U> of(T x, U y) {
return new Pair<T, U>(x, y);
} | java | public static <T, U> Pair<T, U> of(T x, U y) {
return new Pair<T, U>(x, y);
} | [
"public",
"static",
"<",
"T",
",",
"U",
">",
"Pair",
"<",
"T",
",",
"U",
">",
"of",
"(",
"T",
"x",
",",
"U",
"y",
")",
"{",
"return",
"new",
"Pair",
"<",
"T",
",",
"U",
">",
"(",
"x",
",",
"y",
")",
";",
"}"
] | Convenience class method for constructing pairs using Java's generic type
inference. | [
"Convenience",
"class",
"method",
"for",
"constructing",
"pairs",
"using",
"Java",
"s",
"generic",
"type",
"inference",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltcore/utils/Pair.java#L105-L107 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/Routine.java | Routine.newRoutine | public static Routine newRoutine(Method method) {
Routine routine = new Routine(SchemaObject.FUNCTION);
int offset = 0;
Class[] params = method.getParameterTypes();
String className = method.getDeclaringClass().getName();
StringBuffer sb =... | java | public static Routine newRoutine(Method method) {
Routine routine = new Routine(SchemaObject.FUNCTION);
int offset = 0;
Class[] params = method.getParameterTypes();
String className = method.getDeclaringClass().getName();
StringBuffer sb =... | [
"public",
"static",
"Routine",
"newRoutine",
"(",
"Method",
"method",
")",
"{",
"Routine",
"routine",
"=",
"new",
"Routine",
"(",
"SchemaObject",
".",
"FUNCTION",
")",
";",
"int",
"offset",
"=",
"0",
";",
"Class",
"[",
"]",
"params",
"=",
"method",
".",
... | Returns a new function Routine object based solely on a Java Method object. | [
"Returns",
"a",
"new",
"function",
"Routine",
"object",
"based",
"solely",
"on",
"a",
"Java",
"Method",
"object",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/Routine.java#L634-L681 | train |
VoltDB/voltdb | src/frontend/org/voltdb/sysprocs/saverestore/HashinatorSnapshotData.java | HashinatorSnapshotData.saveToBuffer | public ByteBuffer saveToBuffer(InstanceId instId)
throws IOException
{
if (instId == null) {
throw new IOException("Null instance ID.");
}
if (m_serData == null) {
throw new IOException("Uninitialized hashinator snapshot data.");
}
// Assu... | java | public ByteBuffer saveToBuffer(InstanceId instId)
throws IOException
{
if (instId == null) {
throw new IOException("Null instance ID.");
}
if (m_serData == null) {
throw new IOException("Uninitialized hashinator snapshot data.");
}
// Assu... | [
"public",
"ByteBuffer",
"saveToBuffer",
"(",
"InstanceId",
"instId",
")",
"throws",
"IOException",
"{",
"if",
"(",
"instId",
"==",
"null",
")",
"{",
"throw",
"new",
"IOException",
"(",
"\"Null instance ID.\"",
")",
";",
"}",
"if",
"(",
"m_serData",
"==",
"nu... | Save to output buffer, including header and config data.
@return byte buffer ready to write to a file.
@throws I/O exception on failure | [
"Save",
"to",
"output",
"buffer",
"including",
"header",
"and",
"config",
"data",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/sysprocs/saverestore/HashinatorSnapshotData.java#L75-L102 | train |
VoltDB/voltdb | src/frontend/org/voltdb/sysprocs/saverestore/HashinatorSnapshotData.java | HashinatorSnapshotData.restoreFromBuffer | public InstanceId restoreFromBuffer(ByteBuffer buf)
throws IOException
{
buf.rewind();
// Assumes config data is the last field.
int dataSize = buf.remaining() - OFFSET_DATA;
if (dataSize <= 0) {
throw new IOException("Hashinator snapshot data is too small.")... | java | public InstanceId restoreFromBuffer(ByteBuffer buf)
throws IOException
{
buf.rewind();
// Assumes config data is the last field.
int dataSize = buf.remaining() - OFFSET_DATA;
if (dataSize <= 0) {
throw new IOException("Hashinator snapshot data is too small.")... | [
"public",
"InstanceId",
"restoreFromBuffer",
"(",
"ByteBuffer",
"buf",
")",
"throws",
"IOException",
"{",
"buf",
".",
"rewind",
"(",
")",
";",
"// Assumes config data is the last field.",
"int",
"dataSize",
"=",
"buf",
".",
"remaining",
"(",
")",
"-",
"OFFSET_DATA... | Restore and check hashinator config data.
@param buf input buffer
@return instance ID read from buffer
@throws I/O exception on failure | [
"Restore",
"and",
"check",
"hashinator",
"config",
"data",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/sysprocs/saverestore/HashinatorSnapshotData.java#L110-L141 | train |
VoltDB/voltdb | src/frontend/org/voltdb/sysprocs/saverestore/HashinatorSnapshotData.java | HashinatorSnapshotData.restoreFromFile | public void restoreFromFile(File file) throws IOException
{
byte[] rawData = new byte[(int) file.length()];
ByteBuffer bufData = null;
FileInputStream fis = null;
DataInputStream dis = null;
try {
fis = new FileInputStream(file);
dis = new DataInputStr... | java | public void restoreFromFile(File file) throws IOException
{
byte[] rawData = new byte[(int) file.length()];
ByteBuffer bufData = null;
FileInputStream fis = null;
DataInputStream dis = null;
try {
fis = new FileInputStream(file);
dis = new DataInputStr... | [
"public",
"void",
"restoreFromFile",
"(",
"File",
"file",
")",
"throws",
"IOException",
"{",
"byte",
"[",
"]",
"rawData",
"=",
"new",
"byte",
"[",
"(",
"int",
")",
"file",
".",
"length",
"(",
")",
"]",
";",
"ByteBuffer",
"bufData",
"=",
"null",
";",
... | Restore and check hashinator config data from a file.
@param file hashinator config file
@param return the buffer with the raw data
@throws IOException | [
"Restore",
"and",
"check",
"hashinator",
"config",
"data",
"from",
"a",
"file",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/sysprocs/saverestore/HashinatorSnapshotData.java#L149-L170 | train |
VoltDB/voltdb | src/frontend/org/voltdb/compiler/VoltProjectBuilder.java | VoltProjectBuilder.createFileForSchema | public static File createFileForSchema(String ddlText) throws IOException {
File temp = File.createTempFile("literalschema", ".sql");
temp.deleteOnExit();
FileWriter out = new FileWriter(temp);
out.write(ddlText);
out.close();
return temp;
} | java | public static File createFileForSchema(String ddlText) throws IOException {
File temp = File.createTempFile("literalschema", ".sql");
temp.deleteOnExit();
FileWriter out = new FileWriter(temp);
out.write(ddlText);
out.close();
return temp;
} | [
"public",
"static",
"File",
"createFileForSchema",
"(",
"String",
"ddlText",
")",
"throws",
"IOException",
"{",
"File",
"temp",
"=",
"File",
".",
"createTempFile",
"(",
"\"literalschema\"",
",",
"\".sql\"",
")",
";",
"temp",
".",
"deleteOnExit",
"(",
")",
";",... | Creates a temporary file for the supplied schema text.
The file is not left open, and will be deleted upon process exit. | [
"Creates",
"a",
"temporary",
"file",
"for",
"the",
"supplied",
"schema",
"text",
".",
"The",
"file",
"is",
"not",
"left",
"open",
"and",
"will",
"be",
"deleted",
"upon",
"process",
"exit",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/compiler/VoltProjectBuilder.java#L491-L498 | train |
VoltDB/voltdb | src/frontend/org/voltdb/compiler/VoltProjectBuilder.java | VoltProjectBuilder.addLiteralSchema | public void addLiteralSchema(String ddlText) throws IOException {
File temp = createFileForSchema(ddlText);
addSchema(URLEncoder.encode(temp.getAbsolutePath(), "UTF-8"));
} | java | public void addLiteralSchema(String ddlText) throws IOException {
File temp = createFileForSchema(ddlText);
addSchema(URLEncoder.encode(temp.getAbsolutePath(), "UTF-8"));
} | [
"public",
"void",
"addLiteralSchema",
"(",
"String",
"ddlText",
")",
"throws",
"IOException",
"{",
"File",
"temp",
"=",
"createFileForSchema",
"(",
"ddlText",
")",
";",
"addSchema",
"(",
"URLEncoder",
".",
"encode",
"(",
"temp",
".",
"getAbsolutePath",
"(",
")... | Adds the supplied schema by creating a temp file for it. | [
"Adds",
"the",
"supplied",
"schema",
"by",
"creating",
"a",
"temp",
"file",
"for",
"it",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/compiler/VoltProjectBuilder.java#L503-L506 | train |
VoltDB/voltdb | src/frontend/org/voltdb/compiler/VoltProjectBuilder.java | VoltProjectBuilder.addStmtProcedure | public void addStmtProcedure(String name, String sql, String partitionInfoString) {
addProcedures(new ProcedureInfo(new String[0], name, sql,
ProcedurePartitionData.fromPartitionInfoString(partitionInfoString)));
} | java | public void addStmtProcedure(String name, String sql, String partitionInfoString) {
addProcedures(new ProcedureInfo(new String[0], name, sql,
ProcedurePartitionData.fromPartitionInfoString(partitionInfoString)));
} | [
"public",
"void",
"addStmtProcedure",
"(",
"String",
"name",
",",
"String",
"sql",
",",
"String",
"partitionInfoString",
")",
"{",
"addProcedures",
"(",
"new",
"ProcedureInfo",
"(",
"new",
"String",
"[",
"0",
"]",
",",
"name",
",",
"sql",
",",
"ProcedurePart... | compatible with old deprecated syntax for test ONLY | [
"compatible",
"with",
"old",
"deprecated",
"syntax",
"for",
"test",
"ONLY"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/compiler/VoltProjectBuilder.java#L535-L538 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java | StringConverter.hexStringToByteArray | public static byte[] hexStringToByteArray(String s) throws IOException {
int l = s.length();
byte[] data = new byte[l / 2 + (l % 2)];
int n,
b = 0;
boolean high = true;
int i = 0;
for (int j = 0; j < l; j++) {
char c = s... | java | public static byte[] hexStringToByteArray(String s) throws IOException {
int l = s.length();
byte[] data = new byte[l / 2 + (l % 2)];
int n,
b = 0;
boolean high = true;
int i = 0;
for (int j = 0; j < l; j++) {
char c = s... | [
"public",
"static",
"byte",
"[",
"]",
"hexStringToByteArray",
"(",
"String",
"s",
")",
"throws",
"IOException",
"{",
"int",
"l",
"=",
"s",
".",
"length",
"(",
")",
";",
"byte",
"[",
"]",
"data",
"=",
"new",
"byte",
"[",
"l",
"/",
"2",
"+",
"(",
"... | Converts a hexadecimal string into a byte array
@param s hexadecimal string
@return byte array for the hex string
@throws IOException | [
"Converts",
"a",
"hexadecimal",
"string",
"into",
"a",
"byte",
"array"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java#L122-L165 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java | StringConverter.sqlBitStringToBitMap | public static BitMap sqlBitStringToBitMap(String s) throws IOException {
int l = s.length();
int n;
int bitIndex = 0;
BitMap map = new BitMap(l);
for (int j = 0; j < l; j++) {
char c = s.charAt(j);
if (c == ' ') {
continue;... | java | public static BitMap sqlBitStringToBitMap(String s) throws IOException {
int l = s.length();
int n;
int bitIndex = 0;
BitMap map = new BitMap(l);
for (int j = 0; j < l; j++) {
char c = s.charAt(j);
if (c == ' ') {
continue;... | [
"public",
"static",
"BitMap",
"sqlBitStringToBitMap",
"(",
"String",
"s",
")",
"throws",
"IOException",
"{",
"int",
"l",
"=",
"s",
".",
"length",
"(",
")",
";",
"int",
"n",
";",
"int",
"bitIndex",
"=",
"0",
";",
"BitMap",
"map",
"=",
"new",
"BitMap",
... | Compacts a bit string into a BitMap
@param s bit string
@return byte array for the hex string
@throws IOException | [
"Compacts",
"a",
"bit",
"string",
"into",
"a",
"BitMap"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java#L176-L207 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java | StringConverter.byteArrayToBitString | public static String byteArrayToBitString(byte[] bytes, int bitCount) {
char[] s = new char[bitCount];
for (int j = 0; j < bitCount; j++) {
byte b = bytes[j / 8];
s[j] = BitMap.isSet(b, j % 8) ? '1'
: '0';
}
return new... | java | public static String byteArrayToBitString(byte[] bytes, int bitCount) {
char[] s = new char[bitCount];
for (int j = 0; j < bitCount; j++) {
byte b = bytes[j / 8];
s[j] = BitMap.isSet(b, j % 8) ? '1'
: '0';
}
return new... | [
"public",
"static",
"String",
"byteArrayToBitString",
"(",
"byte",
"[",
"]",
"bytes",
",",
"int",
"bitCount",
")",
"{",
"char",
"[",
"]",
"s",
"=",
"new",
"char",
"[",
"bitCount",
"]",
";",
"for",
"(",
"int",
"j",
"=",
"0",
";",
"j",
"<",
"bitCount... | Converts a byte array into a bit string
@param bytes byte array
@param bitCount number of bits
@return hex string | [
"Converts",
"a",
"byte",
"array",
"into",
"a",
"bit",
"string"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java#L270-L282 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java | StringConverter.byteArrayToSQLBitString | public static String byteArrayToSQLBitString(byte[] bytes, int bitCount) {
char[] s = new char[bitCount + 3];
s[0] = 'B';
s[1] = '\'';
int pos = 2;
for (int j = 0; j < bitCount; j++) {
byte b = bytes[j / 8];
s[pos++] = BitMap.isSet(b, j % 8) ? '1'
... | java | public static String byteArrayToSQLBitString(byte[] bytes, int bitCount) {
char[] s = new char[bitCount + 3];
s[0] = 'B';
s[1] = '\'';
int pos = 2;
for (int j = 0; j < bitCount; j++) {
byte b = bytes[j / 8];
s[pos++] = BitMap.isSet(b, j % 8) ? '1'
... | [
"public",
"static",
"String",
"byteArrayToSQLBitString",
"(",
"byte",
"[",
"]",
"bytes",
",",
"int",
"bitCount",
")",
"{",
"char",
"[",
"]",
"s",
"=",
"new",
"char",
"[",
"bitCount",
"+",
"3",
"]",
";",
"s",
"[",
"0",
"]",
"=",
"'",
"'",
";",
"s"... | Converts a byte array into an SQL binary string
@param bytes byte array
@param bitCount number of bits
@return hex string | [
"Converts",
"a",
"byte",
"array",
"into",
"an",
"SQL",
"binary",
"string"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java#L292-L311 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java | StringConverter.writeHexBytes | public static void writeHexBytes(byte[] o, int from, byte[] b) {
int len = b.length;
for (int i = 0; i < len; i++) {
int c = ((int) b[i]) & 0xff;
o[from++] = HEXBYTES[c >> 4 & 0xf];
o[from++] = HEXBYTES[c & 0xf];
}
} | java | public static void writeHexBytes(byte[] o, int from, byte[] b) {
int len = b.length;
for (int i = 0; i < len; i++) {
int c = ((int) b[i]) & 0xff;
o[from++] = HEXBYTES[c >> 4 & 0xf];
o[from++] = HEXBYTES[c & 0xf];
}
} | [
"public",
"static",
"void",
"writeHexBytes",
"(",
"byte",
"[",
"]",
"o",
",",
"int",
"from",
",",
"byte",
"[",
"]",
"b",
")",
"{",
"int",
"len",
"=",
"b",
".",
"length",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"len",
";",
"i",
... | Converts a byte array into hexadecimal characters which are written as
ASCII to the given output stream.
@param o output array
@param from offset into output array
@param b input array | [
"Converts",
"a",
"byte",
"array",
"into",
"hexadecimal",
"characters",
"which",
"are",
"written",
"as",
"ASCII",
"to",
"the",
"given",
"output",
"stream",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java#L321-L331 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java | StringConverter.stringToUTFBytes | public static int stringToUTFBytes(String str,
HsqlByteArrayOutputStream out) {
int strlen = str.length();
int c,
count = 0;
if (out.count + strlen + 8 > out.buffer.length) {
out.ensureRoom(strlen + 8);
}
char[] a... | java | public static int stringToUTFBytes(String str,
HsqlByteArrayOutputStream out) {
int strlen = str.length();
int c,
count = 0;
if (out.count + strlen + 8 > out.buffer.length) {
out.ensureRoom(strlen + 8);
}
char[] a... | [
"public",
"static",
"int",
"stringToUTFBytes",
"(",
"String",
"str",
",",
"HsqlByteArrayOutputStream",
"out",
")",
"{",
"int",
"strlen",
"=",
"str",
".",
"length",
"(",
")",
";",
"int",
"c",
",",
"count",
"=",
"0",
";",
"if",
"(",
"out",
".",
"count",
... | Writes a string to the specified DataOutput using UTF-8 encoding in a
machine-independent manner.
@param str a string to be written.
@param out destination to write to
@return The number of bytes written out. | [
"Writes",
"a",
"string",
"to",
"the",
"specified",
"DataOutput",
"using",
"UTF",
"-",
"8",
"encoding",
"in",
"a",
"machine",
"-",
"independent",
"manner",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java#L567-L604 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java | StringConverter.inputStreamToString | public static String inputStreamToString(InputStream x,
String encoding) throws IOException {
InputStreamReader in = new InputStreamReader(x, encoding);
StringWriter writer = new StringWriter();
int blocksize = 8 * 1024;
char[] buffer ... | java | public static String inputStreamToString(InputStream x,
String encoding) throws IOException {
InputStreamReader in = new InputStreamReader(x, encoding);
StringWriter writer = new StringWriter();
int blocksize = 8 * 1024;
char[] buffer ... | [
"public",
"static",
"String",
"inputStreamToString",
"(",
"InputStream",
"x",
",",
"String",
"encoding",
")",
"throws",
"IOException",
"{",
"InputStreamReader",
"in",
"=",
"new",
"InputStreamReader",
"(",
"x",
",",
"encoding",
")",
";",
"StringWriter",
"writer",
... | Using a Reader and a Writer, returns a String from an InputStream.
Method based on Hypersonic Code
@param x InputStream to read from
@throws IOException
@return a Java string | [
"Using",
"a",
"Reader",
"and",
"a",
"Writer",
"returns",
"a",
"String",
"from",
"an",
"InputStream",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java#L636-L657 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java | StringConverter.count | static int count(final String s, final char c) {
int pos = 0;
int count = 0;
if (s != null) {
while ((pos = s.indexOf(c, pos)) > -1) {
count++;
pos++;
}
}
return count;
} | java | static int count(final String s, final char c) {
int pos = 0;
int count = 0;
if (s != null) {
while ((pos = s.indexOf(c, pos)) > -1) {
count++;
pos++;
}
}
return count;
} | [
"static",
"int",
"count",
"(",
"final",
"String",
"s",
",",
"final",
"char",
"c",
")",
"{",
"int",
"pos",
"=",
"0",
";",
"int",
"count",
"=",
"0",
";",
"if",
"(",
"s",
"!=",
"null",
")",
"{",
"while",
"(",
"(",
"pos",
"=",
"s",
".",
"indexOf"... | Counts Character c in String s
@param s Java string
@param c character to count
@return int count | [
"Counts",
"Character",
"c",
"in",
"String",
"s"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/lib/StringConverter.java#L712-L725 | train |
VoltDB/voltdb | third_party/java/src/org/apache/zookeeper_voltpatches/jmx/ManagedUtil.java | ManagedUtil.registerLog4jMBeans | public static void registerLog4jMBeans() throws JMException {
if (Boolean.getBoolean("zookeeper.jmx.log4j.disable") == true) {
return;
}
MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
// Create and Register the top level Log4J MBean
HierarchyD... | java | public static void registerLog4jMBeans() throws JMException {
if (Boolean.getBoolean("zookeeper.jmx.log4j.disable") == true) {
return;
}
MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
// Create and Register the top level Log4J MBean
HierarchyD... | [
"public",
"static",
"void",
"registerLog4jMBeans",
"(",
")",
"throws",
"JMException",
"{",
"if",
"(",
"Boolean",
".",
"getBoolean",
"(",
"\"zookeeper.jmx.log4j.disable\"",
")",
"==",
"true",
")",
"{",
"return",
";",
"}",
"MBeanServer",
"mbs",
"=",
"ManagementFac... | Register the log4j JMX mbeans. Set environment variable
"zookeeper.jmx.log4j.disable" to true to disable registration.
@see http://logging.apache.org/log4j/1.2/apidocs/index.html?org/apache/log4j/jmx/package-summary.html
@throws JMException if registration fails | [
"Register",
"the",
"log4j",
"JMX",
"mbeans",
".",
"Set",
"environment",
"variable",
"zookeeper",
".",
"jmx",
".",
"log4j",
".",
"disable",
"to",
"true",
"to",
"disable",
"registration",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/third_party/java/src/org/apache/zookeeper_voltpatches/jmx/ManagedUtil.java#L43-L70 | train |
VoltDB/voltdb | third_party/java/src/org/apache/zookeeper_voltpatches/ZooKeeper.java | ZooKeeper.create | public void create(final String path, byte data[], List<ACL> acl,
CreateMode createMode, StringCallback cb, Object ctx) {
verbotenThreadCheck();
final String clientPath = path;
PathUtils.validatePath(clientPath, createMode.isSequential());
final String serverPath = prependCh... | java | public void create(final String path, byte data[], List<ACL> acl,
CreateMode createMode, StringCallback cb, Object ctx) {
verbotenThreadCheck();
final String clientPath = path;
PathUtils.validatePath(clientPath, createMode.isSequential());
final String serverPath = prependCh... | [
"public",
"void",
"create",
"(",
"final",
"String",
"path",
",",
"byte",
"data",
"[",
"]",
",",
"List",
"<",
"ACL",
">",
"acl",
",",
"CreateMode",
"createMode",
",",
"StringCallback",
"cb",
",",
"Object",
"ctx",
")",
"{",
"verbotenThreadCheck",
"(",
")",... | The Asynchronous version of create. The request doesn't actually until
the asynchronous callback is called.
@see #create(String, byte[], List, CreateMode) | [
"The",
"Asynchronous",
"version",
"of",
"create",
".",
"The",
"request",
"doesn",
"t",
"actually",
"until",
"the",
"asynchronous",
"callback",
"is",
"called",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/third_party/java/src/org/apache/zookeeper_voltpatches/ZooKeeper.java#L683-L702 | train |
VoltDB/voltdb | third_party/java/src/org/apache/zookeeper_voltpatches/ZooKeeper.java | ZooKeeper.delete | public void delete(final String path, int version, VoidCallback cb,
Object ctx) {
verbotenThreadCheck();
final String clientPath = path;
PathUtils.validatePath(clientPath);
final String serverPath;
// maintain semantics even in chroot case
// specifically - ... | java | public void delete(final String path, int version, VoidCallback cb,
Object ctx) {
verbotenThreadCheck();
final String clientPath = path;
PathUtils.validatePath(clientPath);
final String serverPath;
// maintain semantics even in chroot case
// specifically - ... | [
"public",
"void",
"delete",
"(",
"final",
"String",
"path",
",",
"int",
"version",
",",
"VoidCallback",
"cb",
",",
"Object",
"ctx",
")",
"{",
"verbotenThreadCheck",
"(",
")",
";",
"final",
"String",
"clientPath",
"=",
"path",
";",
"PathUtils",
".",
"valida... | The Asynchronous version of delete. The request doesn't actually until
the asynchronous callback is called.
@see #delete(String, int) | [
"The",
"Asynchronous",
"version",
"of",
"delete",
".",
"The",
"request",
"doesn",
"t",
"actually",
"until",
"the",
"asynchronous",
"callback",
"is",
"called",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/third_party/java/src/org/apache/zookeeper_voltpatches/ZooKeeper.java#L770-L796 | train |
VoltDB/voltdb | third_party/java/src/org/apache/zookeeper_voltpatches/ZooKeeper.java | ZooKeeper.setData | public void setData(final String path, byte data[], int version,
StatCallback cb, Object ctx) {
verbotenThreadCheck();
final String clientPath = path;
PathUtils.validatePath(clientPath);
final String serverPath = prependChroot(clientPath);
RequestHeader h = new Requ... | java | public void setData(final String path, byte data[], int version,
StatCallback cb, Object ctx) {
verbotenThreadCheck();
final String clientPath = path;
PathUtils.validatePath(clientPath);
final String serverPath = prependChroot(clientPath);
RequestHeader h = new Requ... | [
"public",
"void",
"setData",
"(",
"final",
"String",
"path",
",",
"byte",
"data",
"[",
"]",
",",
"int",
"version",
",",
"StatCallback",
"cb",
",",
"Object",
"ctx",
")",
"{",
"verbotenThreadCheck",
"(",
")",
";",
"final",
"String",
"clientPath",
"=",
"pat... | The Asynchronous version of setData. The request doesn't actually until
the asynchronous callback is called.
@see #setData(String, byte[], int) | [
"The",
"Asynchronous",
"version",
"of",
"setData",
".",
"The",
"request",
"doesn",
"t",
"actually",
"until",
"the",
"asynchronous",
"callback",
"is",
"called",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/third_party/java/src/org/apache/zookeeper_voltpatches/ZooKeeper.java#L1103-L1120 | train |
VoltDB/voltdb | third_party/java/src/org/apache/zookeeper_voltpatches/ZooKeeper.java | ZooKeeper.getACL | public void getACL(final String path, Stat stat, ACLCallback cb, Object ctx) {
verbotenThreadCheck();
final String clientPath = path;
PathUtils.validatePath(clientPath);
final String serverPath = prependChroot(clientPath);
RequestHeader h = new RequestHeader();
h.setTyp... | java | public void getACL(final String path, Stat stat, ACLCallback cb, Object ctx) {
verbotenThreadCheck();
final String clientPath = path;
PathUtils.validatePath(clientPath);
final String serverPath = prependChroot(clientPath);
RequestHeader h = new RequestHeader();
h.setTyp... | [
"public",
"void",
"getACL",
"(",
"final",
"String",
"path",
",",
"Stat",
"stat",
",",
"ACLCallback",
"cb",
",",
"Object",
"ctx",
")",
"{",
"verbotenThreadCheck",
"(",
")",
";",
"final",
"String",
"clientPath",
"=",
"path",
";",
"PathUtils",
".",
"validateP... | The Asynchronous version of getACL. The request doesn't actually until
the asynchronous callback is called.
@see #getACL(String, Stat) | [
"The",
"Asynchronous",
"version",
"of",
"getACL",
".",
"The",
"request",
"doesn",
"t",
"actually",
"until",
"the",
"asynchronous",
"callback",
"is",
"called",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/third_party/java/src/org/apache/zookeeper_voltpatches/ZooKeeper.java#L1168-L1182 | train |
VoltDB/voltdb | third_party/java/src/org/apache/zookeeper_voltpatches/ZooKeeper.java | ZooKeeper.setACL | public void setACL(final String path, List<ACL> acl, int version,
StatCallback cb, Object ctx) {
verbotenThreadCheck();
final String clientPath = path;
PathUtils.validatePath(clientPath);
final String serverPath = prependChroot(clientPath);
RequestHeader h = new Req... | java | public void setACL(final String path, List<ACL> acl, int version,
StatCallback cb, Object ctx) {
verbotenThreadCheck();
final String clientPath = path;
PathUtils.validatePath(clientPath);
final String serverPath = prependChroot(clientPath);
RequestHeader h = new Req... | [
"public",
"void",
"setACL",
"(",
"final",
"String",
"path",
",",
"List",
"<",
"ACL",
">",
"acl",
",",
"int",
"version",
",",
"StatCallback",
"cb",
",",
"Object",
"ctx",
")",
"{",
"verbotenThreadCheck",
"(",
")",
";",
"final",
"String",
"clientPath",
"=",... | The Asynchronous version of setACL. The request doesn't actually until
the asynchronous callback is called.
@see #setACL(String, List, int) | [
"The",
"Asynchronous",
"version",
"of",
"setACL",
".",
"The",
"request",
"doesn",
"t",
"actually",
"until",
"the",
"asynchronous",
"callback",
"is",
"called",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/third_party/java/src/org/apache/zookeeper_voltpatches/ZooKeeper.java#L1240-L1257 | train |
VoltDB/voltdb | third_party/java/src/org/apache/zookeeper_voltpatches/ZooKeeper.java | ZooKeeper.sync | public void sync(final String path, VoidCallback cb, Object ctx) {
verbotenThreadCheck();
final String clientPath = path;
PathUtils.validatePath(clientPath);
final String serverPath = prependChroot(clientPath);
RequestHeader h = new RequestHeader();
h.setType(ZooDefs.Op... | java | public void sync(final String path, VoidCallback cb, Object ctx) {
verbotenThreadCheck();
final String clientPath = path;
PathUtils.validatePath(clientPath);
final String serverPath = prependChroot(clientPath);
RequestHeader h = new RequestHeader();
h.setType(ZooDefs.Op... | [
"public",
"void",
"sync",
"(",
"final",
"String",
"path",
",",
"VoidCallback",
"cb",
",",
"Object",
"ctx",
")",
"{",
"verbotenThreadCheck",
"(",
")",
";",
"final",
"String",
"clientPath",
"=",
"path",
";",
"PathUtils",
".",
"validatePath",
"(",
"clientPath",... | Asynchronous sync. Flushes channel between process and leader.
@param path
@param cb
a handler for the callback
@param ctx
context to be provided to the callback
@throws IllegalArgumentException
if an invalid path is specified | [
"Asynchronous",
"sync",
".",
"Flushes",
"channel",
"between",
"process",
"and",
"leader",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/third_party/java/src/org/apache/zookeeper_voltpatches/ZooKeeper.java#L1529-L1543 | train |
VoltDB/voltdb | src/frontend/org/voltdb/client/ClientImpl.java | ClientImpl.callProcedureWithTimeout | @Override
public final boolean callProcedureWithTimeout(
ProcedureCallback callback,
int batchTimeout,
String procName,
Object... parameters)
throws IOException, NoConnectionsException
{
//Time unit doesn't matter in this case since the... | java | @Override
public final boolean callProcedureWithTimeout(
ProcedureCallback callback,
int batchTimeout,
String procName,
Object... parameters)
throws IOException, NoConnectionsException
{
//Time unit doesn't matter in this case since the... | [
"@",
"Override",
"public",
"final",
"boolean",
"callProcedureWithTimeout",
"(",
"ProcedureCallback",
"callback",
",",
"int",
"batchTimeout",
",",
"String",
"procName",
",",
"Object",
"...",
"parameters",
")",
"throws",
"IOException",
",",
"NoConnectionsException",
"{"... | Asynchronously invoke a procedure call with timeout.
@param callback TransactionCallback that will be invoked with procedure results.
@param batchTimeout procedure invocation batch timeout.
@param procName class name (not qualified by package) of the procedure to execute.
@param parameters vararg list of procedure's pa... | [
"Asynchronously",
"invoke",
"a",
"procedure",
"call",
"with",
"timeout",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/client/ClientImpl.java#L354-L371 | train |
VoltDB/voltdb | src/frontend/org/voltdb/client/ClientImpl.java | ClientImpl.getUpdateCatalogParams | private Object[] getUpdateCatalogParams(File catalogPath, File deploymentPath)
throws IOException {
Object[] params = new Object[2];
if (catalogPath != null) {
params[0] = ClientUtils.fileToBytes(catalogPath);
}
else {
params[0] = null;
}
if (d... | java | private Object[] getUpdateCatalogParams(File catalogPath, File deploymentPath)
throws IOException {
Object[] params = new Object[2];
if (catalogPath != null) {
params[0] = ClientUtils.fileToBytes(catalogPath);
}
else {
params[0] = null;
}
if (d... | [
"private",
"Object",
"[",
"]",
"getUpdateCatalogParams",
"(",
"File",
"catalogPath",
",",
"File",
"deploymentPath",
")",
"throws",
"IOException",
"{",
"Object",
"[",
"]",
"params",
"=",
"new",
"Object",
"[",
"2",
"]",
";",
"if",
"(",
"catalogPath",
"!=",
"... | Serializes catalog and deployment file for UpdateApplicationCatalog.
Catalog is serialized into byte array, deployment file is serialized into
string.
@param catalogPath
@param deploymentPath
@return Parameters that can be passed to UpdateApplicationCatalog
@throws IOException If either of the files cannot be read | [
"Serializes",
"catalog",
"and",
"deployment",
"file",
"for",
"UpdateApplicationCatalog",
".",
"Catalog",
"is",
"serialized",
"into",
"byte",
"array",
"deployment",
"file",
"is",
"serialized",
"into",
"string",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/client/ClientImpl.java#L547-L563 | train |
VoltDB/voltdb | src/frontend/org/voltdb/client/ClientImpl.java | ClientImpl.close | @Override
public void close() throws InterruptedException {
if (m_blessedThreadIds.contains(Thread.currentThread().getId())) {
throw new RuntimeException("Can't invoke backpressureBarrier from within the client callback thread " +
" without deadlocking the client library");
... | java | @Override
public void close() throws InterruptedException {
if (m_blessedThreadIds.contains(Thread.currentThread().getId())) {
throw new RuntimeException("Can't invoke backpressureBarrier from within the client callback thread " +
" without deadlocking the client library");
... | [
"@",
"Override",
"public",
"void",
"close",
"(",
")",
"throws",
"InterruptedException",
"{",
"if",
"(",
"m_blessedThreadIds",
".",
"contains",
"(",
"Thread",
".",
"currentThread",
"(",
")",
".",
"getId",
"(",
")",
")",
")",
"{",
"throw",
"new",
"RuntimeExc... | Shutdown the client closing all network connections and release
all memory resources.
@throws InterruptedException | [
"Shutdown",
"the",
"client",
"closing",
"all",
"network",
"connections",
"and",
"release",
"all",
"memory",
"resources",
"."
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/client/ClientImpl.java#L622-L648 | train |
VoltDB/voltdb | src/frontend/org/voltdb/client/ClientImpl.java | ClientImpl.backpressureBarrier | public boolean backpressureBarrier(final long start, long timeoutNanos) throws InterruptedException {
if (m_isShutdown) {
return false;
}
if (m_blessedThreadIds.contains(Thread.currentThread().getId())) {
throw new RuntimeException("Can't invoke backpressureBarrier from w... | java | public boolean backpressureBarrier(final long start, long timeoutNanos) throws InterruptedException {
if (m_isShutdown) {
return false;
}
if (m_blessedThreadIds.contains(Thread.currentThread().getId())) {
throw new RuntimeException("Can't invoke backpressureBarrier from w... | [
"public",
"boolean",
"backpressureBarrier",
"(",
"final",
"long",
"start",
",",
"long",
"timeoutNanos",
")",
"throws",
"InterruptedException",
"{",
"if",
"(",
"m_isShutdown",
")",
"{",
"return",
"false",
";",
"}",
"if",
"(",
"m_blessedThreadIds",
".",
"contains"... | Wait on backpressure with a timeout. Returns true on timeout, false otherwise.
Timeout nanos is the initial timeout quantity which will be adjusted to reflect remaining
time on spurious wakeups | [
"Wait",
"on",
"backpressure",
"with",
"a",
"timeout",
".",
"Returns",
"true",
"on",
"timeout",
"false",
"otherwise",
".",
"Timeout",
"nanos",
"is",
"the",
"initial",
"timeout",
"quantity",
"which",
"will",
"be",
"adjusted",
"to",
"reflect",
"remaining",
"time"... | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/frontend/org/voltdb/client/ClientImpl.java#L660-L703 | train |
VoltDB/voltdb | src/hsqldb19b3/org/hsqldb_voltpatches/rowio/RowInputBase.java | RowInputBase.readData | public Object[] readData(Type[] colTypes)
throws IOException, HsqlException {
int l = colTypes.length;
Object[] data = new Object[l];
Object o;
Type type;
for (int i = 0; i < l; i++) {
if (checkNull()) {
continue;
}
... | java | public Object[] readData(Type[] colTypes)
throws IOException, HsqlException {
int l = colTypes.length;
Object[] data = new Object[l];
Object o;
Type type;
for (int i = 0; i < l; i++) {
if (checkNull()) {
continue;
}
... | [
"public",
"Object",
"[",
"]",
"readData",
"(",
"Type",
"[",
"]",
"colTypes",
")",
"throws",
"IOException",
",",
"HsqlException",
"{",
"int",
"l",
"=",
"colTypes",
".",
"length",
";",
"Object",
"[",
"]",
"data",
"=",
"new",
"Object",
"[",
"l",
"]",
";... | reads row data from a stream using the JDBC types in colTypes
@param colTypes
@throws IOException
@throws HsqlException | [
"reads",
"row",
"data",
"from",
"a",
"stream",
"using",
"the",
"JDBC",
"types",
"in",
"colTypes"
] | 8afc1031e475835344b5497ea9e7203bc95475ac | https://github.com/VoltDB/voltdb/blob/8afc1031e475835344b5497ea9e7203bc95475ac/src/hsqldb19b3/org/hsqldb_voltpatches/rowio/RowInputBase.java#L150-L270 | train |
mpatric/mp3agic | src/main/java/com/mpatric/mp3agic/ID3v1Genres.java | ID3v1Genres.matchGenreDescription | public static int matchGenreDescription(String description) {
if (description != null && description.length() > 0) {
for (int i = 0; i < ID3v1Genres.GENRES.length; i++) {
if (ID3v1Genres.GENRES[i].equalsIgnoreCase(description)) {
return i;
}
}
}
return -1;
} | java | public static int matchGenreDescription(String description) {
if (description != null && description.length() > 0) {
for (int i = 0; i < ID3v1Genres.GENRES.length; i++) {
if (ID3v1Genres.GENRES[i].equalsIgnoreCase(description)) {
return i;
}
}
}
return -1;
} | [
"public",
"static",
"int",
"matchGenreDescription",
"(",
"String",
"description",
")",
"{",
"if",
"(",
"description",
"!=",
"null",
"&&",
"description",
".",
"length",
"(",
")",
">",
"0",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"ID... | Match provided description against genres, ignoring case.
@param description genre description
@return matching genre index or -1 | [
"Match",
"provided",
"description",
"against",
"genres",
"ignoring",
"case",
"."
] | c3917e8438124142e65e7d816142bff845ac93aa | https://github.com/mpatric/mp3agic/blob/c3917e8438124142e65e7d816142bff845ac93aa/src/main/java/com/mpatric/mp3agic/ID3v1Genres.java#L163-L172 | train |
iwgang/CountdownView | library/src/main/java/cn/iwgang/countdownview/CountdownView.java | CountdownView.measureSize | private int measureSize(int specType, int contentSize, int measureSpec) {
int result;
int specMode = MeasureSpec.getMode(measureSpec);
int specSize = MeasureSpec.getSize(measureSpec);
if (specMode == MeasureSpec.EXACTLY) {
result = Math.max(contentSize, specSize);
} ... | java | private int measureSize(int specType, int contentSize, int measureSpec) {
int result;
int specMode = MeasureSpec.getMode(measureSpec);
int specSize = MeasureSpec.getSize(measureSpec);
if (specMode == MeasureSpec.EXACTLY) {
result = Math.max(contentSize, specSize);
} ... | [
"private",
"int",
"measureSize",
"(",
"int",
"specType",
",",
"int",
"contentSize",
",",
"int",
"measureSpec",
")",
"{",
"int",
"result",
";",
"int",
"specMode",
"=",
"MeasureSpec",
".",
"getMode",
"(",
"measureSpec",
")",
";",
"int",
"specSize",
"=",
"Mea... | measure view Size
@param specType 1 width 2 height
@param contentSize all content view size
@param measureSpec spec
@return measureSize | [
"measure",
"view",
"Size"
] | 3433615826b6e0a38b92e3362ba032947d9e8be7 | https://github.com/iwgang/CountdownView/blob/3433615826b6e0a38b92e3362ba032947d9e8be7/library/src/main/java/cn/iwgang/countdownview/CountdownView.java#L66-L86 | train |
iwgang/CountdownView | library/src/main/java/cn/iwgang/countdownview/BaseCountdown.java | BaseCountdown.initSuffixMargin | private void initSuffixMargin() {
int defSuffixLRMargin = Utils.dp2px(mContext, DEFAULT_SUFFIX_LR_MARGIN);
boolean isSuffixLRMarginNull = true;
if (mSuffixLRMargin >= 0) {
isSuffixLRMarginNull = false;
}
if (isShowDay && mSuffixDayTextWidth > 0) {
if (mS... | java | private void initSuffixMargin() {
int defSuffixLRMargin = Utils.dp2px(mContext, DEFAULT_SUFFIX_LR_MARGIN);
boolean isSuffixLRMarginNull = true;
if (mSuffixLRMargin >= 0) {
isSuffixLRMarginNull = false;
}
if (isShowDay && mSuffixDayTextWidth > 0) {
if (mS... | [
"private",
"void",
"initSuffixMargin",
"(",
")",
"{",
"int",
"defSuffixLRMargin",
"=",
"Utils",
".",
"dp2px",
"(",
"mContext",
",",
"DEFAULT_SUFFIX_LR_MARGIN",
")",
";",
"boolean",
"isSuffixLRMarginNull",
"=",
"true",
";",
"if",
"(",
"mSuffixLRMargin",
">=",
"0"... | initialize suffix margin | [
"initialize",
"suffix",
"margin"
] | 3433615826b6e0a38b92e3362ba032947d9e8be7 | https://github.com/iwgang/CountdownView/blob/3433615826b6e0a38b92e3362ba032947d9e8be7/library/src/main/java/cn/iwgang/countdownview/BaseCountdown.java#L269-L386 | train |
iwgang/CountdownView | library/src/main/java/cn/iwgang/countdownview/BaseCountdown.java | BaseCountdown.getAllContentWidth | public int getAllContentWidth() {
float width = getAllContentWidthBase(mTimeTextWidth);
if (!isConvertDaysToHours && isShowDay) {
if (isDayLargeNinetyNine) {
Rect rect = new Rect();
String tempDay = String.valueOf(mDay);
mTimeTextPaint.getText... | java | public int getAllContentWidth() {
float width = getAllContentWidthBase(mTimeTextWidth);
if (!isConvertDaysToHours && isShowDay) {
if (isDayLargeNinetyNine) {
Rect rect = new Rect();
String tempDay = String.valueOf(mDay);
mTimeTextPaint.getText... | [
"public",
"int",
"getAllContentWidth",
"(",
")",
"{",
"float",
"width",
"=",
"getAllContentWidthBase",
"(",
"mTimeTextWidth",
")",
";",
"if",
"(",
"!",
"isConvertDaysToHours",
"&&",
"isShowDay",
")",
"{",
"if",
"(",
"isDayLargeNinetyNine",
")",
"{",
"Rect",
"r... | get all view width
@return all view width | [
"get",
"all",
"view",
"width"
] | 3433615826b6e0a38b92e3362ba032947d9e8be7 | https://github.com/iwgang/CountdownView/blob/3433615826b6e0a38b92e3362ba032947d9e8be7/library/src/main/java/cn/iwgang/countdownview/BaseCountdown.java#L504-L521 | train |
iwgang/CountdownView | library/src/main/java/cn/iwgang/countdownview/BackgroundCountdown.java | BackgroundCountdown.initTimeTextBaselineAndTimeBgTopPadding | private float initTimeTextBaselineAndTimeBgTopPadding(int viewHeight, int viewPaddingTop, int viewPaddingBottom, int contentAllHeight) {
float topPaddingSize;
if (viewPaddingTop == viewPaddingBottom) {
// center
topPaddingSize = (viewHeight - contentAllHeight) / 2;
} else... | java | private float initTimeTextBaselineAndTimeBgTopPadding(int viewHeight, int viewPaddingTop, int viewPaddingBottom, int contentAllHeight) {
float topPaddingSize;
if (viewPaddingTop == viewPaddingBottom) {
// center
topPaddingSize = (viewHeight - contentAllHeight) / 2;
} else... | [
"private",
"float",
"initTimeTextBaselineAndTimeBgTopPadding",
"(",
"int",
"viewHeight",
",",
"int",
"viewPaddingTop",
",",
"int",
"viewPaddingBottom",
",",
"int",
"contentAllHeight",
")",
"{",
"float",
"topPaddingSize",
";",
"if",
"(",
"viewPaddingTop",
"==",
"viewPa... | initialize time text baseline
and
time background top padding | [
"initialize",
"time",
"text",
"baseline",
"and",
"time",
"background",
"top",
"padding"
] | 3433615826b6e0a38b92e3362ba032947d9e8be7 | https://github.com/iwgang/CountdownView/blob/3433615826b6e0a38b92e3362ba032947d9e8be7/library/src/main/java/cn/iwgang/countdownview/BackgroundCountdown.java#L240-L271 | train |
haraldk/TwelveMonkeys | common/common-image/src/main/java/com/twelvemonkeys/image/BrightnessContrastFilter.java | BrightnessContrastFilter.filterRGB | public int filterRGB(int pX, int pY, int pARGB) {
// Get color components
int r = pARGB >> 16 & 0xFF;
int g = pARGB >> 8 & 0xFF;
int b = pARGB & 0xFF;
// Scale to new contrast
r = LUT[r];
g = LUT[g];
b = LUT[b];
// Return ARGB pixel, l... | java | public int filterRGB(int pX, int pY, int pARGB) {
// Get color components
int r = pARGB >> 16 & 0xFF;
int g = pARGB >> 8 & 0xFF;
int b = pARGB & 0xFF;
// Scale to new contrast
r = LUT[r];
g = LUT[g];
b = LUT[b];
// Return ARGB pixel, l... | [
"public",
"int",
"filterRGB",
"(",
"int",
"pX",
",",
"int",
"pY",
",",
"int",
"pARGB",
")",
"{",
"// Get color components\r",
"int",
"r",
"=",
"pARGB",
">>",
"16",
"&",
"0xFF",
";",
"int",
"g",
"=",
"pARGB",
">>",
"8",
"&",
"0xFF",
";",
"int",
"b",... | Filters one pixel, adjusting brightness and contrast according to this
filter.
@param pX x
@param pY y
@param pARGB pixel value in default color space
@return the filtered pixel value in the default color space | [
"Filters",
"one",
"pixel",
"adjusting",
"brightness",
"and",
"contrast",
"according",
"to",
"this",
"filter",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-image/src/main/java/com/twelvemonkeys/image/BrightnessContrastFilter.java#L156-L169 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/DebugUtil.java | DebugUtil.buildTimestamp | protected static String buildTimestamp(final Calendar pCalendar) {
if (pCalendar == null) {
return CALENDAR_IS_NULL_ERROR_MESSAGE;
}
// The timestamp format
StringBuilder timestamp = new StringBuilder();
//timestamp.append(DateUtil.getMonthName(new Integer(pCalendar.get(Calendar.MO... | java | protected static String buildTimestamp(final Calendar pCalendar) {
if (pCalendar == null) {
return CALENDAR_IS_NULL_ERROR_MESSAGE;
}
// The timestamp format
StringBuilder timestamp = new StringBuilder();
//timestamp.append(DateUtil.getMonthName(new Integer(pCalendar.get(Calendar.MO... | [
"protected",
"static",
"String",
"buildTimestamp",
"(",
"final",
"Calendar",
"pCalendar",
")",
"{",
"if",
"(",
"pCalendar",
"==",
"null",
")",
"{",
"return",
"CALENDAR_IS_NULL_ERROR_MESSAGE",
";",
"}",
"// The timestamp format\r",
"StringBuilder",
"timestamp",
"=",
... | Builds a presentation of the given calendar's time. This method contains the common timestamp format used in this class.
@return a presentation of the calendar time. | [
"Builds",
"a",
"presentation",
"of",
"the",
"given",
"calendar",
"s",
"time",
".",
"This",
"method",
"contains",
"the",
"common",
"timestamp",
"format",
"used",
"in",
"this",
"class",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/DebugUtil.java#L818-L837 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/DateUtil.java | DateUtil.roundToHour | public static long roundToHour(final long pTime, final TimeZone pTimeZone) {
int offset = pTimeZone.getOffset(pTime);
return ((pTime / HOUR) * HOUR) - offset;
} | java | public static long roundToHour(final long pTime, final TimeZone pTimeZone) {
int offset = pTimeZone.getOffset(pTime);
return ((pTime / HOUR) * HOUR) - offset;
} | [
"public",
"static",
"long",
"roundToHour",
"(",
"final",
"long",
"pTime",
",",
"final",
"TimeZone",
"pTimeZone",
")",
"{",
"int",
"offset",
"=",
"pTimeZone",
".",
"getOffset",
"(",
"pTime",
")",
";",
"return",
"(",
"(",
"pTime",
"/",
"HOUR",
")",
"*",
... | Rounds the given time down to the closest hour, using the given timezone.
@param pTime time
@param pTimeZone the timezone to use when rounding
@return the time rounded to the closest hour. | [
"Rounds",
"the",
"given",
"time",
"down",
"to",
"the",
"closest",
"hour",
"using",
"the",
"given",
"timezone",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/DateUtil.java#L178-L181 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/DateUtil.java | DateUtil.roundToDay | public static long roundToDay(final long pTime, final TimeZone pTimeZone) {
int offset = pTimeZone.getOffset(pTime);
return (((pTime + offset) / DAY) * DAY) - offset;
} | java | public static long roundToDay(final long pTime, final TimeZone pTimeZone) {
int offset = pTimeZone.getOffset(pTime);
return (((pTime + offset) / DAY) * DAY) - offset;
} | [
"public",
"static",
"long",
"roundToDay",
"(",
"final",
"long",
"pTime",
",",
"final",
"TimeZone",
"pTimeZone",
")",
"{",
"int",
"offset",
"=",
"pTimeZone",
".",
"getOffset",
"(",
"pTime",
")",
";",
"return",
"(",
"(",
"(",
"pTime",
"+",
"offset",
")",
... | Rounds the given time down to the closest day, using the given timezone.
@param pTime time
@param pTimeZone the timezone to use when rounding
@return the time rounded to the closest day. | [
"Rounds",
"the",
"given",
"time",
"down",
"to",
"the",
"closest",
"day",
"using",
"the",
"given",
"timezone",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/DateUtil.java#L200-L203 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/convert/ConverterImpl.java | ConverterImpl.getConverterForType | private PropertyConverter getConverterForType(Class pType) {
Object converter;
Class cl = pType;
// Loop until we find a suitable converter
do {
// Have a match, return converter
if ((converter = getInstance().converters.get(cl)) != null) {
... | java | private PropertyConverter getConverterForType(Class pType) {
Object converter;
Class cl = pType;
// Loop until we find a suitable converter
do {
// Have a match, return converter
if ((converter = getInstance().converters.get(cl)) != null) {
... | [
"private",
"PropertyConverter",
"getConverterForType",
"(",
"Class",
"pType",
")",
"{",
"Object",
"converter",
";",
"Class",
"cl",
"=",
"pType",
";",
"// Loop until we find a suitable converter\r",
"do",
"{",
"// Have a match, return converter\r",
"if",
"(",
"(",
"conve... | Gets the registered converter for the given type.
@param pType the type to convert to
@return an instance of a {@code PropertyConverter} or {@code null} | [
"Gets",
"the",
"registered",
"converter",
"for",
"the",
"given",
"type",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/convert/ConverterImpl.java#L57-L73 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/convert/ConverterImpl.java | ConverterImpl.toObject | public Object toObject(String pString, Class pType, String pFormat)
throws ConversionException {
if (pString == null) {
return null;
}
if (pType == null) {
throw new MissingTypeException();
}
// Get converter
PropertyConver... | java | public Object toObject(String pString, Class pType, String pFormat)
throws ConversionException {
if (pString == null) {
return null;
}
if (pType == null) {
throw new MissingTypeException();
}
// Get converter
PropertyConver... | [
"public",
"Object",
"toObject",
"(",
"String",
"pString",
",",
"Class",
"pType",
",",
"String",
"pFormat",
")",
"throws",
"ConversionException",
"{",
"if",
"(",
"pString",
"==",
"null",
")",
"{",
"return",
"null",
";",
"}",
"if",
"(",
"pType",
"==",
"nul... | Converts the string to an object of the given type, parsing after the
given format.
@param pString the string to convert
@param pType the type to convert to
@param pFormat the vonversion format
@return the object created from the given string.
@throws ConversionException if the string cannot be converted for any
rea... | [
"Converts",
"the",
"string",
"to",
"an",
"object",
"of",
"the",
"given",
"type",
"parsing",
"after",
"the",
"given",
"format",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/convert/ConverterImpl.java#L88-L108 | train |
haraldk/TwelveMonkeys | contrib/src/main/java/com/twelvemonkeys/contrib/tiff/TIFFUtilities.java | TIFFUtilities.merge | public static void merge(List<File> inputFiles, File outputFile) throws IOException {
ImageOutputStream output = null;
try {
output = ImageIO.createImageOutputStream(outputFile);
for (File file : inputFiles) {
ImageInputStream input = null;
try {
... | java | public static void merge(List<File> inputFiles, File outputFile) throws IOException {
ImageOutputStream output = null;
try {
output = ImageIO.createImageOutputStream(outputFile);
for (File file : inputFiles) {
ImageInputStream input = null;
try {
... | [
"public",
"static",
"void",
"merge",
"(",
"List",
"<",
"File",
">",
"inputFiles",
",",
"File",
"outputFile",
")",
"throws",
"IOException",
"{",
"ImageOutputStream",
"output",
"=",
"null",
";",
"try",
"{",
"output",
"=",
"ImageIO",
".",
"createImageOutputStream... | Merges all pages from the input TIFF files into one TIFF file at the
output location.
@param inputFiles
@param outputFile
@throws IOException | [
"Merges",
"all",
"pages",
"from",
"the",
"input",
"TIFF",
"files",
"into",
"one",
"TIFF",
"file",
"at",
"the",
"output",
"location",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/contrib/src/main/java/com/twelvemonkeys/contrib/tiff/TIFFUtilities.java#L73-L98 | train |
haraldk/TwelveMonkeys | contrib/src/main/java/com/twelvemonkeys/contrib/tiff/TIFFUtilities.java | TIFFUtilities.split | public static List<File> split(File inputFile, File outputDirectory) throws IOException {
ImageInputStream input = null;
List<File> outputFiles = new ArrayList<>();
try {
input = ImageIO.createImageInputStream(inputFile);
List<TIFFPage> pages = getPages(input);
... | java | public static List<File> split(File inputFile, File outputDirectory) throws IOException {
ImageInputStream input = null;
List<File> outputFiles = new ArrayList<>();
try {
input = ImageIO.createImageInputStream(inputFile);
List<TIFFPage> pages = getPages(input);
... | [
"public",
"static",
"List",
"<",
"File",
">",
"split",
"(",
"File",
"inputFile",
",",
"File",
"outputDirectory",
")",
"throws",
"IOException",
"{",
"ImageInputStream",
"input",
"=",
"null",
";",
"List",
"<",
"File",
">",
"outputFiles",
"=",
"new",
"ArrayList... | Splits all pages from the input TIFF file to one file per page in the
output directory.
@param inputFile
@param outputDirectory
@return generated files
@throws IOException | [
"Splits",
"all",
"pages",
"from",
"the",
"input",
"TIFF",
"file",
"to",
"one",
"file",
"per",
"page",
"in",
"the",
"output",
"directory",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/contrib/src/main/java/com/twelvemonkeys/contrib/tiff/TIFFUtilities.java#L109-L142 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java | ObjectReader.getStats | public static String getStats() {
long total = sCacheHit + sCacheMiss + sCacheUn;
double hit = ((double) sCacheHit / (double) total) * 100.0;
double miss = ((double) sCacheMiss / (double) total) * 100.0;
double un = ((double) sCacheUn / (double) total) * 100.0;
// Default ... | java | public static String getStats() {
long total = sCacheHit + sCacheMiss + sCacheUn;
double hit = ((double) sCacheHit / (double) total) * 100.0;
double miss = ((double) sCacheMiss / (double) total) * 100.0;
double un = ((double) sCacheUn / (double) total) * 100.0;
// Default ... | [
"public",
"static",
"String",
"getStats",
"(",
")",
"{",
"long",
"total",
"=",
"sCacheHit",
"+",
"sCacheMiss",
"+",
"sCacheUn",
";",
"double",
"hit",
"=",
"(",
"(",
"double",
")",
"sCacheHit",
"/",
"(",
"double",
")",
"total",
")",
"*",
"100.0",
";",
... | Gets a string containing the stats for this ObjectReader.
@return A string to display the stats. | [
"Gets",
"a",
"string",
"containing",
"the",
"stats",
"for",
"this",
"ObjectReader",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java#L190-L203 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java | ObjectReader.readIdentities | private Object[] readIdentities(Class pObjClass, Hashtable pMapping,
Hashtable pWhere, ObjectMapper pOM)
throws SQLException {
sCacheUn++;
// Build SQL query string
if (pWhere == null)
pWhere = new Hashtable();
String[] ... | java | private Object[] readIdentities(Class pObjClass, Hashtable pMapping,
Hashtable pWhere, ObjectMapper pOM)
throws SQLException {
sCacheUn++;
// Build SQL query string
if (pWhere == null)
pWhere = new Hashtable();
String[] ... | [
"private",
"Object",
"[",
"]",
"readIdentities",
"(",
"Class",
"pObjClass",
",",
"Hashtable",
"pMapping",
",",
"Hashtable",
"pWhere",
",",
"ObjectMapper",
"pOM",
")",
"throws",
"SQLException",
"{",
"sCacheUn",
"++",
";",
"// Build SQL query string\r",
"if",
"(",
... | Get an array containing Objects of type objClass, with the
identity values for the given class set. | [
"Get",
"an",
"array",
"containing",
"Objects",
"of",
"type",
"objClass",
"with",
"the",
"identity",
"values",
"for",
"the",
"given",
"class",
"set",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java#L210-L278 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java | ObjectReader.readObject | public Object readObject(DatabaseReadable pReadable) throws SQLException {
return readObject(pReadable.getId(), pReadable.getClass(),
pReadable.getMapping());
} | java | public Object readObject(DatabaseReadable pReadable) throws SQLException {
return readObject(pReadable.getId(), pReadable.getClass(),
pReadable.getMapping());
} | [
"public",
"Object",
"readObject",
"(",
"DatabaseReadable",
"pReadable",
")",
"throws",
"SQLException",
"{",
"return",
"readObject",
"(",
"pReadable",
".",
"getId",
"(",
")",
",",
"pReadable",
".",
"getClass",
"(",
")",
",",
"pReadable",
".",
"getMapping",
"(",... | Reads one object implementing the DatabaseReadable interface from the
database.
@param readable A DatabaseReadable object
@return The Object read, or null in no object is found | [
"Reads",
"one",
"object",
"implementing",
"the",
"DatabaseReadable",
"interface",
"from",
"the",
"database",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java#L289-L292 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java | ObjectReader.readObject | public Object readObject(Object pId, Class pObjClass, Hashtable pMapping)
throws SQLException {
return readObject(pId, pObjClass, pMapping, null);
} | java | public Object readObject(Object pId, Class pObjClass, Hashtable pMapping)
throws SQLException {
return readObject(pId, pObjClass, pMapping, null);
} | [
"public",
"Object",
"readObject",
"(",
"Object",
"pId",
",",
"Class",
"pObjClass",
",",
"Hashtable",
"pMapping",
")",
"throws",
"SQLException",
"{",
"return",
"readObject",
"(",
"pId",
",",
"pObjClass",
",",
"pMapping",
",",
"null",
")",
";",
"}"
] | Reads the object with the given id from the database, using the given
mapping.
@param id An object uniquely identifying the object to read
@param objClass The clas
@return The Object read, or null in no object is found | [
"Reads",
"the",
"object",
"with",
"the",
"given",
"id",
"from",
"the",
"database",
"using",
"the",
"given",
"mapping",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java#L303-L306 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java | ObjectReader.readObjects | public Object[] readObjects(DatabaseReadable pReadable)
throws SQLException {
return readObjects(pReadable.getClass(),
pReadable.getMapping(), null);
} | java | public Object[] readObjects(DatabaseReadable pReadable)
throws SQLException {
return readObjects(pReadable.getClass(),
pReadable.getMapping(), null);
} | [
"public",
"Object",
"[",
"]",
"readObjects",
"(",
"DatabaseReadable",
"pReadable",
")",
"throws",
"SQLException",
"{",
"return",
"readObjects",
"(",
"pReadable",
".",
"getClass",
"(",
")",
",",
"pReadable",
".",
"getMapping",
"(",
")",
",",
"null",
")",
";",... | Reads all the objects of the given type from the
database. The object must implement the DatabaseReadable interface.
@return An array of Objects, or an zero-length array if none was found | [
"Reads",
"all",
"the",
"objects",
"of",
"the",
"given",
"type",
"from",
"the",
"database",
".",
"The",
"object",
"must",
"implement",
"the",
"DatabaseReadable",
"interface",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java#L315-L319 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java | ObjectReader.setPropertyValue | private void setPropertyValue(Object pObj, String pProperty,
Object pValue) {
Method m = null;
Class[] cl = {pValue.getClass()};
try {
//Util.setPropertyValue(pObj, pProperty, pValue);
// Find method
m... | java | private void setPropertyValue(Object pObj, String pProperty,
Object pValue) {
Method m = null;
Class[] cl = {pValue.getClass()};
try {
//Util.setPropertyValue(pObj, pProperty, pValue);
// Find method
m... | [
"private",
"void",
"setPropertyValue",
"(",
"Object",
"pObj",
",",
"String",
"pProperty",
",",
"Object",
"pValue",
")",
"{",
"Method",
"m",
"=",
"null",
";",
"Class",
"[",
"]",
"cl",
"=",
"{",
"pValue",
".",
"getClass",
"(",
")",
"}",
";",
"try",
"{"... | Sets the property value to an object using reflection
@param obj The object to get a property from
@param property The name of the property
@param value The property value | [
"Sets",
"the",
"property",
"value",
"to",
"an",
"object",
"using",
"reflection"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java#L330-L357 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java | ObjectReader.getPropertyValue | private Object getPropertyValue(Object pObj, String pProperty) {
Method m = null;
Class[] cl = new Class[0];
try {
//return Util.getPropertyValue(pObj, pProperty);
// Find method
m = pObj.getClass().
getMethod("get" + String... | java | private Object getPropertyValue(Object pObj, String pProperty) {
Method m = null;
Class[] cl = new Class[0];
try {
//return Util.getPropertyValue(pObj, pProperty);
// Find method
m = pObj.getClass().
getMethod("get" + String... | [
"private",
"Object",
"getPropertyValue",
"(",
"Object",
"pObj",
",",
"String",
"pProperty",
")",
"{",
"Method",
"m",
"=",
"null",
";",
"Class",
"[",
"]",
"cl",
"=",
"new",
"Class",
"[",
"0",
"]",
";",
"try",
"{",
"//return Util.getPropertyValue(pObj, pProper... | Gets the property value from an object using reflection
@param obj The object to get a property from
@param property The name of the property
@return The property value as an Object | [
"Gets",
"the",
"property",
"value",
"from",
"an",
"object",
"using",
"reflection"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java#L368-L395 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java | ObjectReader.setChildObjects | private void setChildObjects(Object pParent, ObjectMapper pOM)
throws SQLException {
if (pOM == null) {
throw new NullPointerException("ObjectMapper in readChildObjects "
+ "cannot be null!!");
}
for (Enumeration keys = pOM.m... | java | private void setChildObjects(Object pParent, ObjectMapper pOM)
throws SQLException {
if (pOM == null) {
throw new NullPointerException("ObjectMapper in readChildObjects "
+ "cannot be null!!");
}
for (Enumeration keys = pOM.m... | [
"private",
"void",
"setChildObjects",
"(",
"Object",
"pParent",
",",
"ObjectMapper",
"pOM",
")",
"throws",
"SQLException",
"{",
"if",
"(",
"pOM",
"==",
"null",
")",
"{",
"throw",
"new",
"NullPointerException",
"(",
"\"ObjectMapper in readChildObjects \"",
"+",
"\"... | Reads and sets the child properties of the given parent object.
@param parent The object to set the child obects to.
@param om The ObjectMapper of the parent object. | [
"Reads",
"and",
"sets",
"the",
"child",
"properties",
"of",
"the",
"given",
"parent",
"object",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java#L404-L499 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java | ObjectReader.buildWhereClause | private String buildWhereClause(String[] pKeys, Hashtable pMapping) {
StringBuilder sqlBuf = new StringBuilder();
for (int i = 0; i < pKeys.length; i++) {
String column = (String) pMapping.get(pKeys[i]);
sqlBuf.append(" AND ");
sqlBuf.append(column);
... | java | private String buildWhereClause(String[] pKeys, Hashtable pMapping) {
StringBuilder sqlBuf = new StringBuilder();
for (int i = 0; i < pKeys.length; i++) {
String column = (String) pMapping.get(pKeys[i]);
sqlBuf.append(" AND ");
sqlBuf.append(column);
... | [
"private",
"String",
"buildWhereClause",
"(",
"String",
"[",
"]",
"pKeys",
",",
"Hashtable",
"pMapping",
")",
"{",
"StringBuilder",
"sqlBuf",
"=",
"new",
"StringBuilder",
"(",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"pKeys",
".",
"le... | Builds extra SQL WHERE clause
@param keys An array of ID names
@param mapping The hashtable containing the object mapping
@return A string containing valid SQL | [
"Builds",
"extra",
"SQL",
"WHERE",
"clause"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java#L524-L536 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java | ObjectReader.loadMapping | public static Properties loadMapping(Class pClass) {
try {
return SystemUtil.loadProperties(pClass);
}
catch (FileNotFoundException fnf) {
// System.err... err...
System.err.println("ERROR: " + fnf.getMessage());
}
catch (IOExcept... | java | public static Properties loadMapping(Class pClass) {
try {
return SystemUtil.loadProperties(pClass);
}
catch (FileNotFoundException fnf) {
// System.err... err...
System.err.println("ERROR: " + fnf.getMessage());
}
catch (IOExcept... | [
"public",
"static",
"Properties",
"loadMapping",
"(",
"Class",
"pClass",
")",
"{",
"try",
"{",
"return",
"SystemUtil",
".",
"loadProperties",
"(",
"pClass",
")",
";",
"}",
"catch",
"(",
"FileNotFoundException",
"fnf",
")",
"{",
"// System.err... err... \r",
"Sys... | Utility method for reading a property mapping from a properties-file | [
"Utility",
"method",
"for",
"reading",
"a",
"property",
"mapping",
"from",
"a",
"properties",
"-",
"file"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectReader.java#L822-L834 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectManager.java | ObjectManager.getType | protected Class getType(String pType) {
Class cl = (Class) mTypes.get(pType);
if (cl == null) {
// throw new NoSuchTypeException();
}
return cl;
} | java | protected Class getType(String pType) {
Class cl = (Class) mTypes.get(pType);
if (cl == null) {
// throw new NoSuchTypeException();
}
return cl;
} | [
"protected",
"Class",
"getType",
"(",
"String",
"pType",
")",
"{",
"Class",
"cl",
"=",
"(",
"Class",
")",
"mTypes",
".",
"get",
"(",
"pType",
")",
";",
"if",
"(",
"cl",
"==",
"null",
")",
"{",
"// throw new NoSuchTypeException();\r",
"}",
"return",
"cl",... | Gets the class for a type
@return The class for a type. If the type is not found, this method will
throw an excpetion, and will never return null. | [
"Gets",
"the",
"class",
"for",
"a",
"type"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectManager.java#L93-L101 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectManager.java | ObjectManager.getObject | protected Object getObject(String pType)
/*throws XxxException*/ {
// Get class
Class cl = getType(pType);
// Return the new instance (requires empty public constructor)
try {
return cl.newInstance();
}
catch (Exception e) {
// throw new XxxException(e);
... | java | protected Object getObject(String pType)
/*throws XxxException*/ {
// Get class
Class cl = getType(pType);
// Return the new instance (requires empty public constructor)
try {
return cl.newInstance();
}
catch (Exception e) {
// throw new XxxException(e);
... | [
"protected",
"Object",
"getObject",
"(",
"String",
"pType",
")",
"/*throws XxxException*/",
"{",
"// Get class\r",
"Class",
"cl",
"=",
"getType",
"(",
"pType",
")",
";",
"// Return the new instance (requires empty public constructor)\r",
"try",
"{",
"return",
"cl",
".",... | Gets a java object of the class for a given type. | [
"Gets",
"a",
"java",
"object",
"of",
"the",
"class",
"for",
"a",
"given",
"type",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/ObjectManager.java#L107-L123 | train |
haraldk/TwelveMonkeys | imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/ImageReaderBase.java | ImageReaderBase.checkBounds | protected void checkBounds(int index) throws IOException {
assertInput();
if (index < getMinIndex()) {
throw new IndexOutOfBoundsException("index < minIndex");
}
int numImages = getNumImages(false);
if (numImages != -1 && index >= numImages) {
throw new I... | java | protected void checkBounds(int index) throws IOException {
assertInput();
if (index < getMinIndex()) {
throw new IndexOutOfBoundsException("index < minIndex");
}
int numImages = getNumImages(false);
if (numImages != -1 && index >= numImages) {
throw new I... | [
"protected",
"void",
"checkBounds",
"(",
"int",
"index",
")",
"throws",
"IOException",
"{",
"assertInput",
"(",
")",
";",
"if",
"(",
"index",
"<",
"getMinIndex",
"(",
")",
")",
"{",
"throw",
"new",
"IndexOutOfBoundsException",
"(",
"\"index < minIndex\"",
")",... | Convenience method to make sure image index is within bounds.
@param index the image index
@throws java.io.IOException if an error occurs during reading
@throws IndexOutOfBoundsException if not {@code minIndex <= index < numImages} | [
"Convenience",
"method",
"to",
"make",
"sure",
"image",
"index",
"is",
"within",
"bounds",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/ImageReaderBase.java#L183-L193 | train |
haraldk/TwelveMonkeys | imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/ImageReaderBase.java | ImageReaderBase.hasExplicitDestination | protected static boolean hasExplicitDestination(final ImageReadParam pParam) {
return pParam != null &&
(
pParam.getDestination() != null || pParam.getDestinationType() != null ||
!ORIGIN.equals(pParam.getDestinationOffset())
... | java | protected static boolean hasExplicitDestination(final ImageReadParam pParam) {
return pParam != null &&
(
pParam.getDestination() != null || pParam.getDestinationType() != null ||
!ORIGIN.equals(pParam.getDestinationOffset())
... | [
"protected",
"static",
"boolean",
"hasExplicitDestination",
"(",
"final",
"ImageReadParam",
"pParam",
")",
"{",
"return",
"pParam",
"!=",
"null",
"&&",
"(",
"pParam",
".",
"getDestination",
"(",
")",
"!=",
"null",
"||",
"pParam",
".",
"getDestinationType",
"(",
... | Tests if param has explicit destination.
@param pParam the image read parameter, or {@code null}
@return true if {@code pParam} is non-{@code null} and either its {@code getDestination},
{@code getDestinationType} returns a non-{@code null} value,
or {@code getDestinationOffset} returns a {@link Point} that is not the... | [
"Tests",
"if",
"param",
"has",
"explicit",
"destination",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/ImageReaderBase.java#L371-L377 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/ImageServletResponseImpl.java | ImageServletResponseImpl.getImage | public BufferedImage getImage() throws IOException {
if (image == null) {
// No content, no image
if (bufferedOut == null) {
return null;
}
// Read from the byte buffer
InputStream byteStream = bufferedOut.createInputStream();
... | java | public BufferedImage getImage() throws IOException {
if (image == null) {
// No content, no image
if (bufferedOut == null) {
return null;
}
// Read from the byte buffer
InputStream byteStream = bufferedOut.createInputStream();
... | [
"public",
"BufferedImage",
"getImage",
"(",
")",
"throws",
"IOException",
"{",
"if",
"(",
"image",
"==",
"null",
")",
"{",
"// No content, no image\r",
"if",
"(",
"bufferedOut",
"==",
"null",
")",
"{",
"return",
"null",
";",
"}",
"// Read from the byte buffer\r"... | Gets the decoded image from the response.
@return a {@code BufferedImage} or {@code null} if the image could
not be read.
@throws java.io.IOException if an I/O exception occurs during reading | [
"Gets",
"the",
"decoded",
"image",
"from",
"the",
"response",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/ImageServletResponseImpl.java#L331-L430 | train |
haraldk/TwelveMonkeys | imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/QuickTime.java | QuickTime.getDecompressor | private static QTDecompressor getDecompressor(final ImageDesc pDescription) {
for (QTDecompressor decompressor : sDecompressors) {
if (decompressor.canDecompress(pDescription)) {
return decompressor;
}
}
return null;
} | java | private static QTDecompressor getDecompressor(final ImageDesc pDescription) {
for (QTDecompressor decompressor : sDecompressors) {
if (decompressor.canDecompress(pDescription)) {
return decompressor;
}
}
return null;
} | [
"private",
"static",
"QTDecompressor",
"getDecompressor",
"(",
"final",
"ImageDesc",
"pDescription",
")",
"{",
"for",
"(",
"QTDecompressor",
"decompressor",
":",
"sDecompressors",
")",
"{",
"if",
"(",
"decompressor",
".",
"canDecompress",
"(",
"pDescription",
")",
... | Gets a decompressor that can decompress the described data.
@param pDescription the image description ({@code 'idsc'} Atom).
@return a decompressor that can decompress data decribed by the given {@link ImageDesc description},
or {@code null} if no decompressor is found | [
"Gets",
"a",
"decompressor",
"that",
"can",
"decompress",
"the",
"described",
"data",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/QuickTime.java#L124-L132 | train |
haraldk/TwelveMonkeys | imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/QuickTime.java | QuickTime.decompress | public static BufferedImage decompress(final ImageInputStream pStream) throws IOException {
ImageDesc description = ImageDesc.read(pStream);
if (PICTImageReader.DEBUG) {
System.out.println(description);
}
QTDecompressor decompressor = getDecompressor(description);
... | java | public static BufferedImage decompress(final ImageInputStream pStream) throws IOException {
ImageDesc description = ImageDesc.read(pStream);
if (PICTImageReader.DEBUG) {
System.out.println(description);
}
QTDecompressor decompressor = getDecompressor(description);
... | [
"public",
"static",
"BufferedImage",
"decompress",
"(",
"final",
"ImageInputStream",
"pStream",
")",
"throws",
"IOException",
"{",
"ImageDesc",
"description",
"=",
"ImageDesc",
".",
"read",
"(",
"pStream",
")",
";",
"if",
"(",
"PICTImageReader",
".",
"DEBUG",
")... | Decompresses the QuickTime image data from the given stream.
@param pStream the image input stream
@return a {@link BufferedImage} containing the image data, or {@code null} if no decompressor is capable of
decompressing the image.
@throws IOException if an I/O exception occurs during read | [
"Decompresses",
"the",
"QuickTime",
"image",
"data",
"from",
"the",
"given",
"stream",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/QuickTime.java#L142-L162 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/ContentNegotiationFilter.java | ContentNegotiationFilter.trigger | protected boolean trigger(ServletRequest pRequest) {
boolean trigger = false;
if (pRequest instanceof HttpServletRequest) {
HttpServletRequest request = (HttpServletRequest) pRequest;
String accept = getAcceptedFormats(request);
String originalFormat = getServl... | java | protected boolean trigger(ServletRequest pRequest) {
boolean trigger = false;
if (pRequest instanceof HttpServletRequest) {
HttpServletRequest request = (HttpServletRequest) pRequest;
String accept = getAcceptedFormats(request);
String originalFormat = getServl... | [
"protected",
"boolean",
"trigger",
"(",
"ServletRequest",
"pRequest",
")",
"{",
"boolean",
"trigger",
"=",
"false",
";",
"if",
"(",
"pRequest",
"instanceof",
"HttpServletRequest",
")",
"{",
"HttpServletRequest",
"request",
"=",
"(",
"HttpServletRequest",
")",
"pRe... | Makes sure the filter triggers for unknown file formats.
@param pRequest the request
@return {@code true} if the filter should execute, {@code false}
otherwise | [
"Makes",
"sure",
"the",
"filter",
"triggers",
"for",
"unknown",
"file",
"formats",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/ContentNegotiationFilter.java#L155-L175 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/ContentNegotiationFilter.java | ContentNegotiationFilter.findBestFormat | private static String findBestFormat(Map<String, Float> pFormatQuality) {
String acceptable = null;
float acceptQuality = 0.0f;
for (Map.Entry<String, Float> entry : pFormatQuality.entrySet()) {
float qValue = entry.getValue();
if (qValue > acceptQuality) {
... | java | private static String findBestFormat(Map<String, Float> pFormatQuality) {
String acceptable = null;
float acceptQuality = 0.0f;
for (Map.Entry<String, Float> entry : pFormatQuality.entrySet()) {
float qValue = entry.getValue();
if (qValue > acceptQuality) {
... | [
"private",
"static",
"String",
"findBestFormat",
"(",
"Map",
"<",
"String",
",",
"Float",
">",
"pFormatQuality",
")",
"{",
"String",
"acceptable",
"=",
"null",
";",
"float",
"acceptQuality",
"=",
"0.0f",
";",
"for",
"(",
"Map",
".",
"Entry",
"<",
"String",... | Finds the best available format.
@param pFormatQuality the format to quality mapping
@return the mime type of the best available format | [
"Finds",
"the",
"best",
"available",
"format",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/ContentNegotiationFilter.java#L275-L289 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/ContentNegotiationFilter.java | ContentNegotiationFilter.adjustQualityFromAccept | private void adjustQualityFromAccept(Map<String, Float> pFormatQuality, HttpServletRequest pRequest) {
// Multiply all q factors with qs factors
// No q=.. should be interpreted as q=1.0
// Apache does some extras; if both explicit types and wildcards
// (without qaulity factor) ar... | java | private void adjustQualityFromAccept(Map<String, Float> pFormatQuality, HttpServletRequest pRequest) {
// Multiply all q factors with qs factors
// No q=.. should be interpreted as q=1.0
// Apache does some extras; if both explicit types and wildcards
// (without qaulity factor) ar... | [
"private",
"void",
"adjustQualityFromAccept",
"(",
"Map",
"<",
"String",
",",
"Float",
">",
"pFormatQuality",
",",
"HttpServletRequest",
"pRequest",
")",
"{",
"// Multiply all q factors with qs factors\r",
"// No q=.. should be interpreted as q=1.0\r",
"// Apache does some extras... | Adjust quality from HTTP Accept header
@param pFormatQuality the format to quality mapping
@param pRequest the request | [
"Adjust",
"quality",
"from",
"HTTP",
"Accept",
"header"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/ContentNegotiationFilter.java#L297-L323 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/ContentNegotiationFilter.java | ContentNegotiationFilter.adjustQualityFromImage | private static void adjustQualityFromImage(Map<String, Float> pFormatQuality, BufferedImage pImage) {
// NOTE: The values are all made-up. May need tuning.
// If pImage.getColorModel() instanceof IndexColorModel
// JPEG qs*=0.6
// If NOT binary or 2 color index
// ... | java | private static void adjustQualityFromImage(Map<String, Float> pFormatQuality, BufferedImage pImage) {
// NOTE: The values are all made-up. May need tuning.
// If pImage.getColorModel() instanceof IndexColorModel
// JPEG qs*=0.6
// If NOT binary or 2 color index
// ... | [
"private",
"static",
"void",
"adjustQualityFromImage",
"(",
"Map",
"<",
"String",
",",
"Float",
">",
"pFormatQuality",
",",
"BufferedImage",
"pImage",
")",
"{",
"// NOTE: The values are all made-up. May need tuning.\r",
"// If pImage.getColorModel() instanceof IndexColorModel\r",... | Adjusts source quality settings from image properties.
@param pFormatQuality the format to quality mapping
@param pImage the image | [
"Adjusts",
"source",
"quality",
"settings",
"from",
"image",
"properties",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/ContentNegotiationFilter.java#L375-L410 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/ContentNegotiationFilter.java | ContentNegotiationFilter.adjustQuality | private static void adjustQuality(Map<String, Float> pFormatQuality, String pFormat, float pFactor) {
Float oldValue = pFormatQuality.get(pFormat);
if (oldValue != null) {
pFormatQuality.put(pFormat, oldValue * pFactor);
//System.out.println("New vallue after multiplying with... | java | private static void adjustQuality(Map<String, Float> pFormatQuality, String pFormat, float pFactor) {
Float oldValue = pFormatQuality.get(pFormat);
if (oldValue != null) {
pFormatQuality.put(pFormat, oldValue * pFactor);
//System.out.println("New vallue after multiplying with... | [
"private",
"static",
"void",
"adjustQuality",
"(",
"Map",
"<",
"String",
",",
"Float",
">",
"pFormatQuality",
",",
"String",
"pFormat",
",",
"float",
"pFactor",
")",
"{",
"Float",
"oldValue",
"=",
"pFormatQuality",
".",
"get",
"(",
"pFormat",
")",
";",
"if... | Updates the quality in the map.
@param pFormatQuality Map<String,Float>
@param pFormat the format
@param pFactor the quality factor | [
"Updates",
"the",
"quality",
"in",
"the",
"map",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/ContentNegotiationFilter.java#L419-L425 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/ContentNegotiationFilter.java | ContentNegotiationFilter.getKnownFormatQuality | private float getKnownFormatQuality(String pFormat) {
for (int i = 0; i < sKnownFormats.length; i++) {
if (pFormat.equals(sKnownFormats[i])) {
return knownFormatQuality[i];
}
}
return 0.1f;
} | java | private float getKnownFormatQuality(String pFormat) {
for (int i = 0; i < sKnownFormats.length; i++) {
if (pFormat.equals(sKnownFormats[i])) {
return knownFormatQuality[i];
}
}
return 0.1f;
} | [
"private",
"float",
"getKnownFormatQuality",
"(",
"String",
"pFormat",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"sKnownFormats",
".",
"length",
";",
"i",
"++",
")",
"{",
"if",
"(",
"pFormat",
".",
"equals",
"(",
"sKnownFormats",
"[",
... | Gets the initial quality if this is a known format, otherwise 0.1
@param pFormat the format name
@return the q factor of the given format | [
"Gets",
"the",
"initial",
"quality",
"if",
"this",
"is",
"a",
"known",
"format",
"otherwise",
"0",
".",
"1"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/ContentNegotiationFilter.java#L434-L441 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/OutputStreamAdapter.java | OutputStreamAdapter.write | public void write(final byte pBytes[], final int pOff, final int pLen) throws IOException {
out.write(pBytes, pOff, pLen);
} | java | public void write(final byte pBytes[], final int pOff, final int pLen) throws IOException {
out.write(pBytes, pOff, pLen);
} | [
"public",
"void",
"write",
"(",
"final",
"byte",
"pBytes",
"[",
"]",
",",
"final",
"int",
"pOff",
",",
"final",
"int",
"pLen",
")",
"throws",
"IOException",
"{",
"out",
".",
"write",
"(",
"pBytes",
",",
"pOff",
",",
"pLen",
")",
";",
"}"
] | Overide for efficiency | [
"Overide",
"for",
"efficiency"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/OutputStreamAdapter.java#L119-L121 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/enc/PackBitsDecoder.java | PackBitsDecoder.decode | public int decode(final InputStream stream, final ByteBuffer buffer) throws IOException {
if (reachedEOF) {
return -1;
}
// TODO: Don't decode more than single runs, because some writers add pad bytes inside the stream...
while (buffer.hasRemaining()) {
in... | java | public int decode(final InputStream stream, final ByteBuffer buffer) throws IOException {
if (reachedEOF) {
return -1;
}
// TODO: Don't decode more than single runs, because some writers add pad bytes inside the stream...
while (buffer.hasRemaining()) {
in... | [
"public",
"int",
"decode",
"(",
"final",
"InputStream",
"stream",
",",
"final",
"ByteBuffer",
"buffer",
")",
"throws",
"IOException",
"{",
"if",
"(",
"reachedEOF",
")",
"{",
"return",
"-",
"1",
";",
"}",
"// TODO: Don't decode more than single runs, because some wri... | Decodes bytes from the given input stream, to the given buffer.
@param stream the stream to decode from
@param buffer a byte array, minimum 128 (or 129 if no-op is disabled) bytes long
@return The number of bytes decoded
@throws java.io.IOException | [
"Decodes",
"bytes",
"from",
"the",
"given",
"input",
"stream",
"to",
"the",
"given",
"buffer",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/enc/PackBitsDecoder.java#L119-L179 | train |
haraldk/TwelveMonkeys | imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/CIELabColorConverter.java | CIELabColorConverter.LABtoXYZ | private float[] LABtoXYZ(float L, float a, float b, float[] xyzResult) {
// Significant speedup: Removing Math.pow
float y = (L + 16.0f) / 116.0f;
float y3 = y * y * y; // Math.pow(y, 3.0);
float x = (a / 500.0f) + y;
float x3 = x * x * x; // Math.pow(x, 3.0);
float z = y... | java | private float[] LABtoXYZ(float L, float a, float b, float[] xyzResult) {
// Significant speedup: Removing Math.pow
float y = (L + 16.0f) / 116.0f;
float y3 = y * y * y; // Math.pow(y, 3.0);
float x = (a / 500.0f) + y;
float x3 = x * x * x; // Math.pow(x, 3.0);
float z = y... | [
"private",
"float",
"[",
"]",
"LABtoXYZ",
"(",
"float",
"L",
",",
"float",
"a",
",",
"float",
"b",
",",
"float",
"[",
"]",
"xyzResult",
")",
"{",
"// Significant speedup: Removing Math.pow",
"float",
"y",
"=",
"(",
"L",
"+",
"16.0f",
")",
"/",
"116.0f",
... | Convert LAB to XYZ.
@param L
@param a
@param b
@return XYZ values | [
"Convert",
"LAB",
"to",
"XYZ",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-core/src/main/java/com/twelvemonkeys/imageio/color/CIELabColorConverter.java#L88-L123 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/convert/NumberConverter.java | NumberConverter.toObject | public Object toObject(final String pString, final Class pType, final String pFormat) throws ConversionException {
if (StringUtil.isEmpty(pString)) {
return null;
}
try {
if (pType.equals(BigInteger.class)) {
return new BigInteger(pString); // No f... | java | public Object toObject(final String pString, final Class pType, final String pFormat) throws ConversionException {
if (StringUtil.isEmpty(pString)) {
return null;
}
try {
if (pType.equals(BigInteger.class)) {
return new BigInteger(pString); // No f... | [
"public",
"Object",
"toObject",
"(",
"final",
"String",
"pString",
",",
"final",
"Class",
"pType",
",",
"final",
"String",
"pFormat",
")",
"throws",
"ConversionException",
"{",
"if",
"(",
"StringUtil",
".",
"isEmpty",
"(",
"pString",
")",
")",
"{",
"return",... | Converts the string to a number, using the given format for parsing.
@param pString the string to convert.
@param pType the type to convert to. PropertyConverter
implementations may choose to ignore this parameter.
@param pFormat the format used for parsing. PropertyConverter
implementations may choose to ignore this ... | [
"Converts",
"the",
"string",
"to",
"a",
"number",
"using",
"the",
"given",
"format",
"for",
"parsing",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/convert/NumberConverter.java#L83-L139 | train |
haraldk/TwelveMonkeys | imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/QuickDrawContext.java | QuickDrawContext.setPenSize | public void setPenSize(Dimension2D pSize) {
penSize.setSize(pSize);
graphics.setStroke(getStroke(penSize));
} | java | public void setPenSize(Dimension2D pSize) {
penSize.setSize(pSize);
graphics.setStroke(getStroke(penSize));
} | [
"public",
"void",
"setPenSize",
"(",
"Dimension2D",
"pSize",
")",
"{",
"penSize",
".",
"setSize",
"(",
"pSize",
")",
";",
"graphics",
".",
"setStroke",
"(",
"getStroke",
"(",
"penSize",
")",
")",
";",
"}"
] | Sets the pen size.
PenSize
@param pSize the new size | [
"Sets",
"the",
"pen",
"size",
".",
"PenSize"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/QuickDrawContext.java#L274-L277 | train |
haraldk/TwelveMonkeys | imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/QuickDrawContext.java | QuickDrawContext.setupForFill | protected void setupForFill(final Pattern pPattern) {
graphics.setPaint(pPattern);
graphics.setComposite(getCompositeFor(QuickDraw.PAT_COPY));
} | java | protected void setupForFill(final Pattern pPattern) {
graphics.setPaint(pPattern);
graphics.setComposite(getCompositeFor(QuickDraw.PAT_COPY));
} | [
"protected",
"void",
"setupForFill",
"(",
"final",
"Pattern",
"pPattern",
")",
"{",
"graphics",
".",
"setPaint",
"(",
"pPattern",
")",
";",
"graphics",
".",
"setComposite",
"(",
"getCompositeFor",
"(",
"QuickDraw",
".",
"PAT_COPY",
")",
")",
";",
"}"
] | Sets up paint context for fill.
@param pPattern the pattern to use for filling. | [
"Sets",
"up",
"paint",
"context",
"for",
"fill",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/QuickDrawContext.java#L440-L443 | train |
haraldk/TwelveMonkeys | imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/QuickDrawContext.java | QuickDrawContext.toArc | private static Arc2D.Double toArc(final Rectangle2D pRectangle, int pStartAngle, int pArcAngle, final boolean pClosed) {
return new Arc2D.Double(pRectangle, 90 - pStartAngle, -pArcAngle, pClosed ? Arc2D.PIE : Arc2D.OPEN);
} | java | private static Arc2D.Double toArc(final Rectangle2D pRectangle, int pStartAngle, int pArcAngle, final boolean pClosed) {
return new Arc2D.Double(pRectangle, 90 - pStartAngle, -pArcAngle, pClosed ? Arc2D.PIE : Arc2D.OPEN);
} | [
"private",
"static",
"Arc2D",
".",
"Double",
"toArc",
"(",
"final",
"Rectangle2D",
"pRectangle",
",",
"int",
"pStartAngle",
",",
"int",
"pArcAngle",
",",
"final",
"boolean",
"pClosed",
")",
"{",
"return",
"new",
"Arc2D",
".",
"Double",
"(",
"pRectangle",
","... | Converts a rectangle to an arc.
@param pRectangle the framing rectangle
@param pStartAngle start angle in degrees (starting from 12'o clock, this differs from Java)
@param pArcAngle rotation angle in degrees (starting from {@code pStartAngle}, this differs from Java arcs)
@param pClosed specifies if the arc sho... | [
"Converts",
"a",
"rectangle",
"to",
"an",
"arc",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/QuickDrawContext.java#L716-L718 | train |
haraldk/TwelveMonkeys | imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/QuickDrawContext.java | QuickDrawContext.drawString | public void drawString(String pString) {
setupForText();
graphics.drawString(pString, (float) getPenPosition().getX(), (float) getPenPosition().getY());
} | java | public void drawString(String pString) {
setupForText();
graphics.drawString(pString, (float) getPenPosition().getX(), (float) getPenPosition().getY());
} | [
"public",
"void",
"drawString",
"(",
"String",
"pString",
")",
"{",
"setupForText",
"(",
")",
";",
"graphics",
".",
"drawString",
"(",
"pString",
",",
"(",
"float",
")",
"getPenPosition",
"(",
")",
".",
"getX",
"(",
")",
",",
"(",
"float",
")",
"getPen... | DrawString - draws the text of a Pascal string.
@param pString a Pascal string (a string of length less than or equal to 255 chars). | [
"DrawString",
"-",
"draws",
"the",
"text",
"of",
"a",
"Pascal",
"string",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/QuickDrawContext.java#L1012-L1015 | train |
haraldk/TwelveMonkeys | imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTUtil.java | PICTUtil.readDimension | public static Dimension readDimension(final DataInput pStream) throws IOException {
int h = pStream.readShort();
int v = pStream.readShort();
return new Dimension(h, v);
} | java | public static Dimension readDimension(final DataInput pStream) throws IOException {
int h = pStream.readShort();
int v = pStream.readShort();
return new Dimension(h, v);
} | [
"public",
"static",
"Dimension",
"readDimension",
"(",
"final",
"DataInput",
"pStream",
")",
"throws",
"IOException",
"{",
"int",
"h",
"=",
"pStream",
".",
"readShort",
"(",
")",
";",
"int",
"v",
"=",
"pStream",
".",
"readShort",
"(",
")",
";",
"return",
... | Reads a dimension from the given stream.
@param pStream the input stream
@return the dimension read
@throws java.io.IOException if an I/O error occurs during read | [
"Reads",
"a",
"dimension",
"from",
"the",
"given",
"stream",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTUtil.java#L90-L94 | train |
haraldk/TwelveMonkeys | imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTUtil.java | PICTUtil.readStr31 | public static String readStr31(final DataInput pStream) throws IOException {
String text = readPascalString(pStream);
int length = 31 - text.length();
if (length < 0) {
throw new IOException("String length exceeds maximum (31): " + text.length());
}
pStream.skipBytes(... | java | public static String readStr31(final DataInput pStream) throws IOException {
String text = readPascalString(pStream);
int length = 31 - text.length();
if (length < 0) {
throw new IOException("String length exceeds maximum (31): " + text.length());
}
pStream.skipBytes(... | [
"public",
"static",
"String",
"readStr31",
"(",
"final",
"DataInput",
"pStream",
")",
"throws",
"IOException",
"{",
"String",
"text",
"=",
"readPascalString",
"(",
"pStream",
")",
";",
"int",
"length",
"=",
"31",
"-",
"text",
".",
"length",
"(",
")",
";",
... | Reads a 32 byte fixed length Pascal string from the given input.
The input stream must be positioned at the length byte of the text,
the text will be no longer than 31 characters long.
@param pStream the input stream
@return the text read
@throws IOException if an I/O exception occurs during reading | [
"Reads",
"a",
"32",
"byte",
"fixed",
"length",
"Pascal",
"string",
"from",
"the",
"given",
"input",
".",
"The",
"input",
"stream",
"must",
"be",
"positioned",
"at",
"the",
"length",
"byte",
"of",
"the",
"text",
"the",
"text",
"will",
"be",
"no",
"longer"... | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTUtil.java#L106-L114 | train |
haraldk/TwelveMonkeys | imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTUtil.java | PICTUtil.readPascalString | public static String readPascalString(final DataInput pStream) throws IOException {
// Get as many bytes as indicated by byte count
int length = pStream.readUnsignedByte();
byte[] bytes = new byte[length];
pStream.readFully(bytes, 0, length);
return new String(bytes, ENCODING);... | java | public static String readPascalString(final DataInput pStream) throws IOException {
// Get as many bytes as indicated by byte count
int length = pStream.readUnsignedByte();
byte[] bytes = new byte[length];
pStream.readFully(bytes, 0, length);
return new String(bytes, ENCODING);... | [
"public",
"static",
"String",
"readPascalString",
"(",
"final",
"DataInput",
"pStream",
")",
"throws",
"IOException",
"{",
"// Get as many bytes as indicated by byte count",
"int",
"length",
"=",
"pStream",
".",
"readUnsignedByte",
"(",
")",
";",
"byte",
"[",
"]",
"... | Reads a Pascal String from the given stream.
The input stream must be positioned at the length byte of the text,
which can thus be a maximum of 255 characters long.
@param pStream the input stream
@return the text read
@throws IOException if an I/O exception occurs during reading | [
"Reads",
"a",
"Pascal",
"String",
"from",
"the",
"given",
"stream",
".",
"The",
"input",
"stream",
"must",
"be",
"positioned",
"at",
"the",
"length",
"byte",
"of",
"the",
"text",
"which",
"can",
"thus",
"be",
"a",
"maximum",
"of",
"255",
"characters",
"l... | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pict/src/main/java/com/twelvemonkeys/imageio/plugins/pict/PICTUtil.java#L126-L134 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/SourceRenderFilter.java | SourceRenderFilter.doFilterImpl | protected void doFilterImpl(ServletRequest pRequest, ServletResponse pResponse, FilterChain pChain) throws IOException, ServletException {
// TODO: Max size configuration, to avoid DOS attacks? OutOfMemory
// Size parameters
int width = ServletUtil.getIntParameter(pRequest, sizeWidthParam, ... | java | protected void doFilterImpl(ServletRequest pRequest, ServletResponse pResponse, FilterChain pChain) throws IOException, ServletException {
// TODO: Max size configuration, to avoid DOS attacks? OutOfMemory
// Size parameters
int width = ServletUtil.getIntParameter(pRequest, sizeWidthParam, ... | [
"protected",
"void",
"doFilterImpl",
"(",
"ServletRequest",
"pRequest",
",",
"ServletResponse",
"pResponse",
",",
"FilterChain",
"pChain",
")",
"throws",
"IOException",
",",
"ServletException",
"{",
"// TODO: Max size configuration, to avoid DOS attacks? OutOfMemory\r",
"// Siz... | Extracts request parameters, and sets the corresponding request
attributes if specified.
@param pRequest
@param pResponse
@param pChain
@throws IOException
@throws ServletException | [
"Extracts",
"request",
"parameters",
"and",
"sets",
"the",
"corresponding",
"request",
"attributes",
"if",
"specified",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/SourceRenderFilter.java#L130-L170 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java | HttpURLConnection.setTimeout | public void setTimeout(int pTimeout) {
if (pTimeout < 0) { // Must be positive
throw new IllegalArgumentException("Timeout must be positive.");
}
timeout = pTimeout;
if (socket != null) {
try {
socket.setSoTimeout(pTimeout);
}
... | java | public void setTimeout(int pTimeout) {
if (pTimeout < 0) { // Must be positive
throw new IllegalArgumentException("Timeout must be positive.");
}
timeout = pTimeout;
if (socket != null) {
try {
socket.setSoTimeout(pTimeout);
}
... | [
"public",
"void",
"setTimeout",
"(",
"int",
"pTimeout",
")",
"{",
"if",
"(",
"pTimeout",
"<",
"0",
")",
"{",
"// Must be positive",
"throw",
"new",
"IllegalArgumentException",
"(",
"\"Timeout must be positive.\"",
")",
";",
"}",
"timeout",
"=",
"pTimeout",
";",
... | Sets the read timeout for the undelying socket.
A timeout of zero is interpreted as an
infinite timeout.
@param pTimeout the maximum time the socket will block for read
operations, in milliseconds. | [
"Sets",
"the",
"read",
"timeout",
"for",
"the",
"undelying",
"socket",
".",
"A",
"timeout",
"of",
"zero",
"is",
"interpreted",
"as",
"an",
"infinite",
"timeout",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java#L280-L293 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java | HttpURLConnection.getInputStream | public synchronized InputStream getInputStream() throws IOException {
if (!connected) {
connect();
}
// Nothing to return
if (responseCode == HTTP_NOT_FOUND) {
throw new FileNotFoundException(url.toString());
}
int length;
if (inputStream... | java | public synchronized InputStream getInputStream() throws IOException {
if (!connected) {
connect();
}
// Nothing to return
if (responseCode == HTTP_NOT_FOUND) {
throw new FileNotFoundException(url.toString());
}
int length;
if (inputStream... | [
"public",
"synchronized",
"InputStream",
"getInputStream",
"(",
")",
"throws",
"IOException",
"{",
"if",
"(",
"!",
"connected",
")",
"{",
"connect",
"(",
")",
";",
"}",
"// Nothing to return",
"if",
"(",
"responseCode",
"==",
"HTTP_NOT_FOUND",
")",
"{",
"throw... | Returns an input stream that reads from this open connection.
@return an input stream that reads from this open connection.
@throws IOException if an I/O error occurs while
creating the input stream. | [
"Returns",
"an",
"input",
"stream",
"that",
"reads",
"from",
"this",
"open",
"connection",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java#L322-L351 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java | HttpURLConnection.connect | private void connect(final URL pURL, PasswordAuthentication pAuth, String pAuthType, int pRetries) throws IOException {
// Find correct port
final int port = (pURL.getPort() > 0)
? pURL.getPort()
: HTTP_DEFAULT_PORT;
// Create socket if we don't have one
... | java | private void connect(final URL pURL, PasswordAuthentication pAuth, String pAuthType, int pRetries) throws IOException {
// Find correct port
final int port = (pURL.getPort() > 0)
? pURL.getPort()
: HTTP_DEFAULT_PORT;
// Create socket if we don't have one
... | [
"private",
"void",
"connect",
"(",
"final",
"URL",
"pURL",
",",
"PasswordAuthentication",
"pAuth",
",",
"String",
"pAuthType",
",",
"int",
"pRetries",
")",
"throws",
"IOException",
"{",
"// Find correct port",
"final",
"int",
"port",
"=",
"(",
"pURL",
".",
"ge... | Internal connect method. | [
"Internal",
"connect",
"method",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java#L391-L543 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java | HttpURLConnection.createSocket | private Socket createSocket(final URL pURL, final int pPort, int pConnectTimeout) throws IOException {
Socket socket;
final Object current = this;
SocketConnector connector;
Thread t = new Thread(connector = new SocketConnector() {
private IOException mConnectException = nul... | java | private Socket createSocket(final URL pURL, final int pPort, int pConnectTimeout) throws IOException {
Socket socket;
final Object current = this;
SocketConnector connector;
Thread t = new Thread(connector = new SocketConnector() {
private IOException mConnectException = nul... | [
"private",
"Socket",
"createSocket",
"(",
"final",
"URL",
"pURL",
",",
"final",
"int",
"pPort",
",",
"int",
"pConnectTimeout",
")",
"throws",
"IOException",
"{",
"Socket",
"socket",
";",
"final",
"Object",
"current",
"=",
"this",
";",
"SocketConnector",
"conne... | Creates a socket to the given URL and port, with the given connect
timeout. If the socket waits more than the given timout to connect,
an ConnectException is thrown.
@param pURL the URL to connect to
@param pPort the port to connect to
@param pConnectTimeout the connect timeout
@return the created... | [
"Creates",
"a",
"socket",
"to",
"the",
"given",
"URL",
"and",
"port",
"with",
"the",
"given",
"connect",
"timeout",
".",
"If",
"the",
"socket",
"waits",
"more",
"than",
"the",
"given",
"timout",
"to",
"connect",
"an",
"ConnectException",
"is",
"thrown",
".... | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java#L573-L636 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java | HttpURLConnection.writeRequestHeaders | private static void writeRequestHeaders(OutputStream pOut, URL pURL, String pMethod, Properties pProps, boolean pUsingProxy,
PasswordAuthentication pAuth, String pAuthType) {
PrintWriter out = new PrintWriter(pOut, true); // autoFlush
if (!pUsingProxy) {
... | java | private static void writeRequestHeaders(OutputStream pOut, URL pURL, String pMethod, Properties pProps, boolean pUsingProxy,
PasswordAuthentication pAuth, String pAuthType) {
PrintWriter out = new PrintWriter(pOut, true); // autoFlush
if (!pUsingProxy) {
... | [
"private",
"static",
"void",
"writeRequestHeaders",
"(",
"OutputStream",
"pOut",
",",
"URL",
"pURL",
",",
"String",
"pMethod",
",",
"Properties",
"pProps",
",",
"boolean",
"pUsingProxy",
",",
"PasswordAuthentication",
"pAuth",
",",
"String",
"pAuthType",
")",
"{",... | Writes the HTTP request headers, for HTTP GET method.
@see <A href="http://www.w3.org/Protocols/rfc2616/rfc2616.html">RFC 2616</A> | [
"Writes",
"the",
"HTTP",
"request",
"headers",
"for",
"HTTP",
"GET",
"method",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java#L681-L744 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java | HttpURLConnection.findEndOfHeader | private static int findEndOfHeader(byte[] pBytes, int pEnd) {
byte[] header = HTTP_HEADER_END.getBytes();
// Normal condition, check all bytes
for (int i = 0; i < pEnd - 4; i++) { // Need 4 bytes to match
if ((pBytes[i] == header[0]) && (pBytes[i + 1] == header[1]) && (pBytes[i + 2... | java | private static int findEndOfHeader(byte[] pBytes, int pEnd) {
byte[] header = HTTP_HEADER_END.getBytes();
// Normal condition, check all bytes
for (int i = 0; i < pEnd - 4; i++) { // Need 4 bytes to match
if ((pBytes[i] == header[0]) && (pBytes[i + 1] == header[1]) && (pBytes[i + 2... | [
"private",
"static",
"int",
"findEndOfHeader",
"(",
"byte",
"[",
"]",
"pBytes",
",",
"int",
"pEnd",
")",
"{",
"byte",
"[",
"]",
"header",
"=",
"HTTP_HEADER_END",
".",
"getBytes",
"(",
")",
";",
"// Normal condition, check all bytes",
"for",
"(",
"int",
"i",
... | Finds the end of the HTTP response header in an array of bytes.
@todo This one's a little dirty... | [
"Finds",
"the",
"end",
"of",
"the",
"HTTP",
"response",
"header",
"in",
"an",
"array",
"of",
"bytes",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java#L751-L780 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java | HttpURLConnection.detatchResponseHeader | private static InputStream detatchResponseHeader(BufferedInputStream pIS) throws IOException {
// Store header in byte array
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
pIS.mark(BUF_SIZE);
byte[] buffer = new byte[BUF_SIZE];
int length;
int headerEnd;
... | java | private static InputStream detatchResponseHeader(BufferedInputStream pIS) throws IOException {
// Store header in byte array
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
pIS.mark(BUF_SIZE);
byte[] buffer = new byte[BUF_SIZE];
int length;
int headerEnd;
... | [
"private",
"static",
"InputStream",
"detatchResponseHeader",
"(",
"BufferedInputStream",
"pIS",
")",
"throws",
"IOException",
"{",
"// Store header in byte array",
"ByteArrayOutputStream",
"bytes",
"=",
"new",
"ByteArrayOutputStream",
"(",
")",
";",
"pIS",
".",
"mark",
... | Reads the header part of the response, and copies it to a different
InputStream. | [
"Reads",
"the",
"header",
"part",
"of",
"the",
"response",
"and",
"copies",
"it",
"to",
"a",
"different",
"InputStream",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java#L786-L833 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java | HttpURLConnection.parseHeaderFields | private static Properties parseHeaderFields(String[] pHeaders) {
Properties headers = new Properties();
// Get header information
int split;
String field;
String value;
for (String header : pHeaders) {
//System.err.println(pHeaders[i]);
if ((spli... | java | private static Properties parseHeaderFields(String[] pHeaders) {
Properties headers = new Properties();
// Get header information
int split;
String field;
String value;
for (String header : pHeaders) {
//System.err.println(pHeaders[i]);
if ((spli... | [
"private",
"static",
"Properties",
"parseHeaderFields",
"(",
"String",
"[",
"]",
"pHeaders",
")",
"{",
"Properties",
"headers",
"=",
"new",
"Properties",
"(",
")",
";",
"// Get header information",
"int",
"split",
";",
"String",
"field",
";",
"String",
"value",
... | Pareses the response header fields. | [
"Pareses",
"the",
"response",
"header",
"fields",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java#L838-L859 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java | HttpURLConnection.parseResponseHeader | private static String[] parseResponseHeader(InputStream pIS) throws IOException {
List<String> headers = new ArrayList<String>();
// Wrap Stream in Reader
BufferedReader in = new BufferedReader(new InputStreamReader(pIS));
// Get response status
String header;
while ((... | java | private static String[] parseResponseHeader(InputStream pIS) throws IOException {
List<String> headers = new ArrayList<String>();
// Wrap Stream in Reader
BufferedReader in = new BufferedReader(new InputStreamReader(pIS));
// Get response status
String header;
while ((... | [
"private",
"static",
"String",
"[",
"]",
"parseResponseHeader",
"(",
"InputStream",
"pIS",
")",
"throws",
"IOException",
"{",
"List",
"<",
"String",
">",
"headers",
"=",
"new",
"ArrayList",
"<",
"String",
">",
"(",
")",
";",
"// Wrap Stream in Reader",
"Buffer... | Parses the response headers. | [
"Parses",
"the",
"response",
"headers",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/HttpURLConnection.java#L864-L878 | train |
haraldk/TwelveMonkeys | common/common-image/src/main/java/com/twelvemonkeys/image/GrayFilter.java | GrayFilter.filterRGB | public int filterRGB(int pX, int pY, int pARGB) {
// Get color components
int r = pARGB >> 16 & 0xFF;
int g = pARGB >> 8 & 0xFF;
int b = pARGB & 0xFF;
// ITU standard: Gray scale=(222*Red+707*Green+71*Blue)/1000
int gray = (222 * r + 707 * g + 71 * b) / 10... | java | public int filterRGB(int pX, int pY, int pARGB) {
// Get color components
int r = pARGB >> 16 & 0xFF;
int g = pARGB >> 8 & 0xFF;
int b = pARGB & 0xFF;
// ITU standard: Gray scale=(222*Red+707*Green+71*Blue)/1000
int gray = (222 * r + 707 * g + 71 * b) / 10... | [
"public",
"int",
"filterRGB",
"(",
"int",
"pX",
",",
"int",
"pY",
",",
"int",
"pARGB",
")",
"{",
"// Get color components\r",
"int",
"r",
"=",
"pARGB",
">>",
"16",
"&",
"0xFF",
";",
"int",
"g",
"=",
"pARGB",
">>",
"8",
"&",
"0xFF",
";",
"int",
"b",... | Filters one pixel using ITU color-conversion.
@param pX x
@param pY y
@param pARGB pixel value in default color space
@return the filtered pixel value in the default color space | [
"Filters",
"one",
"pixel",
"using",
"ITU",
"color",
"-",
"conversion",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-image/src/main/java/com/twelvemonkeys/image/GrayFilter.java#L112-L130 | train |
haraldk/TwelveMonkeys | imageio/imageio-bmp/src/main/java/com/twelvemonkeys/imageio/plugins/bmp/AbstractRLEDecoder.java | AbstractRLEDecoder.decode | public final int decode(final InputStream stream, final ByteBuffer buffer) throws IOException {
// TODO: Allow decoding < row.length at a time and get rid of this assertion...
if (buffer.capacity() < row.length) {
throw new AssertionError("This decoder needs a buffer.capacity() of at least o... | java | public final int decode(final InputStream stream, final ByteBuffer buffer) throws IOException {
// TODO: Allow decoding < row.length at a time and get rid of this assertion...
if (buffer.capacity() < row.length) {
throw new AssertionError("This decoder needs a buffer.capacity() of at least o... | [
"public",
"final",
"int",
"decode",
"(",
"final",
"InputStream",
"stream",
",",
"final",
"ByteBuffer",
"buffer",
")",
"throws",
"IOException",
"{",
"// TODO: Allow decoding < row.length at a time and get rid of this assertion...",
"if",
"(",
"buffer",
".",
"capacity",
"("... | Decodes as much data as possible, from the stream into the buffer.
@param stream the input stream containing RLE data
@param buffer the buffer to decode the data to
@return the number of bytes decoded from the stream, to the buffer
@throws IOException if an I/O related exception occurs while reading | [
"Decodes",
"as",
"much",
"data",
"as",
"possible",
"from",
"the",
"stream",
"into",
"the",
"buffer",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-bmp/src/main/java/com/twelvemonkeys/imageio/plugins/bmp/AbstractRLEDecoder.java#L93-L125 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/fileupload/FileUploadFilter.java | FileUploadFilter.init | public void init() throws ServletException {
// Get the name of the upload directory.
String uploadDirParam = getInitParameter("uploadDir");
if (!StringUtil.isEmpty(uploadDirParam)) {
try {
URL uploadDirURL = getServletContext().getResource(uploadDirParam);
... | java | public void init() throws ServletException {
// Get the name of the upload directory.
String uploadDirParam = getInitParameter("uploadDir");
if (!StringUtil.isEmpty(uploadDirParam)) {
try {
URL uploadDirURL = getServletContext().getResource(uploadDirParam);
... | [
"public",
"void",
"init",
"(",
")",
"throws",
"ServletException",
"{",
"// Get the name of the upload directory.\r",
"String",
"uploadDirParam",
"=",
"getInitParameter",
"(",
"\"uploadDir\"",
")",
";",
"if",
"(",
"!",
"StringUtil",
".",
"isEmpty",
"(",
"uploadDirParam... | This method is called by the server before the filter goes into service,
and here it determines the file upload directory.
@throws ServletException | [
"This",
"method",
"is",
"called",
"by",
"the",
"server",
"before",
"the",
"filter",
"goes",
"into",
"service",
"and",
"here",
"it",
"determines",
"the",
"file",
"upload",
"directory",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/fileupload/FileUploadFilter.java#L68-L85 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java | FileUtil.copyDir | private static boolean copyDir(File pFrom, File pTo, boolean pOverWrite) throws IOException {
if (pTo.exists() && !pTo.isDirectory()) {
throw new IOException("A directory may only be copied to another directory, not to a file");
}
pTo.mkdirs(); // mkdir?
boolean allOkay... | java | private static boolean copyDir(File pFrom, File pTo, boolean pOverWrite) throws IOException {
if (pTo.exists() && !pTo.isDirectory()) {
throw new IOException("A directory may only be copied to another directory, not to a file");
}
pTo.mkdirs(); // mkdir?
boolean allOkay... | [
"private",
"static",
"boolean",
"copyDir",
"(",
"File",
"pFrom",
",",
"File",
"pTo",
",",
"boolean",
"pOverWrite",
")",
"throws",
"IOException",
"{",
"if",
"(",
"pTo",
".",
"exists",
"(",
")",
"&&",
"!",
"pTo",
".",
"isDirectory",
"(",
")",
")",
"{",
... | Copies a directory recursively. If the destination folder does not exist,
it is created
@param pFrom the source directory
@param pTo the destination directory
@param pOverWrite {@code true} if we should allow overwrting existing files
@return {@code true} if all files were copied sucessfully
@throws IOException if {@c... | [
"Copies",
"a",
"directory",
"recursively",
".",
"If",
"the",
"destination",
"folder",
"does",
"not",
"exist",
"it",
"is",
"created"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java#L282-L296 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java | FileUtil.copy | public static boolean copy(InputStream pFrom, OutputStream pTo) throws IOException {
Validate.notNull(pFrom, "from");
Validate.notNull(pTo, "to");
// TODO: Consider using file channels for faster copy where possible
// Use buffer size two times byte array, to avoid i/o bottleneck... | java | public static boolean copy(InputStream pFrom, OutputStream pTo) throws IOException {
Validate.notNull(pFrom, "from");
Validate.notNull(pTo, "to");
// TODO: Consider using file channels for faster copy where possible
// Use buffer size two times byte array, to avoid i/o bottleneck... | [
"public",
"static",
"boolean",
"copy",
"(",
"InputStream",
"pFrom",
",",
"OutputStream",
"pTo",
")",
"throws",
"IOException",
"{",
"Validate",
".",
"notNull",
"(",
"pFrom",
",",
"\"from\"",
")",
";",
"Validate",
".",
"notNull",
"(",
"pTo",
",",
"\"to\"",
"... | Copies all data from one stream to another.
The data is copied from the fromStream to the toStream using buffered
streams for efficiency.
@param pFrom The input srteam to copy from
@param pTo The output stream to copy to
@return true. Otherwise, an
IOException is thrown, and the method does not return a value.
@thro... | [
"Copies",
"all",
"data",
"from",
"one",
"stream",
"to",
"another",
".",
"The",
"data",
"is",
"copied",
"from",
"the",
"fromStream",
"to",
"the",
"toStream",
"using",
"buffered",
"streams",
"for",
"efficiency",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/FileUtil.java#L311-L333 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.