query stringlengths 9 9.05k | document stringlengths 10 222k | metadata dict | negatives listlengths 30 30 | negative_scores listlengths 30 30 | document_score stringlengths 4 10 | document_rank stringclasses 2
values |
|---|---|---|---|---|---|---|
Run a constructed Slurm command, returning the job ID on success and None otherwise. | def run_slurm(
command: Sequence[str], *, env: Mapping[str, str], workdir: Path
) -> Optional[SlurmJobID]:
try:
completed_process = run(
command, cwd=workdir, capture_output=True, env=env, check=True
)
result = SlurmJobID(
completed_process.stdout.decode(getprefer... | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def test__get_slurm_jobid(self):\n \n # Mock the system calls\n subprocess.check_output = Mock(return_value='')\n # Assert that getting non-existing jobs return an empty job list\n self.assertListEqual([],sq.get_slurm_jobid(\"jobname\"),\n \"Querying f... | [
"0.65685755",
"0.64660907",
"0.6142624",
"0.6071946",
"0.5973764",
"0.5925603",
"0.5904554",
"0.59027827",
"0.5833761",
"0.58216697",
"0.5818099",
"0.57941234",
"0.5708",
"0.56985193",
"0.5666814",
"0.5664713",
"0.5661793",
"0.56470025",
"0.5625232",
"0.5621045",
"0.551718",
... | 0.8159864 | 0 |
Run a constructed Bash command, returning None because Bash doesn't produce Slurm job IDs. This is meant for debugging. As a result it always runs the command synchronously. It also pipes the output so you can see what is going on. | def run_bash(
command: Sequence[str], *, env: Mapping[str, str], workdir: Path
) -> Optional[SlurmJobID]:
run(command, cwd=workdir, env=env, check=True)
return None | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"async def checked_run(cmd, env=None):\n\n # Start the subprocess.\n logging.info('Running: %s', await expand_cmd_str(cmd))\n with logged_timer('{} finished'.format(get_cmd_name(cmd))):\n p = await asyncio.create_subprocess_exec(\n *cmd, env=env,\n stdout=asyncio.subprocess.PIP... | [
"0.6883025",
"0.67096967",
"0.6706942",
"0.66775805",
"0.6655273",
"0.64274603",
"0.6426953",
"0.639649",
"0.6374186",
"0.6365731",
"0.62810254",
"0.6276033",
"0.62756",
"0.62756",
"0.62756",
"0.62636584",
"0.6251089",
"0.6218417",
"0.6204025",
"0.62019324",
"0.6188715",
"0... | 0.72401404 | 0 |
Construct a new path string by prepending bin_dir to the current PATH. | def add_to_path(bin_dir: Path) -> str:
path_elements = [str(bin_dir)]
existing_path = getenv("PATH")
if existing_path:
path_elements.append(existing_path)
return ":".join(path_elements) | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def binary_location(cmd, USE_PATH=False):\n return os.path.join(BIN_PREFIX, cmd)",
"def binary_location(cmd, USE_PATH=False):\n if USE_PATH:\n return cmd\n else:\n return os.path.join(BIN_PREFIX, cmd)",
"def build_path(self, *args):\n components = self.build_config + args\n ... | [
"0.6398034",
"0.6387753",
"0.638148",
"0.6269083",
"0.618766",
"0.6165214",
"0.61364347",
"0.6051677",
"0.5996282",
"0.5936",
"0.5839629",
"0.5825345",
"0.5823496",
"0.5750143",
"0.57460976",
"0.57398754",
"0.5716676",
"0.56616247",
"0.56612194",
"0.5623652",
"0.5583238",
"... | 0.7930359 | 0 |
Parse a boolean parameter from the given parameters. This is a workaround due to how vistautils handles p parameters. p parameters are handy for debugging. However, the typed parameter methods don't interact well with them. Specifically, when you specify a keyvalue pair with p, the value is not parsed as YAML, so `p ke... | def parse_bool_param(params: Parameters, param_name: str) -> bool:
try:
result = params.boolean(param_name)
except ParameterError:
result = yaml.safe_load(StringIO(params.string(param_name)))
return result | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def _parse_param_as_bool(\n enodeb: EnodebAcsStateMachine,\n param_name: ParameterName\n) -> str:\n try:\n param = enodeb.get_parameter(param_name)\n pval = param.lower().strip()\n if pval in {'true', '1'}:\n return '1'\n elif pval in {'false', '0'}:\n ret... | [
"0.70451146",
"0.6914939",
"0.64627814",
"0.64621234",
"0.6429538",
"0.64130384",
"0.635093",
"0.6347039",
"0.6302772",
"0.628095",
"0.62261426",
"0.62261426",
"0.62086874",
"0.62086296",
"0.6156933",
"0.61173",
"0.60214293",
"0.60107535",
"0.6003201",
"0.6000776",
"0.5967624... | 0.7987815 | 0 |
Return True if the given path is an empty directory, otherwise false. | def is_empty_dir(path: Path) -> bool:
child = next(path.iterdir(), None)
return path.is_dir() and child is None | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def _is_dir_empty(path):\n return len(os.listdir(path)) == 0",
"def _dir_empty(path):\n try:\n next(os.scandir(str(path)))\n except StopIteration:\n return True\n return False",
"def is_directory_empty(directory: Path) -> bool:\n has_contents = next(directory.iterdir(), None)\n retu... | [
"0.87056595",
"0.8314279",
"0.80812865",
"0.79191256",
"0.79191256",
"0.7872497",
"0.7806579",
"0.7687423",
"0.76421076",
"0.75833726",
"0.7524637",
"0.7481125",
"0.74674207",
"0.7466388",
"0.7433439",
"0.7417421",
"0.74163437",
"0.74051815",
"0.73716563",
"0.7342227",
"0.733... | 0.88675016 | 0 |
Gets the org_apache_felix_http_host of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_host(self) -> ConfigNodePropertyString:
return self._org_apache_felix_http_host | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_host(self, org_apache_felix_http_host: ConfigNodePropertyString):\n\n self._org_apache_felix_http_host = org_apache_felix_http_host",
"def org_apache_felix_http_name(self) -> ConfigNodePropertyString:\n return self._org_apache_felix_http_name",
"def host(self):\r\n ... | [
"0.7606997",
"0.69334835",
"0.67959595",
"0.6769646",
"0.65485114",
"0.65383077",
"0.64994794",
"0.6446827",
"0.636918",
"0.6301249",
"0.6232696",
"0.62107486",
"0.6196504",
"0.6156975",
"0.61548764",
"0.6124592",
"0.6117632",
"0.6117632",
"0.6117632",
"0.6117632",
"0.6117632... | 0.852832 | 0 |
Sets the org_apache_felix_http_host of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_host(self, org_apache_felix_http_host: ConfigNodePropertyString):
self._org_apache_felix_http_host = org_apache_felix_http_host | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_host(self) -> ConfigNodePropertyString:\n return self._org_apache_felix_http_host",
"def org_apache_felix_http_name(self, org_apache_felix_http_name: ConfigNodePropertyString):\n\n self._org_apache_felix_http_name = org_apache_felix_http_name",
"def org_apache_felix_http... | [
"0.7365824",
"0.6976026",
"0.65602624",
"0.65533215",
"0.6167543",
"0.6112597",
"0.60880053",
"0.5997706",
"0.5964256",
"0.5952049",
"0.5772267",
"0.577113",
"0.575429",
"0.57536656",
"0.5619446",
"0.5617166",
"0.5617166",
"0.5617166",
"0.5617166",
"0.5595111",
"0.5578729",
... | 0.8978181 | 0 |
Gets the org_apache_felix_http_enable of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_enable(self) -> ConfigNodePropertyBoolean:
return self._org_apache_felix_http_enable | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_enable(self, org_apache_felix_http_enable: ConfigNodePropertyBoolean):\n\n self._org_apache_felix_http_enable = org_apache_felix_http_enable",
"def org_apache_felix_https_enable(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_https_enable",
"def org_a... | [
"0.75681233",
"0.6588505",
"0.62834203",
"0.59971833",
"0.56480235",
"0.5603245",
"0.555598",
"0.5473335",
"0.54519635",
"0.5439891",
"0.541599",
"0.5368161",
"0.5301748",
"0.5301748",
"0.5258505",
"0.5213119",
"0.52113616",
"0.5209655",
"0.5172052",
"0.51436865",
"0.514203",... | 0.8371952 | 0 |
Sets the org_apache_felix_http_enable of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_enable(self, org_apache_felix_http_enable: ConfigNodePropertyBoolean):
self._org_apache_felix_http_enable = org_apache_felix_http_enable | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_enable(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_http_enable",
"def org_apache_felix_https_enable(self, org_apache_felix_https_enable: ConfigNodePropertyBoolean):\n\n self._org_apache_felix_https_enable = org_apache_felix_https_enable",
"def org... | [
"0.8023707",
"0.7403682",
"0.6332582",
"0.62388164",
"0.60883325",
"0.5965674",
"0.5737536",
"0.5384231",
"0.5333619",
"0.53293097",
"0.5264085",
"0.5182627",
"0.51744634",
"0.506253",
"0.5001448",
"0.49948177",
"0.49870893",
"0.49296436",
"0.49283078",
"0.48530012",
"0.48076... | 0.8732121 | 0 |
Gets the org_osgi_service_http_port of this OrgApacheFelixHttpProperties. | def org_osgi_service_http_port(self) -> ConfigNodePropertyInteger:
return self._org_osgi_service_http_port | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_osgi_service_http_port(self, org_osgi_service_http_port: ConfigNodePropertyInteger):\n\n self._org_osgi_service_http_port = org_osgi_service_http_port",
"def org_osgi_service_http_port_secure(self) -> ConfigNodePropertyInteger:\n return self._org_osgi_service_http_port_secure",
"def http_... | [
"0.7790098",
"0.7288815",
"0.7039664",
"0.67900485",
"0.6491036",
"0.60745955",
"0.60351413",
"0.59992224",
"0.59904534",
"0.59720314",
"0.5818158",
"0.58160275",
"0.5801879",
"0.5762016",
"0.574524",
"0.5720933",
"0.57059526",
"0.5704483",
"0.56686753",
"0.56686753",
"0.5668... | 0.8615427 | 0 |
Sets the org_osgi_service_http_port of this OrgApacheFelixHttpProperties. | def org_osgi_service_http_port(self, org_osgi_service_http_port: ConfigNodePropertyInteger):
self._org_osgi_service_http_port = org_osgi_service_http_port | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_osgi_service_http_port(self) -> ConfigNodePropertyInteger:\n return self._org_osgi_service_http_port",
"def org_osgi_service_http_port_secure(self, org_osgi_service_http_port_secure: ConfigNodePropertyInteger):\n\n self._org_osgi_service_http_port_secure = org_osgi_service_http_port_secure"... | [
"0.7689405",
"0.6877937",
"0.66555995",
"0.6554608",
"0.6136179",
"0.5964885",
"0.5930256",
"0.5788368",
"0.5760784",
"0.57595444",
"0.56636256",
"0.5646763",
"0.556788",
"0.5459079",
"0.5459079",
"0.5459079",
"0.5437157",
"0.54184103",
"0.52929854",
"0.52772295",
"0.518343",... | 0.90088177 | 0 |
Gets the org_apache_felix_http_timeout of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_timeout(self) -> ConfigNodePropertyInteger:
return self._org_apache_felix_http_timeout | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_session_timeout(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_session_timeout",
"def org_apache_felix_http_timeout(self, org_apache_felix_http_timeout: ConfigNodePropertyInteger):\n\n self._org_apache_felix_http_timeout = org_apache_felix_http_ti... | [
"0.7733941",
"0.74649835",
"0.692462",
"0.6869735",
"0.683304",
"0.6775931",
"0.6775931",
"0.67117697",
"0.6710272",
"0.6710272",
"0.6710272",
"0.6710272",
"0.6554432",
"0.6532283",
"0.6532283",
"0.65102756",
"0.64879185",
"0.6464559",
"0.6400463",
"0.63919663",
"0.63831335",... | 0.8660299 | 0 |
Sets the org_apache_felix_http_timeout of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_timeout(self, org_apache_felix_http_timeout: ConfigNodePropertyInteger):
self._org_apache_felix_http_timeout = org_apache_felix_http_timeout | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_timeout(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_timeout",
"def org_apache_felix_http_session_timeout(self, org_apache_felix_http_session_timeout: ConfigNodePropertyInteger):\n\n self._org_apache_felix_http_session_timeout = org_apache_felix... | [
"0.76905334",
"0.76640993",
"0.6741571",
"0.61954534",
"0.61503226",
"0.6129227",
"0.61130416",
"0.5967143",
"0.5941932",
"0.58833647",
"0.5875996",
"0.58747065",
"0.586096",
"0.5836883",
"0.5833647",
"0.5815206",
"0.5799399",
"0.5784489",
"0.5766483",
"0.573942",
"0.57332844... | 0.878816 | 0 |
Gets the org_apache_felix_https_enable of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_enable(self) -> ConfigNodePropertyBoolean:
return self._org_apache_felix_https_enable | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_enable(self, org_apache_felix_https_enable: ConfigNodePropertyBoolean):\n\n self._org_apache_felix_https_enable = org_apache_felix_https_enable",
"def org_apache_felix_http_enable(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_http_enable",
"def ssl... | [
"0.7603655",
"0.75992036",
"0.71969306",
"0.6964928",
"0.6936268",
"0.65614307",
"0.6375908",
"0.6164546",
"0.61568934",
"0.6152722",
"0.61299866",
"0.6089969",
"0.6079245",
"0.601473",
"0.601473",
"0.601473",
"0.59988993",
"0.59673375",
"0.59638715",
"0.5962215",
"0.5954415"... | 0.85261726 | 0 |
Sets the org_apache_felix_https_enable of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_enable(self, org_apache_felix_https_enable: ConfigNodePropertyBoolean):
self._org_apache_felix_https_enable = org_apache_felix_https_enable | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_enable(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_https_enable",
"def org_apache_felix_http_enable(self, org_apache_felix_http_enable: ConfigNodePropertyBoolean):\n\n self._org_apache_felix_http_enable = org_apache_felix_http_enable",
"def org_a... | [
"0.8136003",
"0.76533747",
"0.71942407",
"0.660614",
"0.641866",
"0.6278179",
"0.6207656",
"0.5907832",
"0.5796303",
"0.5711775",
"0.5693404",
"0.5615877",
"0.55515367",
"0.5484993",
"0.54585",
"0.5448439",
"0.54113436",
"0.5392003",
"0.5331021",
"0.5329439",
"0.53120404",
... | 0.8648538 | 0 |
Gets the org_osgi_service_http_port_secure of this OrgApacheFelixHttpProperties. | def org_osgi_service_http_port_secure(self) -> ConfigNodePropertyInteger:
return self._org_osgi_service_http_port_secure | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_osgi_service_http_port_secure(self, org_osgi_service_http_port_secure: ConfigNodePropertyInteger):\n\n self._org_osgi_service_http_port_secure = org_osgi_service_http_port_secure",
"def org_osgi_service_http_port(self) -> ConfigNodePropertyInteger:\n return self._org_osgi_service_http_port"... | [
"0.8041079",
"0.73605776",
"0.6599958",
"0.6271645",
"0.5999975",
"0.5816937",
"0.5653822",
"0.548991",
"0.538606",
"0.533217",
"0.52493024",
"0.5232341",
"0.5231198",
"0.51890486",
"0.5150243",
"0.51197034",
"0.5117032",
"0.51090634",
"0.51061124",
"0.50903594",
"0.5063207",... | 0.87491316 | 0 |
Sets the org_osgi_service_http_port_secure of this OrgApacheFelixHttpProperties. | def org_osgi_service_http_port_secure(self, org_osgi_service_http_port_secure: ConfigNodePropertyInteger):
self._org_osgi_service_http_port_secure = org_osgi_service_http_port_secure | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_osgi_service_http_port_secure(self) -> ConfigNodePropertyInteger:\n return self._org_osgi_service_http_port_secure",
"def org_osgi_service_http_port(self, org_osgi_service_http_port: ConfigNodePropertyInteger):\n\n self._org_osgi_service_http_port = org_osgi_service_http_port",
"def org_o... | [
"0.79245734",
"0.7410689",
"0.62721986",
"0.5958382",
"0.5915856",
"0.572892",
"0.5610181",
"0.5461324",
"0.54454195",
"0.5360131",
"0.53467447",
"0.53064716",
"0.53044325",
"0.5271212",
"0.515896",
"0.51216674",
"0.49309757",
"0.48621958",
"0.4853337",
"0.4839759",
"0.479803... | 0.8930569 | 0 |
Gets the org_apache_felix_https_keystore of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_keystore(self) -> ConfigNodePropertyString:
return self._org_apache_felix_https_keystore | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_keystore(self, org_apache_felix_https_keystore: ConfigNodePropertyString):\n\n self._org_apache_felix_https_keystore = org_apache_felix_https_keystore",
"def org_apache_felix_https_keystore_password(self) -> ConfigNodePropertyString:\n return self._org_apache_felix_https_... | [
"0.746858",
"0.7141663",
"0.70286006",
"0.6859608",
"0.661284",
"0.66073424",
"0.64660144",
"0.63922536",
"0.6354842",
"0.6354842",
"0.63158333",
"0.63158333",
"0.6313129",
"0.6307301",
"0.628495",
"0.61618125",
"0.59783775",
"0.5942003",
"0.5934665",
"0.591163",
"0.5865613",... | 0.8468133 | 0 |
Sets the org_apache_felix_https_keystore of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_keystore(self, org_apache_felix_https_keystore: ConfigNodePropertyString):
self._org_apache_felix_https_keystore = org_apache_felix_https_keystore | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_keystore_password(self, org_apache_felix_https_keystore_password: ConfigNodePropertyString):\n\n self._org_apache_felix_https_keystore_password = org_apache_felix_https_keystore_password",
"def org_apache_felix_https_keystore(self) -> ConfigNodePropertyString:\n return se... | [
"0.7405001",
"0.73176366",
"0.71479774",
"0.6775409",
"0.6479913",
"0.6442294",
"0.64015",
"0.6395185",
"0.61719656",
"0.6078306",
"0.5978191",
"0.5883635",
"0.5568888",
"0.5498542",
"0.54875296",
"0.5455014",
"0.5426308",
"0.5398574",
"0.52989024",
"0.52585626",
"0.5252955",... | 0.87118006 | 0 |
Gets the org_apache_felix_https_keystore_password of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_keystore_password(self) -> ConfigNodePropertyString:
return self._org_apache_felix_https_keystore_password | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_keystore_key_password(self) -> ConfigNodePropertyString:\n return self._org_apache_felix_https_keystore_key_password",
"def org_apache_felix_https_keystore(self) -> ConfigNodePropertyString:\n return self._org_apache_felix_https_keystore",
"def org_apache_felix_https_tr... | [
"0.8432024",
"0.76437056",
"0.7640304",
"0.7439353",
"0.74166167",
"0.6717892",
"0.6566634",
"0.6566634",
"0.6566634",
"0.6566634",
"0.6566634",
"0.6363457",
"0.6363457",
"0.62986064",
"0.6176542",
"0.6176542",
"0.6176542",
"0.61742383",
"0.61737776",
"0.61724514",
"0.6039477... | 0.8565362 | 0 |
Sets the org_apache_felix_https_keystore_password of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_keystore_password(self, org_apache_felix_https_keystore_password: ConfigNodePropertyString):
self._org_apache_felix_https_keystore_password = org_apache_felix_https_keystore_password | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_keystore_key_password(self, org_apache_felix_https_keystore_key_password: ConfigNodePropertyString):\n\n self._org_apache_felix_https_keystore_key_password = org_apache_felix_https_keystore_key_password",
"def org_apache_felix_https_truststore_password(self, org_apache_felix_htt... | [
"0.84450406",
"0.7953192",
"0.77732706",
"0.77033174",
"0.7521615",
"0.69492775",
"0.66947025",
"0.62231314",
"0.61650646",
"0.5896635",
"0.58570546",
"0.5851839",
"0.5844085",
"0.58408326",
"0.57956064",
"0.57908815",
"0.5745984",
"0.5738571",
"0.56980807",
"0.568943",
"0.56... | 0.8701457 | 0 |
Gets the org_apache_felix_https_keystore_key_password of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_keystore_key_password(self) -> ConfigNodePropertyString:
return self._org_apache_felix_https_keystore_key_password | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_keystore_password(self) -> ConfigNodePropertyString:\n return self._org_apache_felix_https_keystore_password",
"def org_apache_felix_https_keystore_key_password(self, org_apache_felix_https_keystore_key_password: ConfigNodePropertyString):\n\n self._org_apache_felix_https... | [
"0.8246096",
"0.7540886",
"0.74562603",
"0.71693903",
"0.7051459",
"0.6594238",
"0.6594238",
"0.6594238",
"0.6594238",
"0.6594238",
"0.6435226",
"0.6179337",
"0.6179337",
"0.6176817",
"0.6120665",
"0.6120665",
"0.5972059",
"0.5957054",
"0.5957054",
"0.5957054",
"0.594349",
... | 0.85293865 | 0 |
Sets the org_apache_felix_https_keystore_key_password of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_keystore_key_password(self, org_apache_felix_https_keystore_key_password: ConfigNodePropertyString):
self._org_apache_felix_https_keystore_key_password = org_apache_felix_https_keystore_key_password | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_keystore_password(self, org_apache_felix_https_keystore_password: ConfigNodePropertyString):\n\n self._org_apache_felix_https_keystore_password = org_apache_felix_https_keystore_password",
"def org_apache_felix_https_keystore_key_password(self) -> ConfigNodePropertyString:\n ... | [
"0.83636683",
"0.77204597",
"0.75510556",
"0.74462825",
"0.74085593",
"0.65828377",
"0.6568399",
"0.64200974",
"0.56827635",
"0.5659243",
"0.56300586",
"0.5608953",
"0.5599103",
"0.55898595",
"0.55827683",
"0.55731165",
"0.55346453",
"0.5491213",
"0.5483355",
"0.54719245",
"0... | 0.86609757 | 0 |
Gets the org_apache_felix_https_truststore of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_truststore(self) -> ConfigNodePropertyString:
return self._org_apache_felix_https_truststore | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_truststore(self, org_apache_felix_https_truststore: ConfigNodePropertyString):\n\n self._org_apache_felix_https_truststore = org_apache_felix_https_truststore",
"def org_apache_felix_https_truststore_password(self) -> ConfigNodePropertyString:\n return self._org_apache_fe... | [
"0.7597784",
"0.6727193",
"0.6480864",
"0.63514584",
"0.6030035",
"0.5808829",
"0.5561136",
"0.53964823",
"0.53963137",
"0.532812",
"0.5318846",
"0.5306361",
"0.5286904",
"0.5285493",
"0.52848595",
"0.52803296",
"0.5243242",
"0.51822746",
"0.51822746",
"0.5165422",
"0.5156749... | 0.83169174 | 0 |
Sets the org_apache_felix_https_truststore of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_truststore(self, org_apache_felix_https_truststore: ConfigNodePropertyString):
self._org_apache_felix_https_truststore = org_apache_felix_https_truststore | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_truststore(self) -> ConfigNodePropertyString:\n return self._org_apache_felix_https_truststore",
"def org_apache_felix_https_truststore_password(self, org_apache_felix_https_truststore_password: ConfigNodePropertyString):\n\n self._org_apache_felix_https_truststore_passwo... | [
"0.7478273",
"0.7202982",
"0.65772575",
"0.63588655",
"0.5746453",
"0.57205486",
"0.5693288",
"0.5692465",
"0.5458383",
"0.53080106",
"0.513985",
"0.5109591",
"0.500216",
"0.49983943",
"0.4902019",
"0.48722377",
"0.4840672",
"0.48095444",
"0.47899765",
"0.47863796",
"0.478326... | 0.8756483 | 0 |
Gets the org_apache_felix_https_truststore_password of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_truststore_password(self) -> ConfigNodePropertyString:
return self._org_apache_felix_https_truststore_password | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_keystore_password(self) -> ConfigNodePropertyString:\n return self._org_apache_felix_https_keystore_password",
"def org_apache_felix_https_truststore_password(self, org_apache_felix_https_truststore_password: ConfigNodePropertyString):\n\n self._org_apache_felix_https_tru... | [
"0.78597236",
"0.77476144",
"0.75877327",
"0.75450873",
"0.6826835",
"0.66835874",
"0.6557051",
"0.64088917",
"0.62436783",
"0.62436783",
"0.62436783",
"0.62436783",
"0.62436783",
"0.6234889",
"0.5930628",
"0.58993256",
"0.5873901",
"0.5842707",
"0.5795168",
"0.5795168",
"0.5... | 0.8648619 | 0 |
Sets the org_apache_felix_https_truststore_password of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_truststore_password(self, org_apache_felix_https_truststore_password: ConfigNodePropertyString):
self._org_apache_felix_https_truststore_password = org_apache_felix_https_truststore_password | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_truststore_password(self) -> ConfigNodePropertyString:\n return self._org_apache_felix_https_truststore_password",
"def org_apache_felix_https_keystore_password(self, org_apache_felix_https_keystore_password: ConfigNodePropertyString):\n\n self._org_apache_felix_https_key... | [
"0.7959347",
"0.7848941",
"0.76877695",
"0.7361418",
"0.7188636",
"0.6766721",
"0.6673765",
"0.6661396",
"0.61153615",
"0.60215497",
"0.5852127",
"0.5751099",
"0.573106",
"0.56800723",
"0.5657671",
"0.5624573",
"0.5621727",
"0.56202614",
"0.5533228",
"0.5517369",
"0.55138314"... | 0.8830454 | 0 |
Gets the org_apache_felix_https_clientcertificate of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_clientcertificate(self) -> ConfigNodePropertyDropDown:
return self._org_apache_felix_https_clientcertificate | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def client_certificate(self) -> str:\n return pulumi.get(self, \"client_certificate\")",
"def client_certificate(self) -> str:\n return pulumi.get(self, \"client_certificate\")",
"def org_apache_felix_https_clientcertificate(self, org_apache_felix_https_clientcertificate: ConfigNodePropertyDropDo... | [
"0.70910245",
"0.70910245",
"0.7075975",
"0.6707807",
"0.6599052",
"0.6428913",
"0.61843264",
"0.61113656",
"0.600833",
"0.600833",
"0.60075283",
"0.59920454",
"0.5865312",
"0.5836057",
"0.57151705",
"0.57151705",
"0.5679112",
"0.55992174",
"0.5565697",
"0.55587536",
"0.55587... | 0.821838 | 0 |
Sets the org_apache_felix_https_clientcertificate of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_clientcertificate(self, org_apache_felix_https_clientcertificate: ConfigNodePropertyDropDown):
self._org_apache_felix_https_clientcertificate = org_apache_felix_https_clientcertificate | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_clientcertificate(self) -> ConfigNodePropertyDropDown:\n return self._org_apache_felix_https_clientcertificate",
"def client_cert(self, client_cert):\n\n self._client_cert = client_cert",
"def client_x509_cert_url(self, client_x509_cert_url):\n\n self._client_x50... | [
"0.73186386",
"0.6392205",
"0.63524324",
"0.5665076",
"0.5660341",
"0.55663395",
"0.5458101",
"0.5320145",
"0.5299741",
"0.5299741",
"0.527184",
"0.50918025",
"0.50753564",
"0.5039087",
"0.50331515",
"0.49853143",
"0.49572814",
"0.49344382",
"0.4864688",
"0.48509908",
"0.4790... | 0.83327454 | 0 |
Gets the org_apache_felix_http_context_path of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_context_path(self) -> ConfigNodePropertyString:
return self._org_apache_felix_http_context_path | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_context_path(self, org_apache_felix_http_context_path: ConfigNodePropertyString):\n\n self._org_apache_felix_http_context_path = org_apache_felix_http_context_path",
"def context_path(cls, project, session, context):\n return google.api_core.path_template.expand(\n ... | [
"0.7498199",
"0.5649405",
"0.56400687",
"0.5468961",
"0.54251987",
"0.5295678",
"0.49479493",
"0.487287",
"0.48724696",
"0.48695433",
"0.48502514",
"0.4791241",
"0.47069758",
"0.46779948",
"0.46779948",
"0.46779948",
"0.46779948",
"0.46648368",
"0.4656904",
"0.4656904",
"0.46... | 0.84528947 | 0 |
Sets the org_apache_felix_http_context_path of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_context_path(self, org_apache_felix_http_context_path: ConfigNodePropertyString):
self._org_apache_felix_http_context_path = org_apache_felix_http_context_path | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_context_path(self) -> ConfigNodePropertyString:\n return self._org_apache_felix_http_context_path",
"def org_apache_felix_http_host(self, org_apache_felix_http_host: ConfigNodePropertyString):\n\n self._org_apache_felix_http_host = org_apache_felix_http_host",
"def org_a... | [
"0.72340435",
"0.6210611",
"0.55594754",
"0.541125",
"0.51713544",
"0.50521314",
"0.48680377",
"0.47803026",
"0.4774988",
"0.47446907",
"0.47077048",
"0.46019334",
"0.45944414",
"0.4572797",
"0.45346618",
"0.4461062",
"0.43654102",
"0.43620637",
"0.42843014",
"0.42629996",
"0... | 0.8695254 | 0 |
Gets the org_apache_felix_http_mbeans of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_mbeans(self) -> ConfigNodePropertyBoolean:
return self._org_apache_felix_http_mbeans | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_mbeans(self, org_apache_felix_http_mbeans: ConfigNodePropertyBoolean):\n\n self._org_apache_felix_http_mbeans = org_apache_felix_http_mbeans",
"def properties(self):\r\n if self._properties is None:\r\n res = self._con.get(self._url, {'f':'json'})\r\n ... | [
"0.6841255",
"0.47979426",
"0.47979426",
"0.4626238",
"0.46038058",
"0.4580322",
"0.45599854",
"0.45349956",
"0.44543228",
"0.4449549",
"0.4446039",
"0.4446039",
"0.44309938",
"0.44290864",
"0.4427582",
"0.44144145",
"0.44083813",
"0.43989348",
"0.43982238",
"0.43752956",
"0.... | 0.7202613 | 0 |
Sets the org_apache_felix_http_mbeans of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_mbeans(self, org_apache_felix_http_mbeans: ConfigNodePropertyBoolean):
self._org_apache_felix_http_mbeans = org_apache_felix_http_mbeans | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_mbeans(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_http_mbeans",
"def org_apache_felix_http_host(self, org_apache_felix_http_host: ConfigNodePropertyString):\n\n self._org_apache_felix_http_host = org_apache_felix_http_host",
"def org_apache_felix... | [
"0.6848168",
"0.5042149",
"0.47111768",
"0.4581632",
"0.45377517",
"0.43380523",
"0.42789167",
"0.42680737",
"0.42558008",
"0.42553145",
"0.41676056",
"0.41365144",
"0.41224122",
"0.41162232",
"0.41146192",
"0.4080271",
"0.4062161",
"0.40588102",
"0.40553704",
"0.4033307",
"0... | 0.80830854 | 0 |
Gets the org_apache_felix_http_session_timeout of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_session_timeout(self) -> ConfigNodePropertyInteger:
return self._org_apache_felix_http_session_timeout | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_timeout(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_timeout",
"def sessiontimeout(self) :\n\t\ttry :\n\t\t\treturn self._sessiontimeout\n\t\texcept Exception as e:\n\t\t\traise e",
"def org_apache_felix_http_session_timeout(self, org_apache_felix_ht... | [
"0.773443",
"0.75632083",
"0.7536626",
"0.65983623",
"0.645818",
"0.645818",
"0.6359722",
"0.6359722",
"0.63576174",
"0.6347",
"0.6347",
"0.6347",
"0.6347",
"0.6347",
"0.6347",
"0.6318094",
"0.62762797",
"0.62762797",
"0.62762797",
"0.62762797",
"0.6253121",
"0.6236964",
... | 0.8708048 | 0 |
Sets the org_apache_felix_http_session_timeout of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_session_timeout(self, org_apache_felix_http_session_timeout: ConfigNodePropertyInteger):
self._org_apache_felix_http_session_timeout = org_apache_felix_http_session_timeout | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_session_timeout(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_session_timeout",
"def org_apache_felix_http_timeout(self, org_apache_felix_http_timeout: ConfigNodePropertyInteger):\n\n self._org_apache_felix_http_timeout = org_apache_felix_http_ti... | [
"0.7794052",
"0.7571777",
"0.7031885",
"0.67901975",
"0.6133749",
"0.5823665",
"0.5803593",
"0.5782441",
"0.57385445",
"0.5705843",
"0.5676462",
"0.5672807",
"0.5643987",
"0.5639579",
"0.5619325",
"0.5619325",
"0.55606973",
"0.5519913",
"0.5518697",
"0.55126375",
"0.5494645",... | 0.8789263 | 0 |
Gets the org_apache_felix_http_jetty_threadpool_max of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_threadpool_max(self) -> ConfigNodePropertyInteger:
return self._org_apache_felix_http_jetty_threadpool_max | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_threadpool_max(self, org_apache_felix_http_jetty_threadpool_max: ConfigNodePropertyInteger):\n\n self._org_apache_felix_http_jetty_threadpool_max = org_apache_felix_http_jetty_threadpool_max",
"def max_pool_size(self) -> ConfigNodePropertyInteger:\n return self._max_... | [
"0.8436084",
"0.72717243",
"0.63038474",
"0.6276058",
"0.61757874",
"0.60768247",
"0.5995238",
"0.5957236",
"0.59185874",
"0.5904954",
"0.5883778",
"0.58757293",
"0.5865454",
"0.5863893",
"0.5842034",
"0.5836911",
"0.58066946",
"0.5804957",
"0.57565546",
"0.573485",
"0.573079... | 0.90757984 | 0 |
Sets the org_apache_felix_http_jetty_threadpool_max of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_threadpool_max(self, org_apache_felix_http_jetty_threadpool_max: ConfigNodePropertyInteger):
self._org_apache_felix_http_jetty_threadpool_max = org_apache_felix_http_jetty_threadpool_max | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_threadpool_max(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_jetty_threadpool_max",
"def max_pool_size(self, max_pool_size: ConfigNodePropertyInteger):\n\n self._max_pool_size = max_pool_size",
"def set_threadpool_size(nthreads):\n ... | [
"0.83076423",
"0.6966936",
"0.6555153",
"0.65538454",
"0.6177804",
"0.6163002",
"0.6122447",
"0.60749555",
"0.60360014",
"0.592112",
"0.581775",
"0.58084136",
"0.5790561",
"0.5742164",
"0.57236934",
"0.5649875",
"0.5613553",
"0.5551735",
"0.5422354",
"0.5416043",
"0.54153067"... | 0.91473126 | 0 |
Gets the org_apache_felix_http_jetty_acceptors of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_acceptors(self) -> ConfigNodePropertyInteger:
return self._org_apache_felix_http_jetty_acceptors | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_acceptors(self, org_apache_felix_http_jetty_acceptors: ConfigNodePropertyInteger):\n\n self._org_apache_felix_http_jetty_acceptors = org_apache_felix_http_jetty_acceptors",
"def org_apache_felix_https_jetty_protocols_included(self) -> ConfigNodePropertyArray:\n retur... | [
"0.75076485",
"0.5785627",
"0.5716581",
"0.5420038",
"0.5289137",
"0.5037636",
"0.4904443",
"0.48637486",
"0.47851926",
"0.47794348",
"0.47574577",
"0.4634274",
"0.4624362",
"0.46217787",
"0.4588096",
"0.45680663",
"0.45658427",
"0.45221943",
"0.4481247",
"0.44808096",
"0.447... | 0.85263646 | 0 |
Sets the org_apache_felix_http_jetty_acceptors of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_acceptors(self, org_apache_felix_http_jetty_acceptors: ConfigNodePropertyInteger):
self._org_apache_felix_http_jetty_acceptors = org_apache_felix_http_jetty_acceptors | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_acceptors(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_jetty_acceptors",
"def org_apache_felix_http_jetty_selectors(self, org_apache_felix_http_jetty_selectors: ConfigNodePropertyInteger):\n\n self._org_apache_felix_http_jetty_selectors = ... | [
"0.78870404",
"0.54335445",
"0.49935544",
"0.48140362",
"0.47238114",
"0.4613327",
"0.45693323",
"0.44862017",
"0.4482402",
"0.44820267",
"0.44586247",
"0.43142378",
"0.42948562",
"0.42292845",
"0.42272696",
"0.42202958",
"0.41502258",
"0.41484222",
"0.41379803",
"0.41232952",
... | 0.8416684 | 0 |
Gets the org_apache_felix_http_jetty_selectors of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_selectors(self) -> ConfigNodePropertyInteger:
return self._org_apache_felix_http_jetty_selectors | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_selectors(self, org_apache_felix_http_jetty_selectors: ConfigNodePropertyInteger):\n\n self._org_apache_felix_http_jetty_selectors = org_apache_felix_http_jetty_selectors",
"def sling_servlet_selectors(self) -> ConfigNodePropertyString:\n return self._sling_servlet_s... | [
"0.73144346",
"0.6532002",
"0.5872824",
"0.5816661",
"0.56490624",
"0.5635196",
"0.5259821",
"0.51195425",
"0.50057095",
"0.4867244",
"0.48555836",
"0.47042707",
"0.46695834",
"0.46603128",
"0.4651367",
"0.4640019",
"0.46189284",
"0.45724314",
"0.45521265",
"0.45363122",
"0.4... | 0.8244053 | 0 |
Sets the org_apache_felix_http_jetty_selectors of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_selectors(self, org_apache_felix_http_jetty_selectors: ConfigNodePropertyInteger):
self._org_apache_felix_http_jetty_selectors = org_apache_felix_http_jetty_selectors | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_selectors(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_jetty_selectors",
"def sling_servlet_selectors(self, sling_servlet_selectors: ConfigNodePropertyString):\n\n self._sling_servlet_selectors = sling_servlet_selectors",
"def org_apache... | [
"0.7128833",
"0.63072735",
"0.5393126",
"0.5276768",
"0.50762486",
"0.48144025",
"0.47697785",
"0.4769126",
"0.47630283",
"0.45255104",
"0.4438034",
"0.4437529",
"0.43529922",
"0.42340583",
"0.42223546",
"0.4188979",
"0.41412967",
"0.41371906",
"0.41140413",
"0.41052806",
"0.... | 0.834494 | 0 |
Gets the org_apache_felix_http_jetty_header_buffer_size of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_header_buffer_size(self) -> ConfigNodePropertyInteger:
return self._org_apache_felix_http_jetty_header_buffer_size | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_request_buffer_size(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_jetty_request_buffer_size",
"def org_apache_felix_http_jetty_header_buffer_size(self, org_apache_felix_http_jetty_header_buffer_size: ConfigNodePropertyInteger):\n\n self._or... | [
"0.78715503",
"0.77426094",
"0.7738236",
"0.6869286",
"0.6726446",
"0.6704403",
"0.6637462",
"0.65393496",
"0.63070697",
"0.6065898",
"0.59510887",
"0.58382523",
"0.5836711",
"0.5773156",
"0.5752211",
"0.5748012",
"0.5740743",
"0.57267267",
"0.5713887",
"0.5713887",
"0.570845... | 0.88162214 | 0 |
Sets the org_apache_felix_http_jetty_header_buffer_size of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_header_buffer_size(self, org_apache_felix_http_jetty_header_buffer_size: ConfigNodePropertyInteger):
self._org_apache_felix_http_jetty_header_buffer_size = org_apache_felix_http_jetty_header_buffer_size | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_request_buffer_size(self, org_apache_felix_http_jetty_request_buffer_size: ConfigNodePropertyInteger):\n\n self._org_apache_felix_http_jetty_request_buffer_size = org_apache_felix_http_jetty_request_buffer_size",
"def org_apache_felix_http_jetty_header_buffer_size(self) -> ... | [
"0.7931686",
"0.7863384",
"0.753897",
"0.7081821",
"0.68971753",
"0.655833",
"0.6261215",
"0.61410594",
"0.600093",
"0.5921721",
"0.548732",
"0.53557366",
"0.5307086",
"0.52901864",
"0.5273861",
"0.52107596",
"0.5176544",
"0.5068631",
"0.50349617",
"0.4986746",
"0.497778",
... | 0.8837251 | 0 |
Gets the org_apache_felix_http_jetty_request_buffer_size of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_request_buffer_size(self) -> ConfigNodePropertyInteger:
return self._org_apache_felix_http_jetty_request_buffer_size | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_header_buffer_size(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_jetty_header_buffer_size",
"def org_apache_felix_http_jetty_response_buffer_size(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_jetty_response_buffer... | [
"0.8440925",
"0.8016996",
"0.78433204",
"0.74065566",
"0.7033257",
"0.69699794",
"0.6859308",
"0.6836342",
"0.6597219",
"0.6249589",
"0.62267923",
"0.6205145",
"0.6124849",
"0.5999681",
"0.5996345",
"0.5949497",
"0.59301484",
"0.59253925",
"0.59237266",
"0.59198457",
"0.58898... | 0.8862854 | 0 |
Sets the org_apache_felix_http_jetty_request_buffer_size of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_request_buffer_size(self, org_apache_felix_http_jetty_request_buffer_size: ConfigNodePropertyInteger):
self._org_apache_felix_http_jetty_request_buffer_size = org_apache_felix_http_jetty_request_buffer_size | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_header_buffer_size(self, org_apache_felix_http_jetty_header_buffer_size: ConfigNodePropertyInteger):\n\n self._org_apache_felix_http_jetty_header_buffer_size = org_apache_felix_http_jetty_header_buffer_size",
"def org_apache_felix_http_jetty_request_buffer_size(self) -> Con... | [
"0.83669186",
"0.7958993",
"0.7696197",
"0.74546134",
"0.7089813",
"0.66674227",
"0.66327244",
"0.63305336",
"0.59135044",
"0.5899711",
"0.5802593",
"0.5702479",
"0.5564169",
"0.54837567",
"0.5481116",
"0.53409743",
"0.5339914",
"0.5305921",
"0.5290273",
"0.5262758",
"0.52464... | 0.88928866 | 0 |
Gets the org_apache_felix_http_jetty_response_buffer_size of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_response_buffer_size(self) -> ConfigNodePropertyInteger:
return self._org_apache_felix_http_jetty_response_buffer_size | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_header_buffer_size(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_jetty_header_buffer_size",
"def org_apache_felix_http_jetty_response_buffer_size(self, org_apache_felix_http_jetty_response_buffer_size: ConfigNodePropertyInteger):\n\n self._... | [
"0.8066069",
"0.7967616",
"0.7824719",
"0.6876901",
"0.661551",
"0.66051805",
"0.6572411",
"0.6487119",
"0.6431537",
"0.6261782",
"0.59816396",
"0.59571517",
"0.58867496",
"0.58592415",
"0.5829363",
"0.5753707",
"0.5753707",
"0.56973857",
"0.5695097",
"0.5675111",
"0.5663201"... | 0.8868346 | 0 |
Sets the org_apache_felix_http_jetty_response_buffer_size of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_response_buffer_size(self, org_apache_felix_http_jetty_response_buffer_size: ConfigNodePropertyInteger):
self._org_apache_felix_http_jetty_response_buffer_size = org_apache_felix_http_jetty_response_buffer_size | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_response_buffer_size(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_jetty_response_buffer_size",
"def org_apache_felix_http_jetty_header_buffer_size(self, org_apache_felix_http_jetty_header_buffer_size: ConfigNodePropertyInteger):\n\n self._... | [
"0.8055464",
"0.7840348",
"0.7625438",
"0.71789384",
"0.70172065",
"0.6175846",
"0.5972243",
"0.59588957",
"0.5842839",
"0.5605714",
"0.5591604",
"0.5585604",
"0.5285205",
"0.5278703",
"0.5255579",
"0.5119986",
"0.5085777",
"0.5043711",
"0.50430065",
"0.49586383",
"0.4948609"... | 0.89054286 | 0 |
Gets the org_apache_felix_http_jetty_max_form_size of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_max_form_size(self) -> ConfigNodePropertyInteger:
return self._org_apache_felix_http_jetty_max_form_size | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_max_form_size(self, org_apache_felix_http_jetty_max_form_size: ConfigNodePropertyInteger):\n\n self._org_apache_felix_http_jetty_max_form_size = org_apache_felix_http_jetty_max_form_size",
"def maxsize(self):\r\n return self._maxsize",
"def maximum_size(self):\n ... | [
"0.83774406",
"0.69641596",
"0.67761934",
"0.6627754",
"0.64675814",
"0.64214957",
"0.63402003",
"0.6337336",
"0.63351876",
"0.6321297",
"0.63121116",
"0.63098216",
"0.6303773",
"0.6292986",
"0.6209985",
"0.6205548",
"0.61754334",
"0.61468697",
"0.6049099",
"0.60451776",
"0.6... | 0.8972001 | 0 |
Sets the org_apache_felix_http_jetty_max_form_size of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_max_form_size(self, org_apache_felix_http_jetty_max_form_size: ConfigNodePropertyInteger):
self._org_apache_felix_http_jetty_max_form_size = org_apache_felix_http_jetty_max_form_size | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_max_form_size(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_jetty_max_form_size",
"def setmaxsize(self, maxsize):\n self.maxsize = maxsize",
"def fl_set_form_maxsize(ptr_flform, width, height):\n _fl_set_form_maxsize = library.cfuncpro... | [
"0.8412208",
"0.69157946",
"0.6716461",
"0.6247732",
"0.6154402",
"0.6094967",
"0.6064908",
"0.6027212",
"0.5934421",
"0.59222054",
"0.58846825",
"0.5880638",
"0.58478206",
"0.58478206",
"0.58478206",
"0.58478206",
"0.5831893",
"0.5811027",
"0.5804097",
"0.5755006",
"0.575179... | 0.89882696 | 0 |
Gets the org_apache_felix_http_path_exclusions of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_path_exclusions(self) -> ConfigNodePropertyArray:
return self._org_apache_felix_http_path_exclusions | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_path_exclusions(self, org_apache_felix_http_path_exclusions: ConfigNodePropertyArray):\n\n self._org_apache_felix_http_path_exclusions = org_apache_felix_http_path_exclusions",
"def exclusions(self) -> Sequence['outputs.LogExclusionResponse']:\n return pulumi.get(self, \"e... | [
"0.71784294",
"0.62536895",
"0.61722505",
"0.59349984",
"0.5571489",
"0.5251807",
"0.51229656",
"0.50510365",
"0.50276047",
"0.50089806",
"0.49695402",
"0.49158072",
"0.48763555",
"0.4832042",
"0.47196588",
"0.47165617",
"0.4716318",
"0.47085154",
"0.4654829",
"0.46445954",
"... | 0.81991285 | 0 |
Sets the org_apache_felix_http_path_exclusions of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_path_exclusions(self, org_apache_felix_http_path_exclusions: ConfigNodePropertyArray):
self._org_apache_felix_http_path_exclusions = org_apache_felix_http_path_exclusions | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_path_exclusions(self) -> ConfigNodePropertyArray:\n return self._org_apache_felix_http_path_exclusions",
"def org_apache_felix_jetty_gzip_excluded_paths(self, org_apache_felix_jetty_gzip_excluded_paths: ConfigNodePropertyArray):\n\n self._org_apache_felix_jetty_gzip_exclud... | [
"0.6972663",
"0.5362233",
"0.53212553",
"0.5257785",
"0.49641067",
"0.48284352",
"0.4809486",
"0.47740337",
"0.4770502",
"0.47558674",
"0.4606684",
"0.45556673",
"0.44468993",
"0.44281584",
"0.4413226",
"0.43906692",
"0.43603572",
"0.43404272",
"0.43379614",
"0.4322105",
"0.4... | 0.79758584 | 0 |
Gets the org_apache_felix_https_jetty_ciphersuites_excluded of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_ciphersuites_excluded(self) -> ConfigNodePropertyArray:
return self._org_apache_felix_https_jetty_ciphersuites_excluded | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_ciphersuites_excluded(self, org_apache_felix_https_jetty_ciphersuites_excluded: ConfigNodePropertyArray):\n\n self._org_apache_felix_https_jetty_ciphersuites_excluded = org_apache_felix_https_jetty_ciphersuites_excluded",
"def org_apache_felix_https_jetty_ciphersuites_incl... | [
"0.8006672",
"0.76669586",
"0.7355827",
"0.6812688",
"0.62024873",
"0.61846024",
"0.58553207",
"0.5841733",
"0.58255506",
"0.57873213",
"0.57873213",
"0.5574008",
"0.5541185",
"0.5272566",
"0.52486193",
"0.51701397",
"0.49791226",
"0.49747333",
"0.49476314",
"0.49220434",
"0.... | 0.87392783 | 0 |
Sets the org_apache_felix_https_jetty_ciphersuites_excluded of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_ciphersuites_excluded(self, org_apache_felix_https_jetty_ciphersuites_excluded: ConfigNodePropertyArray):
self._org_apache_felix_https_jetty_ciphersuites_excluded = org_apache_felix_https_jetty_ciphersuites_excluded | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_ciphersuites_excluded(self) -> ConfigNodePropertyArray:\n return self._org_apache_felix_https_jetty_ciphersuites_excluded",
"def org_apache_felix_https_jetty_protocols_excluded(self, org_apache_felix_https_jetty_protocols_excluded: ConfigNodePropertyArray):\n\n self... | [
"0.8188906",
"0.7445451",
"0.70056987",
"0.68604136",
"0.6727722",
"0.5532033",
"0.55267566",
"0.5348556",
"0.52328557",
"0.5147768",
"0.5141439",
"0.5130782",
"0.50554943",
"0.50419366",
"0.50419366",
"0.49337736",
"0.49311832",
"0.49194875",
"0.48945063",
"0.48111138",
"0.4... | 0.8483349 | 0 |
Gets the org_apache_felix_https_jetty_ciphersuites_included of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_ciphersuites_included(self) -> ConfigNodePropertyArray:
return self._org_apache_felix_https_jetty_ciphersuites_included | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_ciphersuites_included(self, org_apache_felix_https_jetty_ciphersuites_included: ConfigNodePropertyArray):\n\n self._org_apache_felix_https_jetty_ciphersuites_included = org_apache_felix_https_jetty_ciphersuites_included",
"def org_apache_felix_https_jetty_ciphersuites_excl... | [
"0.7825576",
"0.73759526",
"0.7143918",
"0.67467165",
"0.6631727",
"0.64669883",
"0.64669883",
"0.6272395",
"0.5930661",
"0.52421147",
"0.52053916",
"0.5181582",
"0.51730275",
"0.5168932",
"0.5163339",
"0.5127186",
"0.5120606",
"0.50077444",
"0.491471",
"0.486843",
"0.4862405... | 0.88697094 | 0 |
Sets the org_apache_felix_https_jetty_ciphersuites_included of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_ciphersuites_included(self, org_apache_felix_https_jetty_ciphersuites_included: ConfigNodePropertyArray):
self._org_apache_felix_https_jetty_ciphersuites_included = org_apache_felix_https_jetty_ciphersuites_included | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_ciphersuites_included(self) -> ConfigNodePropertyArray:\n return self._org_apache_felix_https_jetty_ciphersuites_included",
"def org_apache_felix_https_jetty_ciphersuites_excluded(self, org_apache_felix_https_jetty_ciphersuites_excluded: ConfigNodePropertyArray):\n\n ... | [
"0.80320394",
"0.7054336",
"0.69682276",
"0.67477006",
"0.63242257",
"0.62820464",
"0.58086675",
"0.57060903",
"0.56678224",
"0.56678224",
"0.5369118",
"0.530746",
"0.52296245",
"0.50792855",
"0.5073414",
"0.50696653",
"0.49941665",
"0.4982527",
"0.49132556",
"0.4790541",
"0.... | 0.8374045 | 0 |
Gets the org_apache_felix_http_jetty_send_server_header of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_send_server_header(self) -> ConfigNodePropertyBoolean:
return self._org_apache_felix_http_jetty_send_server_header | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_send_server_header(self, org_apache_felix_http_jetty_send_server_header: ConfigNodePropertyBoolean):\n\n self._org_apache_felix_http_jetty_send_server_header = org_apache_felix_http_jetty_send_server_header",
"def org_apache_felix_http_host(self) -> ConfigNodePropertyString... | [
"0.720683",
"0.54335964",
"0.5170315",
"0.51302344",
"0.5125488",
"0.5118811",
"0.5031155",
"0.49336702",
"0.49309173",
"0.49040034",
"0.48370942",
"0.47977886",
"0.47821403",
"0.47776657",
"0.4730022",
"0.4717341",
"0.4712715",
"0.4674923",
"0.4673366",
"0.46565604",
"0.4655... | 0.761024 | 0 |
Sets the org_apache_felix_http_jetty_send_server_header of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_jetty_send_server_header(self, org_apache_felix_http_jetty_send_server_header: ConfigNodePropertyBoolean):
self._org_apache_felix_http_jetty_send_server_header = org_apache_felix_http_jetty_send_server_header | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_jetty_send_server_header(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_http_jetty_send_server_header",
"def set_extra_header(self, key, value):\n self.headers[key] = value",
"def setServerHost(self, serverHost):\n\n _ExceptionUtil.raiseOnErro... | [
"0.7566393",
"0.52313286",
"0.5169601",
"0.5147453",
"0.50766253",
"0.50346565",
"0.49686372",
"0.4947622",
"0.49408403",
"0.48937678",
"0.4892759",
"0.48535964",
"0.48509184",
"0.48260105",
"0.4785025",
"0.47435433",
"0.4736665",
"0.47344372",
"0.4693013",
"0.46644878",
"0.4... | 0.833848 | 0 |
Gets the org_apache_felix_https_jetty_protocols_included of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_protocols_included(self) -> ConfigNodePropertyArray:
return self._org_apache_felix_https_jetty_protocols_included | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_protocols_included(self, org_apache_felix_https_jetty_protocols_included: ConfigNodePropertyArray):\n\n self._org_apache_felix_https_jetty_protocols_included = org_apache_felix_https_jetty_protocols_included",
"def org_apache_felix_https_jetty_protocols_excluded(self) -> C... | [
"0.7143333",
"0.6994674",
"0.6475212",
"0.6100093",
"0.6100093",
"0.60744804",
"0.5737312",
"0.5601798",
"0.5586618",
"0.556064",
"0.55561566",
"0.55441225",
"0.54696274",
"0.5392853",
"0.53568125",
"0.535121",
"0.5342535",
"0.5327935",
"0.5178258",
"0.51387435",
"0.51382333"... | 0.84173626 | 0 |
Sets the org_apache_felix_https_jetty_protocols_included of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_protocols_included(self, org_apache_felix_https_jetty_protocols_included: ConfigNodePropertyArray):
self._org_apache_felix_https_jetty_protocols_included = org_apache_felix_https_jetty_protocols_included | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_protocols_included(self) -> ConfigNodePropertyArray:\n return self._org_apache_felix_https_jetty_protocols_included",
"def org_apache_felix_https_jetty_protocols_excluded(self, org_apache_felix_https_jetty_protocols_excluded: ConfigNodePropertyArray):\n\n self._org_... | [
"0.7401472",
"0.6746078",
"0.6311781",
"0.61568683",
"0.57970095",
"0.55963475",
"0.55094516",
"0.52176607",
"0.5177317",
"0.5158606",
"0.5132755",
"0.50852495",
"0.5077811",
"0.503012",
"0.50092804",
"0.5003017",
"0.49772087",
"0.49760112",
"0.49399388",
"0.49125448",
"0.490... | 0.7924765 | 0 |
Gets the org_apache_felix_https_jetty_protocols_excluded of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_protocols_excluded(self) -> ConfigNodePropertyArray:
return self._org_apache_felix_https_jetty_protocols_excluded | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_protocols_excluded(self, org_apache_felix_https_jetty_protocols_excluded: ConfigNodePropertyArray):\n\n self._org_apache_felix_https_jetty_protocols_excluded = org_apache_felix_https_jetty_protocols_excluded",
"def org_apache_felix_https_jetty_protocols_included(self) -> C... | [
"0.75173306",
"0.68851614",
"0.686683",
"0.59903455",
"0.59645575",
"0.5721217",
"0.55738944",
"0.5501336",
"0.5446554",
"0.5372603",
"0.5343339",
"0.52907157",
"0.5220622",
"0.5179009",
"0.5147509",
"0.50936097",
"0.50936097",
"0.50856",
"0.5071173",
"0.5070654",
"0.5028659"... | 0.8276882 | 0 |
Sets the org_apache_felix_https_jetty_protocols_excluded of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_protocols_excluded(self, org_apache_felix_https_jetty_protocols_excluded: ConfigNodePropertyArray):
self._org_apache_felix_https_jetty_protocols_excluded = org_apache_felix_https_jetty_protocols_excluded | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_protocols_excluded(self) -> ConfigNodePropertyArray:\n return self._org_apache_felix_https_jetty_protocols_excluded",
"def org_apache_felix_https_jetty_ciphersuites_excluded(self, org_apache_felix_https_jetty_ciphersuites_excluded: ConfigNodePropertyArray):\n\n self... | [
"0.77744794",
"0.6673987",
"0.6493134",
"0.62215024",
"0.6069417",
"0.5461609",
"0.52509534",
"0.5200117",
"0.51983577",
"0.5011677",
"0.49778444",
"0.4869028",
"0.48161498",
"0.4808893",
"0.4805786",
"0.47632444",
"0.47441465",
"0.47231454",
"0.46583134",
"0.46477064",
"0.45... | 0.8257436 | 0 |
Gets the org_apache_felix_proxy_load_balancer_connection_enable of this OrgApacheFelixHttpProperties. | def org_apache_felix_proxy_load_balancer_connection_enable(self) -> ConfigNodePropertyBoolean:
return self._org_apache_felix_proxy_load_balancer_connection_enable | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_proxy_load_balancer_connection_enable(self, org_apache_felix_proxy_load_balancer_connection_enable: ConfigNodePropertyBoolean):\n\n self._org_apache_felix_proxy_load_balancer_connection_enable = org_apache_felix_proxy_load_balancer_connection_enable",
"def proxy_enabled(self) -> Confi... | [
"0.7585389",
"0.5979093",
"0.58541465",
"0.5275434",
"0.5167154",
"0.51560354",
"0.51274407",
"0.5123524",
"0.5077133",
"0.50369227",
"0.5034911",
"0.5006835",
"0.49991077",
"0.49728867",
"0.49704644",
"0.49545544",
"0.49113658",
"0.48701268",
"0.48631307",
"0.48617736",
"0.4... | 0.8379422 | 0 |
Sets the org_apache_felix_proxy_load_balancer_connection_enable of this OrgApacheFelixHttpProperties. | def org_apache_felix_proxy_load_balancer_connection_enable(self, org_apache_felix_proxy_load_balancer_connection_enable: ConfigNodePropertyBoolean):
self._org_apache_felix_proxy_load_balancer_connection_enable = org_apache_felix_proxy_load_balancer_connection_enable | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_proxy_load_balancer_connection_enable(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_proxy_load_balancer_connection_enable",
"def org_apache_felix_http_enable(self, org_apache_felix_http_enable: ConfigNodePropertyBoolean):\n\n self._org_apache_felix_http_en... | [
"0.7862455",
"0.6342613",
"0.6052289",
"0.6048523",
"0.5746313",
"0.567485",
"0.5455717",
"0.52653664",
"0.5230634",
"0.51369035",
"0.49794716",
"0.48763663",
"0.4845077",
"0.4841974",
"0.4764327",
"0.47521943",
"0.4638726",
"0.46030572",
"0.45994973",
"0.4578724",
"0.4558086... | 0.8314738 | 0 |
Gets the org_apache_felix_https_jetty_renegotiate_allowed of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_renegotiate_allowed(self) -> ConfigNodePropertyBoolean:
return self._org_apache_felix_https_jetty_renegotiate_allowed | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_renegotiate_allowed(self, org_apache_felix_https_jetty_renegotiate_allowed: ConfigNodePropertyBoolean):\n\n self._org_apache_felix_https_jetty_renegotiate_allowed = org_apache_felix_https_jetty_renegotiate_allowed",
"def org_apache_felix_http_jetty_acceptors(self) -> Confi... | [
"0.7388131",
"0.5603824",
"0.5246607",
"0.5156881",
"0.5155354",
"0.50769955",
"0.5044736",
"0.48870885",
"0.48011816",
"0.4797564",
"0.4762255",
"0.47510862",
"0.47293967",
"0.47182637",
"0.47124138",
"0.46745506",
"0.46723396",
"0.4661274",
"0.46395332",
"0.46204197",
"0.45... | 0.7759308 | 0 |
Sets the org_apache_felix_https_jetty_renegotiate_allowed of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_renegotiate_allowed(self, org_apache_felix_https_jetty_renegotiate_allowed: ConfigNodePropertyBoolean):
self._org_apache_felix_https_jetty_renegotiate_allowed = org_apache_felix_https_jetty_renegotiate_allowed | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_renegotiate_allowed(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_https_jetty_renegotiate_allowed",
"def org_apache_felix_http_jetty_acceptors(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_http_jetty_acceptors",
"def org... | [
"0.7855914",
"0.50936383",
"0.508229",
"0.4987348",
"0.48918593",
"0.4497783",
"0.447024",
"0.44417554",
"0.43885708",
"0.43771076",
"0.43431482",
"0.43161556",
"0.43086872",
"0.42938745",
"0.4289132",
"0.4274785",
"0.42735496",
"0.4228459",
"0.42203805",
"0.41879982",
"0.417... | 0.8225067 | 0 |
Gets the org_apache_felix_https_jetty_session_cookie_http_only of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_session_cookie_http_only(self) -> ConfigNodePropertyBoolean:
return self._org_apache_felix_https_jetty_session_cookie_http_only | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_session_cookie_http_only(self, org_apache_felix_https_jetty_session_cookie_http_only: ConfigNodePropertyBoolean):\n\n self._org_apache_felix_https_jetty_session_cookie_http_only = org_apache_felix_https_jetty_session_cookie_http_only",
"def org_eclipse_jetty_servlet_sessio... | [
"0.759049",
"0.6817027",
"0.655672",
"0.5705959",
"0.56850845",
"0.56175137",
"0.5491477",
"0.54670805",
"0.5452479",
"0.54268336",
"0.54024917",
"0.5285755",
"0.5283498",
"0.5282605",
"0.52805656",
"0.52252483",
"0.52127784",
"0.5185735",
"0.51587135",
"0.51560485",
"0.51368... | 0.791387 | 0 |
Sets the org_apache_felix_https_jetty_session_cookie_http_only of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_session_cookie_http_only(self, org_apache_felix_https_jetty_session_cookie_http_only: ConfigNodePropertyBoolean):
self._org_apache_felix_https_jetty_session_cookie_http_only = org_apache_felix_https_jetty_session_cookie_http_only | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_session_cookie_http_only(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_https_jetty_session_cookie_http_only",
"def org_apache_felix_https_jetty_session_cookie_secure(self, org_apache_felix_https_jetty_session_cookie_secure: ConfigNodePropertyBoolean):... | [
"0.78975093",
"0.6473654",
"0.64645904",
"0.6166323",
"0.582882",
"0.5828086",
"0.5592454",
"0.5569951",
"0.5565146",
"0.5439021",
"0.52800626",
"0.52363485",
"0.5227694",
"0.52192616",
"0.518404",
"0.51544404",
"0.51544404",
"0.50832325",
"0.5033397",
"0.501424",
"0.5005163"... | 0.8459779 | 0 |
Gets the org_apache_felix_https_jetty_session_cookie_secure of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_session_cookie_secure(self) -> ConfigNodePropertyBoolean:
return self._org_apache_felix_https_jetty_session_cookie_secure | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_session_cookie_secure(self, org_apache_felix_https_jetty_session_cookie_secure: ConfigNodePropertyBoolean):\n\n self._org_apache_felix_https_jetty_session_cookie_secure = org_apache_felix_https_jetty_session_cookie_secure",
"def org_apache_felix_https_jetty_session_cookie_... | [
"0.76168174",
"0.71077585",
"0.68229413",
"0.6207827",
"0.58710533",
"0.57786113",
"0.5762188",
"0.5658199",
"0.55540204",
"0.5413545",
"0.54108304",
"0.5407679",
"0.5403133",
"0.5403133",
"0.5323731",
"0.5272499",
"0.52632594",
"0.52039444",
"0.5186352",
"0.5158216",
"0.5125... | 0.8153931 | 0 |
Sets the org_apache_felix_https_jetty_session_cookie_secure of this OrgApacheFelixHttpProperties. | def org_apache_felix_https_jetty_session_cookie_secure(self, org_apache_felix_https_jetty_session_cookie_secure: ConfigNodePropertyBoolean):
self._org_apache_felix_https_jetty_session_cookie_secure = org_apache_felix_https_jetty_session_cookie_secure | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_https_jetty_session_cookie_secure(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_https_jetty_session_cookie_secure",
"def org_apache_felix_https_jetty_session_cookie_http_only(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_https_jetty_s... | [
"0.79111177",
"0.67461854",
"0.6736716",
"0.6402892",
"0.6185207",
"0.602995",
"0.602995",
"0.58597827",
"0.5815382",
"0.58048975",
"0.5754175",
"0.56825835",
"0.5586451",
"0.55416924",
"0.5419209",
"0.5372482",
"0.5281957",
"0.5272099",
"0.524801",
"0.51907027",
"0.5077039",... | 0.8422606 | 0 |
Gets the org_eclipse_jetty_servlet_session_id_path_parameter_name of this OrgApacheFelixHttpProperties. | def org_eclipse_jetty_servlet_session_id_path_parameter_name(self) -> ConfigNodePropertyString:
return self._org_eclipse_jetty_servlet_session_id_path_parameter_name | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_eclipse_jetty_servlet_session_id_path_parameter_name(self, org_eclipse_jetty_servlet_session_id_path_parameter_name: ConfigNodePropertyString):\n\n self._org_eclipse_jetty_servlet_session_id_path_parameter_name = org_eclipse_jetty_servlet_session_id_path_parameter_name",
"def org_eclipse_jetty_ser... | [
"0.7539641",
"0.69858646",
"0.61451226",
"0.60847193",
"0.59652257",
"0.58883613",
"0.5875231",
"0.58094233",
"0.5783299",
"0.5781225",
"0.5766997",
"0.5766805",
"0.5730334",
"0.56632304",
"0.5591728",
"0.55735487",
"0.55616134",
"0.5490254",
"0.543284",
"0.53859866",
"0.5374... | 0.8829833 | 0 |
Sets the org_eclipse_jetty_servlet_session_id_path_parameter_name of this OrgApacheFelixHttpProperties. | def org_eclipse_jetty_servlet_session_id_path_parameter_name(self, org_eclipse_jetty_servlet_session_id_path_parameter_name: ConfigNodePropertyString):
self._org_eclipse_jetty_servlet_session_id_path_parameter_name = org_eclipse_jetty_servlet_session_id_path_parameter_name | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_eclipse_jetty_servlet_session_id_path_parameter_name(self) -> ConfigNodePropertyString:\n return self._org_eclipse_jetty_servlet_session_id_path_parameter_name",
"def org_eclipse_jetty_servlet_session_path(self, org_eclipse_jetty_servlet_session_path: ConfigNodePropertyString):\n\n self._or... | [
"0.79462916",
"0.6415691",
"0.61899376",
"0.58518845",
"0.5829601",
"0.54449195",
"0.54422826",
"0.54116786",
"0.5373474",
"0.53458595",
"0.52744436",
"0.5240672",
"0.5140661",
"0.5091408",
"0.5090148",
"0.506558",
"0.5019925",
"0.5005711",
"0.4976615",
"0.4938111",
"0.491732... | 0.8263257 | 0 |
Gets the org_eclipse_jetty_servlet_checking_remote_session_id_encoding of this OrgApacheFelixHttpProperties. | def org_eclipse_jetty_servlet_checking_remote_session_id_encoding(self) -> ConfigNodePropertyBoolean:
return self._org_eclipse_jetty_servlet_checking_remote_session_id_encoding | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_eclipse_jetty_servlet_checking_remote_session_id_encoding(self, org_eclipse_jetty_servlet_checking_remote_session_id_encoding: ConfigNodePropertyBoolean):\n\n self._org_eclipse_jetty_servlet_checking_remote_session_id_encoding = org_eclipse_jetty_servlet_checking_remote_session_id_encoding",
"def ... | [
"0.7184604",
"0.5711355",
"0.5639995",
"0.5615489",
"0.5608385",
"0.559433",
"0.5577687",
"0.5571455",
"0.55091834",
"0.54435366",
"0.53591734",
"0.5226014",
"0.5201126",
"0.5167259",
"0.5131304",
"0.51158756",
"0.5066466",
"0.5035612",
"0.4974878",
"0.4952222",
"0.4933751",
... | 0.750069 | 0 |
Sets the org_eclipse_jetty_servlet_checking_remote_session_id_encoding of this OrgApacheFelixHttpProperties. | def org_eclipse_jetty_servlet_checking_remote_session_id_encoding(self, org_eclipse_jetty_servlet_checking_remote_session_id_encoding: ConfigNodePropertyBoolean):
self._org_eclipse_jetty_servlet_checking_remote_session_id_encoding = org_eclipse_jetty_servlet_checking_remote_session_id_encoding | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_eclipse_jetty_servlet_checking_remote_session_id_encoding(self) -> ConfigNodePropertyBoolean:\n return self._org_eclipse_jetty_servlet_checking_remote_session_id_encoding",
"def org_apache_felix_http_session_uniqueid(self, org_apache_felix_http_session_uniqueid: ConfigNodePropertyBoolean):\n\n ... | [
"0.7511075",
"0.54271877",
"0.5399181",
"0.5091118",
"0.50339067",
"0.48006648",
"0.47968838",
"0.47538432",
"0.47065693",
"0.46004972",
"0.45836058",
"0.45031694",
"0.44536301",
"0.44459754",
"0.44451562",
"0.44139877",
"0.4411459",
"0.43887246",
"0.4358497",
"0.4334172",
"0... | 0.816674 | 0 |
Gets the org_eclipse_jetty_servlet_session_cookie of this OrgApacheFelixHttpProperties. | def org_eclipse_jetty_servlet_session_cookie(self) -> ConfigNodePropertyString:
return self._org_eclipse_jetty_servlet_session_cookie | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_eclipse_jetty_servlet_session_cookie(self, org_eclipse_jetty_servlet_session_cookie: ConfigNodePropertyString):\n\n self._org_eclipse_jetty_servlet_session_cookie = org_eclipse_jetty_servlet_session_cookie",
"def get_cookie(self):\n http_cookie = self.get_header('cookie', '')\n retur... | [
"0.68340576",
"0.672034",
"0.6544674",
"0.64053273",
"0.61610234",
"0.6061477",
"0.60491157",
"0.60034275",
"0.59806526",
"0.59806526",
"0.59806526",
"0.59806526",
"0.59806526",
"0.59806526",
"0.5980338",
"0.59728503",
"0.59557706",
"0.59485495",
"0.58910686",
"0.58725727",
"... | 0.810875 | 0 |
Sets the org_eclipse_jetty_servlet_session_cookie of this OrgApacheFelixHttpProperties. | def org_eclipse_jetty_servlet_session_cookie(self, org_eclipse_jetty_servlet_session_cookie: ConfigNodePropertyString):
self._org_eclipse_jetty_servlet_session_cookie = org_eclipse_jetty_servlet_session_cookie | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def set_cookie(self, response):\n if self._invalidated:\n response.delete_cookie(\n key=self.app.conf.flask.session_cookie_name,\n path=self.app.conf.flask.session_cookie_path,\n domain=self.app.conf.flask.session_cookie_domain,\n )\n ... | [
"0.69127756",
"0.6814309",
"0.6383769",
"0.61829615",
"0.61796474",
"0.61053187",
"0.60989267",
"0.6055736",
"0.592436",
"0.5896339",
"0.582541",
"0.5795232",
"0.5758922",
"0.57566833",
"0.57418525",
"0.57270485",
"0.57237303",
"0.5708476",
"0.5706266",
"0.56652313",
"0.56630... | 0.80524087 | 0 |
Gets the org_eclipse_jetty_servlet_session_domain of this OrgApacheFelixHttpProperties. | def org_eclipse_jetty_servlet_session_domain(self) -> ConfigNodePropertyString:
return self._org_eclipse_jetty_servlet_session_domain | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_eclipse_jetty_servlet_session_domain(self, org_eclipse_jetty_servlet_session_domain: ConfigNodePropertyString):\n\n self._org_eclipse_jetty_servlet_session_domain = org_eclipse_jetty_servlet_session_domain",
"def org_eclipse_jetty_servlet_session_cookie(self) -> ConfigNodePropertyString:\n ... | [
"0.69871855",
"0.6372758",
"0.61622244",
"0.60986185",
"0.6049063",
"0.6037164",
"0.5997461",
"0.59651726",
"0.5902273",
"0.5902273",
"0.5902273",
"0.5886359",
"0.58488506",
"0.582764",
"0.56906235",
"0.5684521",
"0.5553651",
"0.55455285",
"0.55266345",
"0.54739136",
"0.54739... | 0.802342 | 0 |
Sets the org_eclipse_jetty_servlet_session_domain of this OrgApacheFelixHttpProperties. | def org_eclipse_jetty_servlet_session_domain(self, org_eclipse_jetty_servlet_session_domain: ConfigNodePropertyString):
self._org_eclipse_jetty_servlet_session_domain = org_eclipse_jetty_servlet_session_domain | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_eclipse_jetty_servlet_session_domain(self) -> ConfigNodePropertyString:\n return self._org_eclipse_jetty_servlet_session_domain",
"def org_eclipse_jetty_servlet_session_cookie(self, org_eclipse_jetty_servlet_session_cookie: ConfigNodePropertyString):\n\n self._org_eclipse_jetty_servlet_sess... | [
"0.6879311",
"0.64143735",
"0.6213083",
"0.5834259",
"0.5834259",
"0.5826717",
"0.5727671",
"0.5727671",
"0.566469",
"0.5537447",
"0.5457231",
"0.5397878",
"0.5367511",
"0.5339399",
"0.52829504",
"0.528016",
"0.5261556",
"0.5226071",
"0.51916754",
"0.51051193",
"0.50447595",
... | 0.825951 | 0 |
Gets the org_eclipse_jetty_servlet_session_path of this OrgApacheFelixHttpProperties. | def org_eclipse_jetty_servlet_session_path(self) -> ConfigNodePropertyString:
return self._org_eclipse_jetty_servlet_session_path | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_eclipse_jetty_servlet_session_path(self, org_eclipse_jetty_servlet_session_path: ConfigNodePropertyString):\n\n self._org_eclipse_jetty_servlet_session_path = org_eclipse_jetty_servlet_session_path",
"def org_eclipse_jetty_servlet_session_cookie(self) -> ConfigNodePropertyString:\n return s... | [
"0.729333",
"0.65782946",
"0.64603853",
"0.6325453",
"0.6289483",
"0.58086145",
"0.57547486",
"0.57312465",
"0.5423325",
"0.5413763",
"0.540596",
"0.5405453",
"0.5382843",
"0.5359993",
"0.5338981",
"0.5300187",
"0.5295436",
"0.5278488",
"0.520236",
"0.5169816",
"0.5169054",
... | 0.84634095 | 0 |
Sets the org_eclipse_jetty_servlet_session_path of this OrgApacheFelixHttpProperties. | def org_eclipse_jetty_servlet_session_path(self, org_eclipse_jetty_servlet_session_path: ConfigNodePropertyString):
self._org_eclipse_jetty_servlet_session_path = org_eclipse_jetty_servlet_session_path | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_eclipse_jetty_servlet_session_path(self) -> ConfigNodePropertyString:\n return self._org_eclipse_jetty_servlet_session_path",
"def setSessionPath(self, sessionPath):\n self.__sessionPath = sessionPath\n self.__sessionDownloadPath = os.path.join(self.__sessionPath, \"downloads\")",
... | [
"0.7027578",
"0.6764385",
"0.6355127",
"0.59292066",
"0.575621",
"0.56231153",
"0.53795856",
"0.53714836",
"0.5323555",
"0.5298759",
"0.52748513",
"0.5201414",
"0.5120303",
"0.51122975",
"0.50685257",
"0.50682163",
"0.49541566",
"0.48948157",
"0.4870805",
"0.48304254",
"0.482... | 0.81809276 | 0 |
Gets the org_eclipse_jetty_servlet_max_age of this OrgApacheFelixHttpProperties. | def org_eclipse_jetty_servlet_max_age(self) -> ConfigNodePropertyInteger:
return self._org_eclipse_jetty_servlet_max_age | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_eclipse_jetty_servlet_max_age(self, org_eclipse_jetty_servlet_max_age: ConfigNodePropertyInteger):\n\n self._org_eclipse_jetty_servlet_max_age = org_eclipse_jetty_servlet_max_age",
"def get_access_control_max_age(self):\n return self.access_control_max_age",
"def max_age(self):\n r... | [
"0.79226923",
"0.7374661",
"0.7364027",
"0.7364027",
"0.7353072",
"0.7175885",
"0.70248944",
"0.6911765",
"0.68871266",
"0.68483526",
"0.67656684",
"0.6505761",
"0.6406191",
"0.63704854",
"0.6334884",
"0.6334264",
"0.6306295",
"0.62859863",
"0.62758666",
"0.619527",
"0.615905... | 0.8632336 | 0 |
Sets the org_eclipse_jetty_servlet_max_age of this OrgApacheFelixHttpProperties. | def org_eclipse_jetty_servlet_max_age(self, org_eclipse_jetty_servlet_max_age: ConfigNodePropertyInteger):
self._org_eclipse_jetty_servlet_max_age = org_eclipse_jetty_servlet_max_age | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_eclipse_jetty_servlet_max_age(self) -> ConfigNodePropertyInteger:\n return self._org_eclipse_jetty_servlet_max_age",
"def max_age(self, max_age):\n self._max_age = max_age",
"def max_age(self, max_age):\n\n self._max_age = max_age",
"def org_apache_felix_http_timeout(self, org_ap... | [
"0.77070516",
"0.7198202",
"0.7138556",
"0.65017915",
"0.6181767",
"0.6141175",
"0.5987505",
"0.5961079",
"0.5936582",
"0.5936582",
"0.59012896",
"0.58650595",
"0.5784935",
"0.5715105",
"0.5714598",
"0.5695832",
"0.56906164",
"0.56906164",
"0.56471163",
"0.5641398",
"0.563022... | 0.85148215 | 0 |
Gets the org_apache_felix_http_name of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_name(self) -> ConfigNodePropertyString:
return self._org_apache_felix_http_name | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_name(self, org_apache_felix_http_name: ConfigNodePropertyString):\n\n self._org_apache_felix_http_name = org_apache_felix_http_name",
"def org_apache_felix_http_host(self) -> ConfigNodePropertyString:\n return self._org_apache_felix_http_host",
"def org_apache_felix_http... | [
"0.74911267",
"0.71158814",
"0.63308436",
"0.595011",
"0.5915674",
"0.5898321",
"0.5829151",
"0.58089536",
"0.58089536",
"0.56966585",
"0.56966585",
"0.5591087",
"0.5591087",
"0.5585039",
"0.5573472",
"0.55702573",
"0.5503454",
"0.5494949",
"0.5494949",
"0.5494949",
"0.549494... | 0.87875336 | 0 |
Sets the org_apache_felix_http_name of this OrgApacheFelixHttpProperties. | def org_apache_felix_http_name(self, org_apache_felix_http_name: ConfigNodePropertyString):
self._org_apache_felix_http_name = org_apache_felix_http_name | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_http_name(self) -> ConfigNodePropertyString:\n return self._org_apache_felix_http_name",
"def org_apache_felix_http_host(self, org_apache_felix_http_host: ConfigNodePropertyString):\n\n self._org_apache_felix_http_host = org_apache_felix_http_host",
"def org_apache_felix_http... | [
"0.788678",
"0.7194826",
"0.60659164",
"0.602776",
"0.56623447",
"0.549155",
"0.5468139",
"0.5403469",
"0.53853196",
"0.536887",
"0.53645056",
"0.53538674",
"0.5307902",
"0.52866834",
"0.528085",
"0.528085",
"0.5280482",
"0.5277183",
"0.52763146",
"0.5264887",
"0.5264495",
... | 0.8956275 | 0 |
Gets the org_apache_felix_jetty_gziphandler_enable of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gziphandler_enable(self) -> ConfigNodePropertyBoolean:
return self._org_apache_felix_jetty_gziphandler_enable | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gziphandler_enable(self, org_apache_felix_jetty_gziphandler_enable: ConfigNodePropertyBoolean):\n\n self._org_apache_felix_jetty_gziphandler_enable = org_apache_felix_jetty_gziphandler_enable",
"def org_apache_felix_jetty_gzip_compression_level(self) -> ConfigNodePropertyInteger... | [
"0.80092615",
"0.7250536",
"0.6306701",
"0.6257106",
"0.619261",
"0.5885446",
"0.57945496",
"0.56162643",
"0.5569837",
"0.55353713",
"0.54881006",
"0.54293126",
"0.54227716",
"0.5384655",
"0.53636545",
"0.5305998",
"0.5107341",
"0.5064164",
"0.49836802",
"0.49299547",
"0.4914... | 0.85912055 | 0 |
Sets the org_apache_felix_jetty_gziphandler_enable of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gziphandler_enable(self, org_apache_felix_jetty_gziphandler_enable: ConfigNodePropertyBoolean):
self._org_apache_felix_jetty_gziphandler_enable = org_apache_felix_jetty_gziphandler_enable | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gziphandler_enable(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_jetty_gziphandler_enable",
"def org_apache_felix_jetty_gzip_compression_level(self, org_apache_felix_jetty_gzip_compression_level: ConfigNodePropertyInteger):\n\n self._org_apache_felix... | [
"0.8225073",
"0.6851057",
"0.6579651",
"0.5856874",
"0.5840498",
"0.57394814",
"0.559938",
"0.549365",
"0.5477199",
"0.54660046",
"0.54463446",
"0.53507644",
"0.53407335",
"0.52680945",
"0.52453774",
"0.52061075",
"0.5050915",
"0.5037592",
"0.5035342",
"0.49892813",
"0.494841... | 0.86850715 | 0 |
Gets the org_apache_felix_jetty_gzip_min_gzip_size of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_min_gzip_size(self) -> ConfigNodePropertyInteger:
return self._org_apache_felix_jetty_gzip_min_gzip_size | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_min_gzip_size(self, org_apache_felix_jetty_gzip_min_gzip_size: ConfigNodePropertyInteger):\n\n self._org_apache_felix_jetty_gzip_min_gzip_size = org_apache_felix_jetty_gzip_min_gzip_size",
"def org_apache_felix_jetty_gzip_inflate_buffer_size(self) -> ConfigNodePropertyInteg... | [
"0.8400562",
"0.75387615",
"0.6989325",
"0.653769",
"0.6295669",
"0.618279",
"0.61458206",
"0.59806186",
"0.5916113",
"0.59154785",
"0.59107256",
"0.56638294",
"0.56260955",
"0.56211317",
"0.55791783",
"0.55396116",
"0.5530492",
"0.5478353",
"0.5460692",
"0.5456675",
"0.54473... | 0.91252005 | 0 |
Sets the org_apache_felix_jetty_gzip_min_gzip_size of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_min_gzip_size(self, org_apache_felix_jetty_gzip_min_gzip_size: ConfigNodePropertyInteger):
self._org_apache_felix_jetty_gzip_min_gzip_size = org_apache_felix_jetty_gzip_min_gzip_size | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_min_gzip_size(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_jetty_gzip_min_gzip_size",
"def org_apache_felix_jetty_gzip_inflate_buffer_size(self, org_apache_felix_jetty_gzip_inflate_buffer_size: ConfigNodePropertyInteger):\n\n self._org_apache_f... | [
"0.8382813",
"0.71932256",
"0.6823445",
"0.6540621",
"0.6333347",
"0.6291914",
"0.6102149",
"0.5967775",
"0.5879047",
"0.5555153",
"0.55130374",
"0.54003024",
"0.53656447",
"0.52574754",
"0.5196224",
"0.51598155",
"0.5156485",
"0.5131345",
"0.5121799",
"0.5015516",
"0.494378"... | 0.89967483 | 0 |
Gets the org_apache_felix_jetty_gzip_compression_level of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_compression_level(self) -> ConfigNodePropertyInteger:
return self._org_apache_felix_jetty_gzip_compression_level | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_compression_level(self, org_apache_felix_jetty_gzip_compression_level: ConfigNodePropertyInteger):\n\n self._org_apache_felix_jetty_gzip_compression_level = org_apache_felix_jetty_gzip_compression_level",
"def gzip_lvl(self):\r\n return self._gzip_lvl",
"def org_ap... | [
"0.77638346",
"0.7294881",
"0.694062",
"0.6865142",
"0.65208966",
"0.5985845",
"0.57986766",
"0.5748033",
"0.57173324",
"0.5504267",
"0.5450033",
"0.53696895",
"0.5310904",
"0.53013366",
"0.513485",
"0.51347536",
"0.5097208",
"0.50948596",
"0.50558394",
"0.50551933",
"0.50271... | 0.89422643 | 0 |
Sets the org_apache_felix_jetty_gzip_compression_level of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_compression_level(self, org_apache_felix_jetty_gzip_compression_level: ConfigNodePropertyInteger):
self._org_apache_felix_jetty_gzip_compression_level = org_apache_felix_jetty_gzip_compression_level | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_compression_level(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_jetty_gzip_compression_level",
"def org_apache_felix_jetty_gziphandler_enable(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_jetty_gziphandler_enable",
"def o... | [
"0.8114339",
"0.6905731",
"0.6715948",
"0.61611354",
"0.61341375",
"0.61019504",
"0.60927176",
"0.60925907",
"0.5844152",
"0.58404",
"0.55939794",
"0.55626774",
"0.553414",
"0.55092186",
"0.5507481",
"0.53810966",
"0.53064585",
"0.5291031",
"0.5249719",
"0.51036525",
"0.49681... | 0.85285103 | 0 |
Gets the org_apache_felix_jetty_gzip_inflate_buffer_size of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_inflate_buffer_size(self) -> ConfigNodePropertyInteger:
return self._org_apache_felix_jetty_gzip_inflate_buffer_size | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_inflate_buffer_size(self, org_apache_felix_jetty_gzip_inflate_buffer_size: ConfigNodePropertyInteger):\n\n self._org_apache_felix_jetty_gzip_inflate_buffer_size = org_apache_felix_jetty_gzip_inflate_buffer_size",
"def org_apache_felix_jetty_gzip_min_gzip_size(self) -> Confi... | [
"0.78192544",
"0.7534896",
"0.75241023",
"0.71015847",
"0.6967161",
"0.6539922",
"0.6312643",
"0.6282108",
"0.61751866",
"0.611683",
"0.59593934",
"0.5856223",
"0.58093953",
"0.5690487",
"0.56638455",
"0.55786276",
"0.5559468",
"0.5559468",
"0.55552584",
"0.55482984",
"0.5542... | 0.89327013 | 0 |
Sets the org_apache_felix_jetty_gzip_inflate_buffer_size of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_inflate_buffer_size(self, org_apache_felix_jetty_gzip_inflate_buffer_size: ConfigNodePropertyInteger):
self._org_apache_felix_jetty_gzip_inflate_buffer_size = org_apache_felix_jetty_gzip_inflate_buffer_size | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_inflate_buffer_size(self) -> ConfigNodePropertyInteger:\n return self._org_apache_felix_jetty_gzip_inflate_buffer_size",
"def org_apache_felix_http_jetty_header_buffer_size(self, org_apache_felix_http_jetty_header_buffer_size: ConfigNodePropertyInteger):\n\n self._or... | [
"0.8120494",
"0.7189255",
"0.6854489",
"0.68282837",
"0.66999125",
"0.6590593",
"0.6440557",
"0.63044846",
"0.6096197",
"0.599457",
"0.5992669",
"0.5402825",
"0.5393766",
"0.53248346",
"0.52402633",
"0.5126863",
"0.50726634",
"0.50438523",
"0.49348024",
"0.48293892",
"0.48288... | 0.8697436 | 0 |
Gets the org_apache_felix_jetty_gzip_sync_flush of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_sync_flush(self) -> ConfigNodePropertyBoolean:
return self._org_apache_felix_jetty_gzip_sync_flush | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_sync_flush(self, org_apache_felix_jetty_gzip_sync_flush: ConfigNodePropertyBoolean):\n\n self._org_apache_felix_jetty_gzip_sync_flush = org_apache_felix_jetty_gzip_sync_flush",
"def org_apache_felix_jetty_gzip_compression_level(self) -> ConfigNodePropertyInteger:\n r... | [
"0.76201624",
"0.5769236",
"0.5625297",
"0.53357136",
"0.53206384",
"0.51034576",
"0.5037347",
"0.49812168",
"0.48897785",
"0.4861266",
"0.47103548",
"0.4587992",
"0.45280266",
"0.45247605",
"0.4517819",
"0.4514443",
"0.44719723",
"0.44154698",
"0.4412691",
"0.43996748",
"0.4... | 0.7742936 | 0 |
Sets the org_apache_felix_jetty_gzip_sync_flush of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_sync_flush(self, org_apache_felix_jetty_gzip_sync_flush: ConfigNodePropertyBoolean):
self._org_apache_felix_jetty_gzip_sync_flush = org_apache_felix_jetty_gzip_sync_flush | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_sync_flush(self) -> ConfigNodePropertyBoolean:\n return self._org_apache_felix_jetty_gzip_sync_flush",
"def org_apache_felix_jetty_gzip_compression_level(self, org_apache_felix_jetty_gzip_compression_level: ConfigNodePropertyInteger):\n\n self._org_apache_felix_jetty... | [
"0.75525635",
"0.5627223",
"0.5533555",
"0.54060286",
"0.53085715",
"0.5185726",
"0.5185293",
"0.4997023",
"0.49140742",
"0.49078682",
"0.47535795",
"0.47447357",
"0.47380558",
"0.47305536",
"0.47288877",
"0.47280365",
"0.4712582",
"0.4704555",
"0.47044906",
"0.47025383",
"0.... | 0.8502689 | 0 |
Gets the org_apache_felix_jetty_gzip_excluded_user_agents of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_excluded_user_agents(self) -> ConfigNodePropertyArray:
return self._org_apache_felix_jetty_gzip_excluded_user_agents | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_excluded_user_agents(self, org_apache_felix_jetty_gzip_excluded_user_agents: ConfigNodePropertyArray):\n\n self._org_apache_felix_jetty_gzip_excluded_user_agents = org_apache_felix_jetty_gzip_excluded_user_agents",
"def filter_safe_user_agents(self) -> ConfigNodePropertyArr... | [
"0.79968405",
"0.6634242",
"0.6403503",
"0.62881273",
"0.6186381",
"0.6147151",
"0.6069847",
"0.5719",
"0.57002604",
"0.5649879",
"0.5540158",
"0.5431422",
"0.5322748",
"0.5306676",
"0.52635664",
"0.52579814",
"0.5188441",
"0.5188441",
"0.51553017",
"0.5154731",
"0.51107174",... | 0.86884475 | 0 |
Sets the org_apache_felix_jetty_gzip_excluded_user_agents of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_excluded_user_agents(self, org_apache_felix_jetty_gzip_excluded_user_agents: ConfigNodePropertyArray):
self._org_apache_felix_jetty_gzip_excluded_user_agents = org_apache_felix_jetty_gzip_excluded_user_agents | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_excluded_user_agents(self) -> ConfigNodePropertyArray:\n return self._org_apache_felix_jetty_gzip_excluded_user_agents",
"def filter_safe_user_agents(self, filter_safe_user_agents: ConfigNodePropertyArray):\n\n self._filter_safe_user_agents = filter_safe_user_agents"... | [
"0.7649619",
"0.60233593",
"0.5984534",
"0.5948029",
"0.5899216",
"0.5882054",
"0.5842793",
"0.56277424",
"0.5497408",
"0.5446978",
"0.5370564",
"0.5225579",
"0.5139488",
"0.501105",
"0.49703276",
"0.49434593",
"0.4915729",
"0.48539138",
"0.48097253",
"0.47464195",
"0.4731984... | 0.82919717 | 0 |
Gets the org_apache_felix_jetty_gzip_included_methods of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_included_methods(self) -> ConfigNodePropertyArray:
return self._org_apache_felix_jetty_gzip_included_methods | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_included_methods(self, org_apache_felix_jetty_gzip_included_methods: ConfigNodePropertyArray):\n\n self._org_apache_felix_jetty_gzip_included_methods = org_apache_felix_jetty_gzip_included_methods",
"def org_apache_felix_jetty_gzip_excluded_methods(self) -> ConfigNodeProper... | [
"0.782848",
"0.7193432",
"0.7175871",
"0.67655295",
"0.6323595",
"0.6267169",
"0.62545455",
"0.5965044",
"0.5729539",
"0.571327",
"0.5546844",
"0.5320931",
"0.5284738",
"0.52795506",
"0.51964617",
"0.5108812",
"0.5038771",
"0.5032656",
"0.49762782",
"0.4964642",
"0.4933146",
... | 0.87033314 | 0 |
Sets the org_apache_felix_jetty_gzip_included_methods of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_included_methods(self, org_apache_felix_jetty_gzip_included_methods: ConfigNodePropertyArray):
self._org_apache_felix_jetty_gzip_included_methods = org_apache_felix_jetty_gzip_included_methods | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_included_methods(self) -> ConfigNodePropertyArray:\n return self._org_apache_felix_jetty_gzip_included_methods",
"def org_apache_felix_jetty_gzip_excluded_methods(self, org_apache_felix_jetty_gzip_excluded_methods: ConfigNodePropertyArray):\n\n self._org_apache_felix... | [
"0.7561679",
"0.6773122",
"0.66826427",
"0.66260004",
"0.63912",
"0.6294382",
"0.60962415",
"0.6032009",
"0.55651724",
"0.53901464",
"0.5340616",
"0.53070307",
"0.5062725",
"0.4970581",
"0.48865408",
"0.4868912",
"0.4856106",
"0.48545745",
"0.47781938",
"0.4765087",
"0.475418... | 0.8251781 | 0 |
Gets the org_apache_felix_jetty_gzip_excluded_methods of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_excluded_methods(self) -> ConfigNodePropertyArray:
return self._org_apache_felix_jetty_gzip_excluded_methods | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_excluded_methods(self, org_apache_felix_jetty_gzip_excluded_methods: ConfigNodePropertyArray):\n\n self._org_apache_felix_jetty_gzip_excluded_methods = org_apache_felix_jetty_gzip_excluded_methods",
"def org_apache_felix_jetty_gzip_included_methods(self) -> ConfigNodeProper... | [
"0.7679581",
"0.7178411",
"0.71659577",
"0.6717624",
"0.66323245",
"0.6262904",
"0.625716",
"0.6055317",
"0.6010886",
"0.5653586",
"0.56486136",
"0.56155777",
"0.5587748",
"0.5570899",
"0.5568406",
"0.5402669",
"0.5382714",
"0.5347153",
"0.5339512",
"0.53226024",
"0.5274439",... | 0.85521764 | 0 |
Sets the org_apache_felix_jetty_gzip_excluded_methods of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_excluded_methods(self, org_apache_felix_jetty_gzip_excluded_methods: ConfigNodePropertyArray):
self._org_apache_felix_jetty_gzip_excluded_methods = org_apache_felix_jetty_gzip_excluded_methods | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_excluded_methods(self) -> ConfigNodePropertyArray:\n return self._org_apache_felix_jetty_gzip_excluded_methods",
"def org_apache_felix_jetty_gzip_included_methods(self, org_apache_felix_jetty_gzip_included_methods: ConfigNodePropertyArray):\n\n self._org_apache_felix... | [
"0.7596461",
"0.67210865",
"0.6503893",
"0.61779994",
"0.61685634",
"0.6152497",
"0.61162174",
"0.5951266",
"0.57981676",
"0.5475935",
"0.53768015",
"0.51953065",
"0.51567495",
"0.51502126",
"0.5099165",
"0.5046659",
"0.49988592",
"0.493982",
"0.49326912",
"0.491482",
"0.4849... | 0.8101449 | 0 |
Gets the org_apache_felix_jetty_gzip_included_paths of this OrgApacheFelixHttpProperties. | def org_apache_felix_jetty_gzip_included_paths(self) -> ConfigNodePropertyArray:
return self._org_apache_felix_jetty_gzip_included_paths | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"def org_apache_felix_jetty_gzip_included_paths(self, org_apache_felix_jetty_gzip_included_paths: ConfigNodePropertyArray):\n\n self._org_apache_felix_jetty_gzip_included_paths = org_apache_felix_jetty_gzip_included_paths",
"def org_apache_felix_jetty_gzip_excluded_paths(self) -> ConfigNodePropertyArray:\n... | [
"0.772143",
"0.70851415",
"0.6929693",
"0.6318875",
"0.63138014",
"0.62198323",
"0.6147367",
"0.5826809",
"0.5818224",
"0.57242304",
"0.56262887",
"0.5497999",
"0.5493991",
"0.54020536",
"0.54011637",
"0.53721905",
"0.533718",
"0.5306058",
"0.5260069",
"0.5144514",
"0.5128768... | 0.86094093 | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.