- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for Partition (0.09 seconds)
-
fastapi/security/utils.py
def get_authorization_scheme_param( authorization_header_value: Optional[str], ) -> tuple[str, str]: if not authorization_header_value: return "", "" scheme, _, param = authorization_header_value.partition(" ")
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 21:25:59 GMT 2025 - 286 bytes - Click Count (0) -
scripts/mkdocs_hooks.py
missing_translation_content = get_missing_translation_content(config.docs_dir) header = "" body = markdown if markdown.startswith("#"): header, _, body = markdown.partition("\n\n") return f"{header}\n\n{missing_translation_content}\n\n{body}"
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 21:25:59 GMT 2025 - 5.6K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt
val Project.testDistributionServerUrl: Provider<String> get() = gradleProperty(TEST_DISTRIBUTION_SERVER_URL) // Controls the test distribution partition size. The test classes smaller than this value will be merged into a "partition" val Project.maxTestDistributionPartitionSecond: Long? get() = systemProperty(TEST_DISTRIBUTION_PARTITION_SIZE).orNull?.toLong() val Project.maxParallelForks: Int
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Dec 18 22:01:30 GMT 2025 - 17.7K bytes - Click Count (0) -
fastapi/security/http.py
data = b64decode(param).decode("ascii") except (ValueError, UnicodeDecodeError, binascii.Error) as e: raise self.make_not_authenticated_error() from e username, separator, password = data.partition(":") if not separator: raise self.make_not_authenticated_error() return HTTPBasicCredentials(username=username, password=password) class HTTPBearer(HTTPBase): """
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 21:25:59 GMT 2025 - 13.2K bytes - Click Count (0) -
src/main/resources/fess_label_fr.properties
labels.searchlog_usersessionid=ID utilisateur labels.searchlog_requestedtime=Heure labels.searchlog_accesstype=Type d'accès labels.maintenance_title_configuration=Maintenance labels.number_of_shards_for_doc=Nombre de partitions labels.auto_expand_replicas_for_doc=Développer automatiquement les répliques labels.clear_crawler_index=Index du robot d'exploration labels.clear_crawler_index_button=Supprimer l'index du robot d'exploration
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 49.2K bytes - Click Count (0)