docstring_tokens list | code_tokens list |
|---|---|
[
"{"
] | [
"ignite",
"configuration",
"cfg",
"=",
"super",
"get",
"configuration",
"(",
"ignite",
"instance",
"name",
")",
";",
"cfg",
"get",
"transaction",
"configuration",
"(",
")",
"set",
"tx",
"serializable",
"enabled",
"(",
"true",
")",
";",
"return",
"cfg",
";"
] |
[
"{"
] | [
"store",
"=",
"new",
"test",
"store",
"(",
")",
";",
"super",
"before",
"tests",
"started",
"(",
")",
";",
"last",
"key",
"=",
"0",
";"
] |
[
"{"
] | [
"super",
"after",
"tests",
"stopped",
"(",
")",
";",
"store",
"=",
"null",
";"
] |
[
"{"
] | [
"store",
"force",
"fail",
"(",
"false",
")",
";",
"super",
"after",
"test",
"(",
")",
";"
] |
[
"{"
] | [
"return",
"null",
";"
] |
[
"{"
] | [
"return",
"collections",
"empty",
"map",
"(",
")",
";"
] |
[
"generate",
"the",
"histogram",
"of",
"given",
"data",
"the",
"number",
"of",
"bins",
"k",
"is",
"decided",
"by",
"square",
"-",
"root",
"choice"
] | [
"return",
"histogram",
"(",
"data",
",",
"bins",
"(",
"data",
"length",
")",
")",
";"
] |
[
"generate",
"the",
"histogram",
"of",
"given",
"data",
"the",
"number",
"of",
"bins",
"k",
"is",
"decided",
"by",
"square",
"-",
"root",
"choice"
] | [
"return",
"histogram",
"(",
"data",
",",
"bins",
"(",
"data",
"length",
")",
")",
";"
] |
[
"generate",
"the",
"histogram",
"of",
"given",
"data",
"the",
"number",
"of",
"bins",
"k",
"is",
"decided",
"by",
"square",
"-",
"root",
"choice"
] | [
"return",
"histogram",
"(",
"data",
",",
"bins",
"(",
"data",
"length",
")",
")",
";"
] |
[
"generate",
"the",
"histogram",
"of",
"n",
"bins"
] | [
"double",
"min",
"=",
"math",
"min",
"(",
"data",
")",
";",
"double",
"max",
"=",
"math",
"max",
"(",
"data",
")",
";",
"double",
"span",
"=",
"max",
"-",
"min",
";",
"if",
"(",
"span",
"=",
"=",
"0",
")",
"{",
"span",
"=",
"k",
";",
"}",
"... |
[
"returns",
"the",
"breakpoints",
"between",
"histogram",
"cells",
"for",
"a",
"dataset",
"based",
"on",
"a",
"suggested",
"bin",
"width",
"h"
] | [
"return",
"breaks",
"(",
"math",
"min",
"(",
"x",
")",
",",
"math",
"max",
"(",
"x",
")",
",",
"h",
")",
";"
] |
[
"returns",
"the",
"breakpoints",
"between",
"histogram",
"cells",
"for",
"a",
"dataset"
] | [
"return",
"breaks",
"(",
"math",
"min",
"(",
"x",
")",
",",
"math",
"max",
"(",
"x",
")",
",",
"k",
")",
";"
] |
[
"returns",
"the",
"number",
"of",
"bins",
"by",
"square",
"-",
"root",
"rule",
"which",
"takes",
"the",
"square",
"root",
"of",
"the",
"number",
"of",
"data",
"points",
"in",
"the",
"sample",
"(",
"used",
"by",
"excel",
"histograms",
"and",
"many",
"othe... | [
"int",
"k",
"=",
"(",
"int",
")",
"math",
"sqrt",
"(",
"n",
")",
";",
"if",
"(",
"k",
"<",
"5",
")",
"k",
"=",
"5",
";",
"return",
"k",
";"
] |
[
"returns",
"the",
"number",
"of",
"bins",
"by",
"sturges",
"rule",
"k",
"=",
"ceil",
"(",
"log",
"2",
"(",
"n",
")",
"+",
"1",
")"
] | [
"int",
"k",
"=",
"(",
"int",
")",
"math",
"ceil",
"(",
"math",
"log",
"2",
"(",
"n",
")",
"+",
"1",
")",
";",
"if",
"(",
"k",
"<",
"5",
")",
"k",
"=",
"5",
";",
"return",
"k",
";"
] |
[
"returns",
"the",
"number",
"of",
"bins",
"by",
"scott",
"s",
"rule",
"h",
"=",
"3",
"5",
"*",
"&",
"sigma",
";",
"/",
"(",
"n",
"<",
"sup",
">",
"1",
"/",
"3",
"<",
"/",
"sup",
">",
")"
] | [
"double",
"h",
"=",
"math",
"ceil",
"(",
"3",
"5",
"*",
"math",
"sd",
"(",
"x",
")",
"/",
"math",
"pow",
"(",
"x",
"length",
",",
"1",
"0",
"/",
"3",
")",
")",
";",
"return",
"bins",
"(",
"x",
",",
"h",
")",
";"
] |
[
"<",
"p",
">",
"the",
"name",
"of",
"the",
"data",
"set",
"whose",
"content",
"generation",
"will",
"trigger",
"the",
"new",
"data",
"set",
"content",
"generation",
"<",
"/",
"p",
">"
] | [
"set",
"name",
"(",
"name",
")",
";",
"return",
"this",
";"
] |
[
"create",
"a",
"new",
"{"
] | [
"return",
"new",
"pooled",
"channel",
"handler",
"context",
"(",
"ctx",
")",
";"
] |
[
"sets",
"{"
] | [
"fallback",
"visitor",
"=",
"visitor",
";",
"string",
"visitor",
"=",
"visitor",
";",
"type",
"visitor",
"=",
"visitor",
";",
"field",
"visitor",
"=",
"visitor",
";",
"method",
"visitor",
"=",
"visitor",
";"
] |
[
"sets",
"{"
] | [
"fallback",
"visitor",
"=",
"visitor",
";"
] |
[
"sets",
"{"
] | [
"string",
"visitor",
"=",
"visitor",
";"
] |
[
"sets",
"{"
] | [
"type",
"visitor",
"=",
"visitor",
";"
] |
[
"sets",
"{"
] | [
"field",
"visitor",
"=",
"visitor",
";"
] |
[
"sets",
"{"
] | [
"method",
"visitor",
"=",
"visitor",
";"
] |
[
"<",
"p",
">",
"an",
"object",
"that",
"represents",
"the",
"details",
"of",
"the",
"consumer",
"you",
"registered",
"when",
"you",
"register",
"a",
"consumer",
"it",
"gets",
"an",
"arn",
"that",
"is",
"generated",
"by",
"kinesis",
"data",
"streams",
"<",
... | [
"return",
"this",
"consumer",
";"
] |
[
"<",
"p",
">",
"the",
"listener",
"<",
"/",
"p",
">"
] | [
"return",
"this",
"listener",
";"
] |
[
"create",
"an",
"initial",
"map",
"of",
"consumer",
"properties",
"from",
"the",
"state",
"of",
"this",
"instance",
"<",
"p",
">",
"this",
"allows",
"you",
"to",
"add",
"additional",
"properties",
"if",
"necessary",
"and",
"override",
"the",
"default",
"kafk... | [
"map",
"<",
"string",
",",
"object",
">",
"properties",
"=",
"build",
"common",
"properties",
"(",
")",
";",
"properties",
"put",
"all",
"(",
"this",
"consumer",
"build",
"properties",
"(",
")",
")",
";",
"return",
"properties",
";"
] |
[
"create",
"an",
"initial",
"map",
"of",
"producer",
"properties",
"from",
"the",
"state",
"of",
"this",
"instance",
"<",
"p",
">",
"this",
"allows",
"you",
"to",
"add",
"additional",
"properties",
"if",
"necessary",
"and",
"override",
"the",
"default",
"kafk... | [
"map",
"<",
"string",
",",
"object",
">",
"properties",
"=",
"build",
"common",
"properties",
"(",
")",
";",
"properties",
"put",
"all",
"(",
"this",
"producer",
"build",
"properties",
"(",
")",
")",
";",
"return",
"properties",
";"
] |
[
"create",
"an",
"initial",
"map",
"of",
"admin",
"properties",
"from",
"the",
"state",
"of",
"this",
"instance",
"<",
"p",
">",
"this",
"allows",
"you",
"to",
"add",
"additional",
"properties",
"if",
"necessary",
"and",
"override",
"the",
"default",
"kafka",... | [
"map",
"<",
"string",
",",
"object",
">",
"properties",
"=",
"build",
"common",
"properties",
"(",
")",
";",
"properties",
"put",
"all",
"(",
"this",
"admin",
"build",
"properties",
"(",
")",
")",
";",
"return",
"properties",
";"
] |
[
"create",
"an",
"initial",
"map",
"of",
"streams",
"properties",
"from",
"the",
"state",
"of",
"this",
"instance",
"<",
"p",
">",
"this",
"allows",
"you",
"to",
"add",
"additional",
"properties",
"if",
"necessary"
] | [
"map",
"<",
"string",
",",
"object",
">",
"properties",
"=",
"build",
"common",
"properties",
"(",
")",
";",
"properties",
"put",
"all",
"(",
"this",
"streams",
"build",
"properties",
"(",
")",
")",
";",
"return",
"properties",
";"
] |
[
"<",
"p",
">",
"the",
"stable",
"and",
"unique",
"string",
"identifying",
"the",
"group",
"for",
"more",
"information",
"about",
"i",
"ds",
"see",
"<",
"a",
"href",
"=",
"http",
":",
"/",
"/",
"docs",
"aws",
"amazon",
"com",
"/",
"iam",
"/",
"latest"... | [
"return",
"this",
"group",
"id",
";"
] |
[
"<",
"p",
">",
"compressing",
"data",
"helps",
"save",
"on",
"storage",
"space",
"if",
"your",
"transform",
"data",
"is",
"compressed",
"specify",
"the",
"compression",
"type",
"and",
"amazon",
"sage",
"maker",
"will",
"automatically",
"decompress",
"the",
"da... | [
"return",
"this",
"compression",
"type",
";"
] |
[
"<",
"p",
">",
"compressing",
"data",
"helps",
"save",
"on",
"storage",
"space",
"if",
"your",
"transform",
"data",
"is",
"compressed",
"specify",
"the",
"compression",
"type",
"and",
"amazon",
"sage",
"maker",
"will",
"automatically",
"decompress",
"the",
"da... | [
"this",
"compression",
"type",
"=",
"compression",
"type",
";"
] |
[
"the",
"number",
"of",
"consecutive",
"times",
"that",
"attempts",
"to",
"read",
"a",
"manifest",
"or",
"segment",
"must",
"fail",
"before",
"the",
"input",
"is",
"considered",
"unavailable"
] | [
"return",
"this",
"retries",
";"
] |
[
"determines",
"if",
"this",
"plugin",
"should",
"fail",
"fast",
"upon",
"a",
"plugin",
"s",
"failure"
] | [
"this",
"fail",
"fast",
"=",
"fail",
"fast",
";"
] |
[
"<",
"p",
">",
"the",
"number",
"of",
"nodes",
"in",
"the",
"dax",
"cluster",
"a",
"replication",
"factor",
"of",
"1",
"will",
"create",
"a",
"single",
"-",
"node",
"cluster",
"without",
"any",
"read",
"replicas",
"for",
"additional",
"fault",
"tolerance",... | [
"return",
"this",
"replication",
"factor",
";"
] |
[
"<",
"p",
">",
"the",
"number",
"of",
"nodes",
"in",
"the",
"dax",
"cluster",
"a",
"replication",
"factor",
"of",
"1",
"will",
"create",
"a",
"single",
"-",
"node",
"cluster",
"without",
"any",
"read",
"replicas",
"for",
"additional",
"fault",
"tolerance",... | [
"this",
"replication",
"factor",
"=",
"replication",
"factor",
";"
] |
[
"<",
"p",
">",
"the",
"protocol",
"being",
"used",
"can",
"be",
"one",
"of",
"the",
"following",
"<",
"/",
"p",
">",
"<",
"ul",
">",
"<",
"li",
">",
"<",
"p",
">",
"<",
"code",
">",
"tcp",
"<",
"/",
"code",
">",
"-",
"transmission",
"control",
... | [
"return",
"this",
"protocol",
";"
] |
[
"set",
"to",
"enable",
"or",
"disable",
"the",
"particle",
"emitter"
] | [
"this",
"enabled",
"=",
"enabled",
";"
] |
[
"/",
"*",
"private",
"boolean",
"is",
"j",
"s",
"f",
"spec",
"over",
"1",
"1",
"(",
"module",
"identifier",
"jsf",
"module",
"module",
"dependency",
"jsf",
"a",
"p",
"i",
")",
"throws",
"deployment",
"unit",
"processing",
"exception",
"{",
"try",
"{",
... | [
"if",
"(",
"jsf",
"version",
"equals",
"(",
"jsf",
"version",
"marker",
"war",
"bundles",
"jsf",
"impl",
")",
")",
"return",
";",
"module",
"identifier",
"jsf",
"module",
"=",
"module",
"id",
"factory",
"get",
"impl",
"mod",
"id",
"(",
"jsf",
"version",
... |
[
"a",
"cdi",
"view",
"handler"
] | [
"j",
"boss",
"web",
"meta",
"data",
"web",
"meta",
"data",
"=",
"war",
"meta",
"data",
"get",
"merged",
"j",
"boss",
"web",
"meta",
"data",
"(",
")",
";",
"if",
"(",
"web",
"meta",
"data",
"=",
"=",
"null",
")",
"{",
"web",
"meta",
"data",
"=",
... |
[
"do",
"-",
"it",
"-",
"all",
"c",
"toolchain",
"selection",
"method",
"that",
"considers",
"toolchain",
"identifiers",
"cpu",
"/",
"compiler",
"attributes",
"and",
"cpu",
"/",
"compiler",
"options",
"returns",
"the",
"c",
"toolchain",
"from",
"the",
"crosstool... | [
"string",
"identifier",
"attribute",
"or",
"null",
"=",
"string",
"util",
"empty",
"to",
"null",
"(",
"identifier",
"attribute",
")",
";",
"string",
"cpu",
"attribute",
"or",
"null",
"=",
"string",
"util",
"empty",
"to",
"null",
"(",
"cpu",
"attribute",
")... |
[
"<",
"p",
">",
"the",
"id",
"of",
"the",
"project",
"to",
"which",
"you",
"will",
"add",
"the",
"iam",
"user",
"<",
"/",
"p",
">"
] | [
"this",
"project",
"id",
"=",
"project",
"id",
";"
] |
[
"<",
"p",
">",
"the",
"name",
"of",
"the",
"destination",
"<",
"/",
"p",
">"
] | [
"this",
"destination",
"name",
"=",
"destination",
"name",
";"
] |
[
"connection",
"factory",
"to",
"obtain",
"connection",
"to",
"pub",
"sub",
"service",
"if",
"non",
"provided",
"the",
"default",
"will",
"be",
"used"
] | [
"return",
"(",
"null",
"=",
"=",
"connection",
"factory",
")",
"?",
"get",
"component",
"(",
")",
"get",
"connection",
"factory",
"(",
")",
":",
"connection",
"factory",
";"
] |
[
"<",
"p",
">",
"the",
"access",
"token",
"<",
"/",
"p",
">"
] | [
"set",
"access",
"token",
"(",
"access",
"token",
")",
";",
"return",
"this",
";"
] |
[
"<",
"p",
">",
"the",
"device",
"key",
"<",
"/",
"p",
">"
] | [
"this",
"device",
"key",
"=",
"device",
"key",
";"
] |
[
"<",
"p",
">",
"the",
"device",
"key",
"<",
"/",
"p",
">"
] | [
"return",
"this",
"device",
"key",
";"
] |
[
"<",
"p",
">",
"the",
"device",
"key",
"<",
"/",
"p",
">"
] | [
"set",
"device",
"key",
"(",
"device",
"key",
")",
";",
"return",
"this",
";"
] |
[
"<",
"p",
">",
"the",
"configuration",
"of",
"the",
"device",
"secret",
"verifier",
"<",
"/",
"p",
">"
] | [
"this",
"device",
"secret",
"verifier",
"config",
"=",
"device",
"secret",
"verifier",
"config",
";"
] |
[
"<",
"p",
">",
"the",
"configuration",
"of",
"the",
"device",
"secret",
"verifier",
"<",
"/",
"p",
">"
] | [
"return",
"this",
"device",
"secret",
"verifier",
"config",
";"
] |
[
"<",
"p",
">",
"the",
"configuration",
"of",
"the",
"device",
"secret",
"verifier",
"<",
"/",
"p",
">"
] | [
"set",
"device",
"secret",
"verifier",
"config",
"(",
"device",
"secret",
"verifier",
"config",
")",
";",
"return",
"this",
";"
] |
[
"<",
"p",
">",
"the",
"device",
"name",
"(",
"for",
"example",
"<",
"code",
">",
"/",
"dev",
"/",
"sdh",
"<",
"/",
"code",
">",
"or",
"<",
"code",
">",
"xvdh",
"<",
"/",
"code",
">",
")",
"<",
"/",
"p",
">"
] | [
"this",
"device",
"name",
"=",
"device",
"name",
";"
] |
[
"<",
"p",
">",
"the",
"device",
"name",
"(",
"for",
"example",
"<",
"code",
">",
"/",
"dev",
"/",
"sdh",
"<",
"/",
"code",
">",
"or",
"<",
"code",
">",
"xvdh",
"<",
"/",
"code",
">",
")",
"<",
"/",
"p",
">"
] | [
"return",
"this",
"device",
"name",
";"
] |
[
"<",
"p",
">",
"the",
"device",
"name",
"<",
"/",
"p",
">"
] | [
"set",
"device",
"name",
"(",
"device",
"name",
")",
";",
"return",
"this",
";"
] |
[
"return",
"the",
"names",
"of",
"all",
"specified",
"headers",
"as",
"a",
"set",
"of",
"strings",
"<",
"p",
">",
"as",
"of",
"servlet",
"3",
"0",
"this",
"method",
"is",
"also",
"defined",
"http",
"servlet",
"response"
] | [
"return",
"this",
"headers",
"key",
"set",
"(",
")",
";"
] |
[
"<",
"code",
">",
"get",
"location",
"<",
"/",
"code",
">",
"retrieves",
"the",
"location",
"vector",
"of",
"the",
"camera"
] | [
"return",
"location",
";"
] |
[
"copy",
"information",
"from",
"the",
"meta",
"-",
"data",
"input",
"to",
"the",
"dialog",
"fields"
] | [
"get",
"meta",
"data",
"(",
")",
";",
"add",
"data",
"grid",
"(",
"false",
")",
";"
] |
[
"publishes",
"results",
"of",
"pending",
"build",
"rule",
"finished",
"event",
"that",
"have",
"already",
"synchronized",
"with",
"cache"
] | [
"synchronized",
"(",
"this",
")",
"{",
"if",
"(",
"pending",
"build",
"rule",
"finished",
"event",
"is",
"empty",
"(",
")",
")",
"{",
"return",
";",
"}",
"}",
"list",
"<",
"timestamped",
"build",
"rule",
"finished",
"event",
">",
"events",
"to",
"publi... |
[
"<",
"p",
">",
"the",
"events",
"to",
"configure",
"<",
"/",
"p",
">"
] | [
"if",
"(",
"events",
"=",
"=",
"null",
")",
"{",
"events",
"=",
"new",
"com",
"amazonaws",
"internal",
"sdk",
"internal",
"map",
"<",
"string",
",",
"string",
">",
"(",
")",
";",
"}",
"return",
"events",
";"
] |
[
"<",
"p",
">",
"the",
"events",
"to",
"configure",
"<",
"/",
"p",
">"
] | [
"this",
"events",
"=",
"events",
"=",
"=",
"null",
"?",
"null",
":",
"new",
"com",
"amazonaws",
"internal",
"sdk",
"internal",
"map",
"<",
"string",
",",
"string",
">",
"(",
"events",
")",
";"
] |
[
"<",
"p",
">",
"the",
"cognito",
"events",
"returned",
"from",
"the",
"get",
"cognito",
"events",
"request",
"<",
"/",
"p",
">"
] | [
"set",
"events",
"(",
"events",
")",
";",
"return",
"this",
";"
] |
[
"removes",
"all",
"the",
"entries",
"added",
"into",
"events"
] | [
"this",
"events",
"=",
"null",
";",
"return",
"this",
";"
] |
[
"returns",
"the",
"{",
"@",
"link",
"file",
"system",
"access",
"}",
"service",
"to",
"return",
"the",
"file",
"system",
"access",
"filesystem",
"instance",
"to"
] | [
"return",
"http",
"f",
"s",
"server",
"web",
"app",
"get",
"(",
")",
"get",
"(",
"file",
"system",
"access",
"class",
")",
";"
] |
[
"add",
"a",
"listener",
"to",
"be",
"notified",
"on",
"license",
"change"
] | [
"listeners",
"add",
"(",
"objects",
"require",
"non",
"null",
"(",
"runnable",
")",
")",
";"
] |
[
"remove",
"a",
"listener"
] | [
"listeners",
"remove",
"(",
"runnable",
")",
";"
] |
[
"return",
"the",
"current",
"license",
"type"
] | [
"return",
"status",
"mode",
";"
] |
[
"return",
"true",
"if",
"the",
"license",
"is",
"currently",
"within",
"its",
"time",
"boundaries",
"false",
"otherwise"
] | [
"return",
"status",
"active",
";"
] |
[
"indicates",
"whether",
"the",
"stats",
"and",
"health",
"api",
"calls",
"should",
"be",
"allowed",
"if",
"a",
"license",
"is",
"expired",
"and",
"past",
"the",
"grace",
"period",
"then",
"we",
"deny",
"these",
"calls"
] | [
"return",
"status",
"active",
";"
] |
[
"determine",
"if",
"document",
"level",
"security",
"(",
"dls",
")",
"and",
"field",
"level",
"security",
"(",
"fls",
")",
"should",
"be",
"enabled",
"<",
"p",
">",
"dls",
"and",
"fls",
"are",
"only",
"disabled",
"when",
"the",
"mode",
"is",
"not",
":"... | [
"operation",
"mode",
"mode",
"=",
"status",
"mode",
";",
"final",
"boolean",
"is",
"security",
"currently",
"enabled",
"=",
"is",
"security",
"enabled",
"(",
"mode",
",",
"is",
"security",
"explicitly",
"enabled",
",",
"is",
"security",
"enabled",
"by",
"tri... |
[
"determine",
"if",
"watcher",
"is",
"available",
"based",
"on",
"the",
"current",
"license",
"<",
"p",
">",
"watcher",
"is",
"available",
"if",
"the",
"license",
"is",
"active",
"(",
"hasn",
"t",
"expired",
")",
"and",
"of",
"one",
"of",
"the",
"followin... | [
"status",
"local",
"status",
"=",
"status",
";",
"if",
"(",
"local",
"status",
"active",
"=",
"=",
"false",
")",
"{",
"return",
"false",
";",
"}",
"switch",
"(",
"local",
"status",
"mode",
")",
"{",
"case",
"trial",
":",
"case",
"gold",
":",
"case",
... |
[
"monitoring",
"is",
"always",
"available",
"as",
"long",
"as",
"there",
"is",
"a",
"valid",
"license"
] | [
"return",
"status",
"active",
";"
] |
[
"monitoring",
"cluster",
"alerts",
"requires",
"the",
"equivalent",
"license",
"to",
"use",
"watcher"
] | [
"return",
"is",
"watcher",
"allowed",
"(",
")",
";"
] |
[
"determine",
"if",
"the",
"current",
"license",
"allows",
"the",
"retention",
"of",
"indices",
"to",
"be",
"modified",
"<",
"p",
">",
"only",
"users",
"with",
"a",
"non",
"-",
"{",
"@",
"link",
"operation",
"mode",
"#",
"basic",
"}",
"license",
"can",
... | [
"final",
"operation",
"mode",
"mode",
"=",
"status",
"mode",
";",
"return",
"mode",
"!",
"=",
"operation",
"mode",
"basic",
"&",
"&",
"mode",
"!",
"=",
"operation",
"mode",
"missing",
";"
] |
[
"determine",
"if",
"graph",
"exploration",
"should",
"be",
"enabled",
"<",
"p",
">",
"exploration",
"is",
"only",
"disabled",
"when",
"the",
"license",
"has",
"expired",
"or",
"if",
"the",
"mode",
"is",
"not",
":",
"<",
"ul",
">",
"<",
"li",
">",
"{",
... | [
"status",
"local",
"status",
"=",
"status",
";",
"operation",
"mode",
"operation",
"mode",
"=",
"local",
"status",
"mode",
";",
"boolean",
"licensed",
"=",
"operation",
"mode",
"=",
"=",
"operation",
"mode",
"trial",
"|",
"|",
"operation",
"mode",
"=",
"="... |
[
"determine",
"if",
"machine",
"learning",
"should",
"be",
"enabled",
"<",
"p",
">",
"machine",
"learning",
"is",
"only",
"disabled",
"when",
"the",
"license",
"has",
"expired",
"or",
"if",
"the",
"mode",
"is",
"not",
":",
"<",
"ul",
">",
"<",
"li",
">"... | [
"final",
"status",
"current",
"status",
"=",
"status",
";",
"return",
"current",
"status",
"active",
"&",
"&",
"is",
"machine",
"learning",
"allowed",
"for",
"operation",
"mode",
"(",
"current",
"status",
"mode",
")",
";"
] |
[
"rollup",
"is",
"always",
"available",
"as",
"long",
"as",
"there",
"is",
"a",
"valid",
"license"
] | [
"return",
"status",
"active",
";"
] |
[
"logstash",
"is",
"allowed",
"as",
"long",
"as",
"there",
"is",
"an",
"active",
"license",
"of",
"type",
"trial",
"standard",
"gold",
"or",
"platinum"
] | [
"status",
"local",
"status",
"=",
"status",
";",
"return",
"local",
"status",
"active",
"&",
"&",
"(",
"is",
"basic",
"(",
"local",
"status",
"mode",
")",
"=",
"=",
"false",
")",
";"
] |
[
"beats",
"is",
"allowed",
"as",
"long",
"as",
"there",
"is",
"an",
"active",
"license",
"of",
"type",
"trial",
"standard",
"gold",
"or",
"platinum"
] | [
"status",
"local",
"status",
"=",
"status",
";",
"return",
"local",
"status",
"active",
"&",
"&",
"(",
"is",
"basic",
"(",
"local",
"status",
"mode",
")",
"=",
"=",
"false",
")",
";"
] |
[
"deprecation",
"a",
"p",
"is",
"are",
"always",
"allowed",
"as",
"long",
"as",
"there",
"is",
"an",
"active",
"license"
] | [
"return",
"status",
"active",
";"
] |
[
"determine",
"if",
"sql",
"support",
"should",
"be",
"enabled",
"<",
"p",
">",
"sql",
"is",
"available",
"for",
"all",
"license",
"types",
"except",
"{"
] | [
"return",
"status",
"active",
";"
] |
[
"determine",
"if",
"jdbc",
"support",
"should",
"be",
"enabled",
"<",
"p",
">",
"jdbc",
"is",
"available",
"only",
"in",
"for",
"{"
] | [
"status",
"local",
"status",
"=",
"status",
";",
"operation",
"mode",
"operation",
"mode",
"=",
"local",
"status",
"mode",
";",
"boolean",
"licensed",
"=",
"operation",
"mode",
"=",
"=",
"operation",
"mode",
"trial",
"|",
"|",
"operation",
"mode",
"=",
"="... |
[
"determine",
"if",
"cross",
"-",
"cluster",
"replication",
"should",
"be",
"enabled",
"<",
"p",
">",
"cross",
"-",
"cluster",
"replication",
"is",
"only",
"disabled",
"when",
"the",
"license",
"has",
"expired",
"or",
"if",
"the",
"mode",
"is",
"not",
":",
... | [
"final",
"status",
"current",
"status",
"=",
"status",
";",
"return",
"current",
"status",
"active",
"&",
"&",
"is",
"ccr",
"allowed",
"for",
"operation",
"mode",
"(",
"current",
"status",
"mode",
")",
";"
] |
[
"creates",
"a",
"copy",
"of",
"this",
"object",
"based",
"on",
"the",
"state",
"at",
"the",
"time",
"the",
"method",
"was",
"called",
"the",
"returned",
"object",
"will",
"not",
"be",
"modified",
"by",
"a",
"license",
"update",
"/",
"expiration",
"so",
"... | [
"return",
"new",
"x",
"pack",
"license",
"state",
"(",
"this",
")",
";"
] |
[
"returns",
"true",
"if",
"serialization",
"should",
"be",
"validated",
"on",
"all",
"skyframe",
"writes"
] | [
"return",
"in",
"test",
"&",
"&",
"check",
"serialization",
";"
] |
[
"as",
"of",
"jdk",
"1",
"1",
"replaced",
"by",
"{"
] | [] |
[
"/",
"*"
] | [] |
[
"gets",
"raw",
"client"
] | [
"return",
"client",
";"
] |
[
"unsafe",
"version",
"of",
":",
"{"
] | [
"long",
"function",
"address",
"=",
"device",
"get",
"capabilities",
"(",
")",
"vk",
"debug",
"marker",
"set",
"object",
"tag",
"e",
"x",
"t",
";",
"if",
"(",
"checks",
")",
"{",
"check",
"(",
"function",
"address",
")",
";",
"vk",
"debug",
"marker",
... |
[
"unsafe",
"version",
"of",
":",
"{"
] | [
"long",
"function",
"address",
"=",
"device",
"get",
"capabilities",
"(",
")",
"vk",
"debug",
"marker",
"set",
"object",
"name",
"e",
"x",
"t",
";",
"if",
"(",
"checks",
")",
"{",
"check",
"(",
"function",
"address",
")",
";",
"vk",
"debug",
"marker",
... |
[
"unsafe",
"version",
"of",
":",
"{"
] | [
"long",
"function",
"address",
"=",
"command",
"buffer",
"get",
"capabilities",
"(",
")",
"vk",
"cmd",
"debug",
"marker",
"begin",
"e",
"x",
"t",
";",
"if",
"(",
"checks",
")",
"{",
"check",
"(",
"function",
"address",
")",
";",
"vk",
"debug",
"marker"... |
[
"close",
"a",
"command",
"buffer",
"marker",
"region"
] | [
"long",
"function",
"address",
"=",
"command",
"buffer",
"get",
"capabilities",
"(",
")",
"vk",
"cmd",
"debug",
"marker",
"end",
"e",
"x",
"t",
";",
"if",
"(",
"checks",
")",
"{",
"check",
"(",
"function",
"address",
")",
";",
"}",
"call",
"p",
"v",
... |
[
"unsafe",
"version",
"of",
":",
"{"
] | [
"long",
"function",
"address",
"=",
"command",
"buffer",
"get",
"capabilities",
"(",
")",
"vk",
"cmd",
"debug",
"marker",
"insert",
"e",
"x",
"t",
";",
"if",
"(",
"checks",
")",
"{",
"check",
"(",
"function",
"address",
")",
";",
"vk",
"debug",
"marker... |
[
"<",
"p",
">",
"[",
"required",
"]",
"the",
"identifier",
"of",
"a",
"<",
"a",
">",
"usage",
"plan",
"key",
"<",
"/",
"a",
">",
"resource",
"for",
"a",
"plan",
"customer",
"<",
"/",
"p",
">"
] | [
"this",
"key",
"id",
"=",
"key",
"id",
";"
] |
[
"<",
"p",
">",
"[",
"required",
"]",
"the",
"identifier",
"of",
"a",
"<",
"a",
">",
"usage",
"plan",
"key",
"<",
"/",
"a",
">",
"resource",
"for",
"a",
"plan",
"customer",
"<",
"/",
"p",
">"
] | [
"return",
"this",
"key",
"id",
";"
] |
[
"<",
"p",
">",
"a",
"unique",
"identifier",
"for",
"the",
"customer",
"master",
"key",
"(",
"cmk",
")",
"<",
"/",
"p",
">",
"<",
"p",
">",
"specify",
"the",
"key",
"id",
"or",
"the",
"amazon",
"resource",
"name",
"(",
"arn",
")",
"of",
"the",
"cm... | [
"set",
"key",
"id",
"(",
"key",
"id",
")",
";",
"return",
"this",
";"
] |
[
"blanking",
"image",
"to",
"be",
"used",
"leave",
"empty",
"for",
"solid",
"black",
"only",
"bmp",
"and",
"png",
"images",
"are",
"supported"
] | [
"this",
"avail",
"blanking",
"image",
"=",
"avail",
"blanking",
"image",
";"
] |
[
"blanking",
"image",
"to",
"be",
"used",
"leave",
"empty",
"for",
"solid",
"black",
"only",
"bmp",
"and",
"png",
"images",
"are",
"supported"
] | [
"return",
"this",
"avail",
"blanking",
"image",
";"
] |
[
"blanking",
"image",
"to",
"be",
"used",
"leave",
"empty",
"for",
"solid",
"black",
"only",
"bmp",
"and",
"png",
"images",
"are",
"supported"
] | [
"set",
"avail",
"blanking",
"image",
"(",
"avail",
"blanking",
"image",
")",
";",
"return",
"this",
";"
] |
[
"returns",
"a",
"textual",
"description",
"of",
"this",
"filter"
] | [
"public",
"abstract",
"string",
"describe",
"(",
")",
";"
] |
[
"invoke",
"with",
"a",
"{",
"@",
"link",
"org",
"junit",
"runner",
"runner",
"}",
"to",
"cause",
"all",
"tests",
"it",
"intends",
"to",
"run",
"to",
"first",
"be",
"checked",
"with",
"the",
"filter",
"only",
"those",
"that",
"pass",
"the",
"filter",
"w... | [
"if",
"(",
"!",
"(",
"child",
"instanceof",
"filterable",
")",
")",
"{",
"return",
";",
"}",
"filterable",
"filterable",
"=",
"(",
"filterable",
")",
"child",
";",
"filterable",
"filter",
"(",
"this",
")",
";"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.