docstring_tokens list | code_tokens list |
|---|---|
[
"free",
"the",
"last",
"row"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"free",
"last",
"row",
"native",
"(",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"copy",
"byte",
"array",
"to",
"cursor",
"window"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"put",
"blob",
"native",
"(",
"value",
",",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"copy",
"string",
"to",
"cursor",
"window"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"put",
"string",
"native",
"(",
"value",
",",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"copy",
"integer",
"to",
"cursor",
"window"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"put",
"long",
"native",
"(",
"value",
",",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"copy",
"double",
"to",
"cursor",
"window"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"put",
"double",
"native",
"(",
"value",
",",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"set",
"the",
"[",
"row",
"col",
"]",
"value",
"to",
"null"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"put",
"null",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"returns",
"{",
"@",
"code",
"true",
"}",
"if",
"given",
"field",
"is",
"{",
"@",
"code",
"null",
"}"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"is",
"null",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"returns",
"a",
"byte",
"array",
"for",
"the",
"given",
"field"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"get",
"blob",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"returns",
"the",
"value",
"at",
"(",
"<",
"code",
">",
"row",
"<",
"/",
"code",
">",
"<",
"code",
">",
"col",
"<",
"/",
"code",
">",
")",
"as",
"a",
"<",
"code",
">",
"byte",
"<",
"/",
"code",
">",
"array"
] | [
"private",
"native",
"byte",
"[",
"]",
"get",
"blob",
"native",
"(",
"int",
"row",
",",
"int",
"col",
")",
";"
] |
[
"returns",
"data",
"type",
"of",
"the",
"given",
"column",
"s",
"value",
"<",
"p",
">",
"returned",
"column",
"types",
"are",
"<",
"ul",
">",
"<",
"li",
">",
"{",
"@",
"link",
"cursor",
"#",
"field",
"type",
"null",
"}",
"<",
"/",
"li",
">",
"<",... | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"get",
"type",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"checks",
"if",
"a",
"field",
"contains",
"either",
"a",
"blob",
"or",
"is",
"null"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"is",
"blob",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"checks",
"if",
"a",
"field",
"contains",
"a",
"long"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"is",
"integer",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"checks",
"if",
"a",
"field",
"contains",
"a",
"float"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"is",
"float",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"checks",
"if",
"a",
"field",
"contains",
"either",
"a",
"string",
"or",
"is",
"null"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"is",
"string",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"returns",
"a",
"string",
"for",
"the",
"given",
"field"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"get",
"string",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"returns",
"the",
"value",
"at",
"(",
"<",
"code",
">",
"row",
"<",
"/",
"code",
">",
"<",
"code",
">",
"col",
"<",
"/",
"code",
">",
")",
"as",
"a",
"<",
"code",
">",
"string",
"<",
"/",
"code",
">"
] | [
"private",
"native",
"string",
"get",
"string",
"native",
"(",
"int",
"row",
",",
"int",
"col",
")",
";"
] |
[
"returns",
"a",
"long",
"for",
"the",
"given",
"field",
"row",
"is",
"0",
"based"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"get",
"long",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"returns",
"the",
"value",
"at",
"(",
"<",
"code",
">",
"row",
"<",
"/",
"code",
">",
"<",
"code",
">",
"col",
"<",
"/",
"code",
">",
")",
"as",
"a",
"<",
"code",
">",
"long",
"<",
"/",
"code",
">"
] | [
"private",
"native",
"long",
"get",
"long",
"native",
"(",
"int",
"row",
",",
"int",
"col",
")",
";"
] |
[
"returns",
"a",
"double",
"for",
"the",
"given",
"field",
"row",
"is",
"0",
"based"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"get",
"double",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"returns",
"the",
"value",
"at",
"(",
"<",
"code",
">",
"row",
"<",
"/",
"code",
">",
"<",
"code",
">",
"col",
"<",
"/",
"code",
">",
")",
"as",
"a",
"<",
"code",
">",
"double",
"<",
"/",
"code",
">"
] | [
"private",
"native",
"double",
"get",
"double",
"native",
"(",
"int",
"row",
",",
"int",
"col",
")",
";"
] |
[
"returns",
"a",
"short",
"for",
"the",
"given",
"field",
"row",
"is",
"0",
"based"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"(",
"short",
")",
"get",
"long",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"returns",
"an",
"int",
"for",
"the",
"given",
"field"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"(",
"int",
")",
"get",
"long",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"returns",
"a",
"float",
"for",
"the",
"given",
"field",
"row",
"is",
"0",
"based"
] | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"return",
"(",
"float",
")",
"get",
"double",
"native",
"(",
"row",
"-",
"m",
"start",
"pos",
",",
"col",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"clears",
"out",
"the",
"existing",
"contents",
"of",
"the",
"window",
"making",
"it",
"safe",
"to",
"reuse",
"for",
"new",
"data",
"note",
"that",
"the",
"number",
"of",
"columns",
"in",
"the",
"window",
"may",
"not",
"change",
"across",
"a",
"call",
"t... | [
"acquire",
"reference",
"(",
")",
";",
"try",
"{",
"m",
"start",
"pos",
"=",
"0",
";",
"native",
"clear",
"(",
")",
";",
"}",
"finally",
"{",
"release",
"reference",
"(",
")",
";",
"}"
] |
[
"clears",
"out",
"the",
"native",
"side",
"of",
"things"
] | [
"private",
"native",
"void",
"native",
"clear",
"(",
")",
";"
] |
[
"releases",
"a",
"reference",
"to",
"the",
"object",
"closing",
"the",
"object",
"if",
"the",
"last",
"reference",
"was",
"released"
] | [
"release",
"reference",
"(",
")",
";"
] |
[
"get",
"the",
"binder",
"for",
"the",
"native",
"side",
"of",
"the",
"window"
] | [
"private",
"native",
"i",
"binder",
"native",
"get",
"binder",
"(",
")",
";"
] |
[
"does",
"the",
"native",
"side",
"initialization",
"for",
"an",
"empty",
"window"
] | [
"private",
"native",
"void",
"native",
"init",
"(",
"boolean",
"local",
"only",
",",
"long",
"initial",
"size",
",",
"long",
"growth",
"padding",
"size",
",",
"long",
"max",
"size",
")",
";"
] |
[
"does",
"the",
"native",
"side",
"initialization",
"with",
"an",
"existing",
"binder",
"from",
"another",
"process"
] | [
"private",
"native",
"void",
"native",
"init",
"(",
"i",
"binder",
"native",
"binder",
")",
";"
] |
[
"returns",
"the",
"unique",
"key",
"of",
"this",
"channel"
] | [
"return",
"get",
"class",
"(",
")",
"get",
"simple",
"name",
"(",
")",
";"
] |
[
"<",
"p",
">",
"performs",
"the",
"dispatch",
"<",
"/",
"p",
">"
] | [
"if",
"(",
"string",
"utils",
"equals",
"(",
"notification",
"get",
"type",
"(",
")",
",",
"notification",
"type",
")",
"|",
"|",
"string",
"utils",
"equals",
"(",
"\"",
"\"",
",",
"notification",
"type",
")",
")",
"{",
"dispatch",
"(",
"notification",
... |
[
"<",
"p",
">",
"implements",
"the",
"logic",
"that",
"defines",
"which",
"users",
"will",
"receive",
"the",
"notification",
"<",
"/",
"p",
">",
"the",
"purpose",
"of",
"this",
"method",
"is",
"to",
"populate",
"the",
"context",
"object",
"with",
"users",
... | [
"public",
"abstract",
"void",
"dispatch",
"(",
"notification",
"notification",
",",
"context",
"context",
")",
";"
] |
[
"<",
"tr",
">",
"<",
"li",
">",
"list",
"is",
"going",
"to",
"be",
"nested",
"in",
"the",
"parse",
"tree",
"<",
"/",
"li",
">",
"<",
"/",
"tr",
">"
] | [
"this",
"field",
"1",
"=",
"field",
"1",
";"
] |
[
"<",
"p",
">",
"<",
"li",
">",
"<",
"tr",
">",
"<",
"td",
">",
"<",
"t",
"h",
">",
"<",
"body",
">",
"<",
"col",
"g",
"r",
"o",
"u",
"p",
">",
"<",
"dd",
">",
"<",
"dt",
">",
"<",
"head",
">",
"<",
"html",
">",
"<",
"option",
">",
"... | [
"this",
"field",
"6",
"=",
"field",
"6",
";"
] |
[
"reads",
"a",
"byte",
"of",
"data",
"from",
"this",
"input",
"stream",
"equivalent",
"to",
"{"
] | [
"return",
"read",
"(",
"buffer",
",",
"0",
",",
"buffer",
"length",
")",
";"
] |
[
"sets",
"background",
"color",
"default",
"value",
"is",
"{",
"@",
"link",
"#",
"default",
"back",
"color",
"}"
] | [
"back",
"color",
"=",
"color",
";"
] |
[
"sets",
"borders",
"color",
"default",
"value",
"is",
"{",
"@",
"link",
"#",
"default",
"border",
"color",
"}"
] | [
"paint",
"stroke",
"set",
"color",
"(",
"color",
")",
";"
] |
[
"sets",
"borders",
"width",
"in",
"pixels",
"default",
"value",
"is",
"{",
"@",
"link",
"#",
"default",
"border",
"width",
"}",
"dp"
] | [
"paint",
"stroke",
"set",
"stroke",
"width",
"(",
"width",
")",
";"
] |
[
"sets",
"borders",
"width",
"in",
"particular",
"units",
"default",
"value",
"is",
"{",
"@",
"link",
"#",
"default",
"border",
"width",
"}",
"dp"
] | [
"set",
"border",
"width",
"(",
"units",
"utils",
"to",
"pixels",
"(",
"get",
"context",
"(",
")",
",",
"unit",
",",
"width",
")",
")",
";"
] |
[
"sets",
"settings",
"to",
"get",
"movement",
"area",
"from"
] | [
"this",
"settings",
"=",
"settings",
";",
"update",
"(",
")",
";"
] |
[
"whether",
"to",
"round",
"bounds",
"corners"
] | [
"rounding",
"=",
"rounded",
"?",
"1f",
":",
"0f",
";",
"update",
"(",
")",
";"
] |
[
"applies",
"area",
"size",
"area",
"position",
"and",
"corners",
"rounding"
] | [
"update",
"(",
")",
";"
] |
[
"inject",
"broker",
"controller",
"for",
"this",
"listener"
] | [
"this",
"broker",
"controller",
"=",
"broker",
"controller",
";"
] |
[
"in",
"order",
"to",
"avoid",
"check",
"back",
"unlimited",
"we",
"will",
"discard",
"the",
"message",
"that",
"have",
"been",
"checked",
"more",
"than",
"a",
"certain",
"number",
"of",
"times"
] | [
"public",
"abstract",
"void",
"resolve",
"discard",
"msg",
"(",
"message",
"ext",
"msg",
"ext",
")",
";"
] |
[
"auxiliary",
"method",
"to",
"make",
"sure",
"that",
"enough",
"followers",
"terminated"
] | [
"int",
"loop",
"counter",
"=",
"0",
";",
"while",
"(",
"(",
"quora",
"get",
"(",
"id",
")",
"size",
"(",
")",
"<",
"=",
"count",
"/",
"2",
")",
"&",
"&",
"(",
"loop",
"counter",
"<",
"max",
"loop",
"counter",
")",
")",
"{",
"thread",
"sleep",
... |
[
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"... | [
"ctx",
"visit",
"(",
"privilege",
")",
";"
] |
[
"the",
"i",
"d",
"3v",
"2",
"frame",
"identifier"
] | [
"return",
"i",
"d",
"3v",
"2",
"3",
"frames",
"frame",
"id",
"v3",
"album",
"sort",
"order",
"musicbrainz",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"loading",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"build",
"(",
"null",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"async",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"try",
"{",
"caffeine",
"new",
"builder",
"(",
")",
"build",
"async",
"(",
"(",
"cache",
"loader",
"<",
"object",
",",
"object",
">",
")",
"null",
")",
";",
"assert",
"fail",
"(",
")",
";",
"}",
"catch",
"(",
"null",
"pointer",
"exception",
"expected... |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"initial",
"capacity",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"initial",
"capacity",
"(",
"-",
"1",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"maximum",
"size",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"maximum",
"size",
"(",
"-",
"1",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"maximum",
"weight",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"maximum",
"weight",
"(",
"-",
"1",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"weigher",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"weigher",
"(",
"null",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"expire",
"after",
"access",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"expire",
"after",
"access",
"(",
"-",
"1",
",",
"time",
"unit",
"milliseconds",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"expire",
"after",
"access",
":",
"java",
"time",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"expire",
"after",
"access",
"(",
"duration",
"of",
"millis",
"(",
"-",
"1",
")",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"expire",
"after",
"write",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"expire",
"after",
"write",
"(",
"-",
"1",
",",
"time",
"unit",
"milliseconds",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"expire",
"after",
"write",
":",
"java",
"time",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"expire",
"after",
"write",
"(",
"duration",
"of",
"millis",
"(",
"-",
"1",
")",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"expiry",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"expire",
"after",
"(",
"null",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"refresh",
"after",
"write",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"refresh",
"after",
"write",
"(",
"-",
"1",
",",
"time",
"unit",
"milliseconds",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"refresh",
"after",
"write",
":",
"java",
"time",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"refresh",
"after",
"write",
"(",
"duration",
"of",
"millis",
"(",
"-",
"1",
")",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"weak",
"keys",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"weak",
"keys",
"(",
")",
"weak",
"keys",
"(",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"weak",
"values",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"weak",
"values",
"(",
")",
"weak",
"values",
"(",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"soft",
"values",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"soft",
"values",
"(",
")",
"soft",
"values",
"(",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"executor",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"executor",
"(",
"null",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"ticker",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"ticker",
"(",
"null",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"stats",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"record",
"stats",
"(",
"null",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"removal",
"listener",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"removal",
"listener",
"(",
"null",
")",
";"
] |
[
"/",
"*",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"cache",
"writer",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-"
] | [
"caffeine",
"new",
"builder",
"(",
")",
"writer",
"(",
"null",
")",
";"
] |
[
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"=",
"... | [
"final",
"i",
"ease",
"function",
"ease",
"function",
"=",
"this",
"m",
"ease",
"function",
";",
"final",
"float",
"maximum",
"width",
"=",
"this",
"get",
"maximum",
"width",
"(",
"p",
"menu",
"items",
")",
";",
"final",
"float",
"overall",
"height",
"="... |
[
"{"
] | [
"return",
"true",
";"
] |
[
"if",
"set",
"to",
"true",
"any",
"adapter",
"set",
"on",
"this",
"recyclerview",
"will",
"be",
"removed",
"when",
"this",
"view",
"is",
"detached",
"from",
"the",
"window",
"this",
"is",
"useful",
"to",
"prevent",
"leaking",
"a",
"reference",
"to",
"this"... | [
"this",
"remove",
"adapter",
"when",
"detached",
"from",
"window",
"=",
"remove",
"adapter",
"when",
"detached",
"from",
"window",
";"
] |
[
"if",
"{"
] | [
"this",
"delay",
"ms",
"when",
"removing",
"adapter",
"on",
"detach",
"=",
"delay",
"ms",
"when",
"removing",
"adapter",
"on",
"detach",
";"
] |
[
"create",
"a",
"new",
"instance",
"of",
"a",
"view",
"pool",
"to",
"use",
"with",
"this",
"recyclerview",
"by",
"default",
"a",
"{"
] | [
"return",
"new",
"unbounded",
"view",
"pool",
"(",
")",
";"
] |
[
"to",
"maximize",
"view",
"recycling",
"by",
"default",
"we",
"share",
"the",
"same",
"view",
"pool",
"across",
"all",
"{"
] | [
"return",
"true",
";"
] |
[
"if",
"a",
"grid",
"layout",
"manager",
"is",
"set",
"we",
"sync",
"the",
"span",
"count",
"between",
"the",
"layout",
"and",
"the",
"epoxy",
"adapter",
"automatically"
] | [
"layout",
"manager",
"layout",
"=",
"get",
"layout",
"manager",
"(",
")",
";",
"if",
"(",
"layout",
"instanceof",
"grid",
"layout",
"manager",
"&",
"&",
"epoxy",
"controller",
"!",
"=",
"null",
")",
"{",
"grid",
"layout",
"manager",
"grid",
"=",
"(",
"... |
[
"set",
"a",
"pixel",
"value",
"to",
"use",
"as",
"spacing",
"between",
"items",
"if",
"this",
"is",
"a",
"positive",
"number",
"an",
"item",
"decoration",
"will",
"be",
"added",
"to",
"space",
"all",
"items",
"this",
"far",
"apart",
"from",
"each",
"othe... | [
"remove",
"item",
"decoration",
"(",
"spacing",
"decorator",
")",
";",
"spacing",
"decorator",
"set",
"px",
"between",
"items",
"(",
"spacing",
"px",
")",
";",
"if",
"(",
"spacing",
"px",
">",
"0",
")",
"{",
"add",
"item",
"decoration",
"(",
"spacing",
... |
[
"set",
"a",
"list",
"of",
"{",
"@",
"link",
"epoxy",
"model",
"}",
"s",
"to",
"show",
"in",
"this",
"recycler",
"view",
"<",
"p",
">",
"alternatively",
"you",
"can",
"set",
"an",
"{",
"@",
"link",
"epoxy",
"controller",
"}",
"to",
"handle",
"building... | [
"if",
"(",
"!",
"(",
"epoxy",
"controller",
"instanceof",
"simple",
"epoxy",
"controller",
")",
")",
"{",
"set",
"controller",
"(",
"new",
"simple",
"epoxy",
"controller",
"(",
")",
")",
";",
"}",
"(",
"(",
"simple",
"epoxy",
"controller",
")",
"epoxy",
... |
[
"set",
"an",
"epoxy",
"controller",
"to",
"populate",
"this",
"recycler",
"view",
"this",
"does",
"not",
"make",
"the",
"controller",
"build",
"its",
"models",
"that",
"must",
"be",
"done",
"separately",
"via",
"{",
"@",
"link",
"#",
"request",
"model",
"b... | [
"epoxy",
"controller",
"=",
"controller",
";",
"set",
"adapter",
"(",
"controller",
"get",
"adapter",
"(",
")",
")",
";",
"sync",
"span",
"count",
"(",
")",
";"
] |
[
"set",
"an",
"epoxy",
"controller",
"to",
"populate",
"this",
"recycler",
"view",
"and",
"tell",
"the",
"controller",
"to",
"build",
"models",
"<",
"p",
">",
"the",
"controller",
"can",
"be",
"cleared",
"with",
"{",
"@",
"link",
"#",
"clear",
"(",
")",
... | [
"controller",
"request",
"model",
"build",
"(",
")",
";",
"set",
"controller",
"(",
"controller",
")",
";"
] |
[
"allows",
"you",
"to",
"build",
"models",
"via",
"a",
"callback",
"instead",
"of",
"needing",
"to",
"create",
"a",
"new",
"epoxy",
"controller",
"class",
"this",
"is",
"useful",
"if",
"your",
"models",
"are",
"simple",
"and",
"you",
"would",
"like",
"to",
... | [
"set",
"controller",
"and",
"build",
"models",
"(",
"new",
"epoxy",
"controller",
"(",
")",
"{",
"@",
"override",
"protected",
"void",
"build",
"models",
"(",
")",
"{",
"callback",
"build",
"models",
"(",
"this",
")",
";",
"}",
"}",
")",
";"
] |
[
"<",
"p",
">",
"the",
"<",
"code",
">",
"next",
"token",
"<",
"/",
"code",
">",
"value",
"to",
"include",
"in",
"a",
"future",
"<",
"code",
">",
"describe",
"export",
"tasks",
"<",
"/",
"code",
">",
"request",
"when",
"the",
"results",
"of",
"a",
... | [
"set",
"next",
"token",
"(",
"next",
"token",
")",
";",
"return",
"this",
";"
] |
[
"<",
"p",
">",
"specifies",
"where",
"in",
"a",
"web",
"request",
"to",
"look",
"for",
"cross",
"-",
"site",
"scripting",
"attacks",
"<",
"/",
"p",
">"
] | [
"set",
"field",
"to",
"match",
"(",
"field",
"to",
"match",
")",
";",
"return",
"this",
";"
] |
[
"<",
"p",
">",
"text",
"transformations",
"eliminate",
"some",
"of",
"the",
"unusual",
"formatting",
"that",
"attackers",
"use",
"in",
"web",
"requests",
"in",
"an",
"effort",
"to",
"bypass",
"aws",
"waf",
"if",
"you",
"specify",
"a",
"transformation",
"aws"... | [
"set",
"text",
"transformation",
"(",
"text",
"transformation",
")",
";",
"return",
"this",
";"
] |
[
"<",
"p",
">",
"text",
"transformations",
"eliminate",
"some",
"of",
"the",
"unusual",
"formatting",
"that",
"attackers",
"use",
"in",
"web",
"requests",
"in",
"an",
"effort",
"to",
"bypass",
"aws",
"waf",
"if",
"you",
"specify",
"a",
"transformation",
"aws"... | [
"this",
"text",
"transformation",
"=",
"text",
"transformation",
"to",
"string",
"(",
")",
";",
"return",
"this",
";"
] |
[
"remembers",
"{"
] | [
"preconditions",
"check",
"not",
"null",
"(",
"error",
"message",
")",
";",
"if",
"(",
"first",
"error",
"message",
"=",
"=",
"null",
")",
"{",
"first",
"error",
"message",
"=",
"error",
"message",
";",
"}"
] |
[
"returns",
"host",
"name"
] | [
"return",
"host",
"name",
";"
] |
[
"returns",
"host",
"ip",
"address"
] | [
"return",
"host",
"address",
";"
] |
[
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"-",
"... | [
"if",
"(",
"in",
"ends",
"with",
"(",
"file",
"separator",
")",
")",
"{",
"return",
"in",
"substring",
"(",
"0",
",",
"in",
"length",
"(",
")",
"-",
"1",
")",
";",
"}",
"return",
"in",
";"
] |
[
"just",
"a",
"trick",
"to",
"use",
"variable",
"args",
"which",
"is",
"shorter",
"than",
"writing",
"new",
"quality",
"profile",
"[",
"]",
"{",
"}"
] | [
"return",
"qps",
";"
] |
[
"gets",
"the",
"cursor",
"helper",
"for",
"the",
"children",
"in",
"the",
"given",
"group"
] | [
"my",
"cursor",
"helper",
"cursor",
"helper",
"=",
"m",
"children",
"cursor",
"helpers",
"get",
"(",
"group",
"position",
")",
";",
"if",
"(",
"cursor",
"helper",
"=",
"=",
"null",
")",
"{",
"if",
"(",
"m",
"group",
"cursor",
"helper",
"move",
"to",
... |
[
"gets",
"the",
"cursor",
"for",
"the",
"children",
"at",
"the",
"given",
"group",
"subclasses",
"must",
"implement",
"this",
"method",
"to",
"return",
"the",
"children",
"data",
"for",
"a",
"particular",
"group",
"<",
"p",
">",
"if",
"you",
"want",
"to",
... | [
"abstract",
"protected",
"cursor",
"get",
"children",
"cursor",
"(",
"cursor",
"group",
"cursor",
")",
";"
] |
[
"sets",
"the",
"group",
"cursor"
] | [
"m",
"group",
"cursor",
"helper",
"change",
"cursor",
"(",
"cursor",
",",
"false",
")",
";"
] |
[
"makes",
"a",
"new",
"group",
"view",
"to",
"hold",
"the",
"group",
"data",
"pointed",
"to",
"by",
"cursor"
] | [
"protected",
"abstract",
"view",
"new",
"group",
"view",
"(",
"context",
"context",
",",
"cursor",
"cursor",
",",
"boolean",
"is",
"expanded",
",",
"view",
"group",
"parent",
")",
";"
] |
[
"bind",
"an",
"existing",
"view",
"to",
"the",
"group",
"data",
"pointed",
"to",
"by",
"cursor"
] | [
"protected",
"abstract",
"void",
"bind",
"group",
"view",
"(",
"view",
"view",
",",
"context",
"context",
",",
"cursor",
"cursor",
",",
"boolean",
"is",
"expanded",
")",
";"
] |
[
"makes",
"a",
"new",
"child",
"view",
"to",
"hold",
"the",
"data",
"pointed",
"to",
"by",
"cursor"
] | [
"protected",
"abstract",
"view",
"new",
"child",
"view",
"(",
"context",
"context",
",",
"cursor",
"cursor",
",",
"boolean",
"is",
"last",
"child",
",",
"view",
"group",
"parent",
")",
";"
] |
[
"bind",
"an",
"existing",
"view",
"to",
"the",
"child",
"data",
"pointed",
"to",
"by",
"cursor"
] | [
"protected",
"abstract",
"void",
"bind",
"child",
"view",
"(",
"view",
"view",
",",
"context",
"context",
",",
"cursor",
"cursor",
",",
"boolean",
"is",
"last",
"child",
")",
";"
] |
[
"notifies",
"a",
"data",
"set",
"change",
"but",
"with",
"the",
"option",
"of",
"not",
"releasing",
"any",
"cached",
"cursors"
] | [
"if",
"(",
"release",
"cursors",
")",
"{",
"release",
"cursor",
"helpers",
"(",
")",
";",
"}",
"super",
"notify",
"data",
"set",
"changed",
"(",
")",
";"
] |
[
"deactivates",
"the",
"cursor",
"and",
"removes",
"the",
"helper",
"from",
"cache"
] | [
"my",
"cursor",
"helper",
"cursor",
"helper",
"=",
"get",
"children",
"cursor",
"helper",
"(",
"group",
"position",
",",
"true",
")",
";",
"m",
"children",
"cursor",
"helpers",
"remove",
"(",
"group",
"position",
")",
";",
"cursor",
"helper",
"deactivate",
... |
[
"blast",
"some",
"random",
"strings",
"through",
"the",
"analyzer"
] | [
"analyzer",
"a",
"=",
"new",
"analyzer",
"(",
")",
"{",
"@",
"override",
"protected",
"token",
"stream",
"components",
"create",
"components",
"(",
"string",
"field",
"name",
")",
"{",
"tokenizer",
"t",
"=",
"new",
"mock",
"tokenizer",
"(",
"mock",
"tokeni... |
[
"<",
"p",
">",
"the",
"name",
"of",
"the",
"state",
"<",
"/",
"p",
">"
] | [
"set",
"name",
"(",
"name",
")",
";",
"return",
"this",
";"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.