- Sort Score
- Result 10 results
- Languages All
Results 561 - 570 of 1,253 for gach (0.03 sec)
-
guava/src/com/google/common/collect/NullnessCasts.java
} /** Returns {@code null} as any type, even one that does not include {@code null}. */ @SuppressWarnings({"nullness", "TypeParameterUnusedInFormals", "ReturnMissingNullable"}) // The warnings are legitimate. Each time we use this method, we document why. @ParametricNullness static <T extends @Nullable Object> T unsafeNull() { return null; } private NullnessCasts() {}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 10 20:36:34 UTC 2022 - 3.5K bytes - Viewed (0) -
docs/features/interceptors.md
response.request().url(), (t2 - t1) / 1e6d, response.headers())); return response; } } ``` A call to `chain.proceed(request)` is a critical part of each interceptor’s implementation. This simple-looking method is where all the HTTP work happens, producing a response to satisfy the request. If `chain.proceed(request)` is being called more than once previous response bodies must be closed.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 8.1K bytes - Viewed (0) -
gradlew
esac then arg=$( cygpath --path --ignore --mixed "$arg" ) fi # Roll the args list around exactly as many times as the number of # args, so each arg winds up back in the position where it started, but # possibly modified. # # NB: a `for` loop captures its iteration list before it begins, so
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 24 09:00:26 UTC 2023 - 8.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/CloserTest.java
Closer closer = Closer.create(); closer.register(null); closer.close(); } /** * Asserts that an exception was thrown when trying to close each of the given throwables and that * each such exception was suppressed because of the given thrown exception. */ private void assertSuppressed(Suppression... expected) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 07 15:26:58 UTC 2024 - 11.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Dfs.java
return null; } /* domains that can contain DFS points to maps of roots for each */ HashMap domains = getTrustedDomains(auth); if (domains != null) { domain = domain.toLowerCase(); /* domain-based DFS root shares to links for each */ HashMap roots = (HashMap)domains.get(domain); if (roots != null) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.7K bytes - Viewed (0) -
docs/en/docs/tutorial/body.md
The JSON Schemas of your models will be part of your OpenAPI generated schema, and will be shown in the interactive API docs: <img src="/img/tutorial/body/image01.png"> And will also be used in the API docs inside each *path operation* that needs them: <img src="/img/tutorial/body/image02.png"> ## Editor support
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 16:58:19 UTC 2024 - 6.6K bytes - Viewed (0) -
android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java
} return builder.buildOrThrow(); } /** * Parses a trie node and returns the number of characters consumed. * * @param stack The prefixes that precede the characters represented by this node. Each entry of * the stack is in reverse order. * @param encoded The serialized trie. * @param start An index in the encoded serialized trie to begin reading characters from.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 13 19:20:43 UTC 2022 - 4K bytes - Viewed (0) -
docs/orchestration/docker-compose/README.md
* Replicate a service definition and change the name of the new service appropriately. * Update the command section in each service. * Add a new MinIO server instance to the upstream directive in the Nginx configuration file.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Mar 31 19:20:56 UTC 2023 - 3K bytes - Viewed (0) -
licenses/sigs.k8s.io/yaml/LICENSE
on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of,
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Oct 31 19:53:28 UTC 2023 - 15.8K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
The solution to the problems of having all the packages in the global environment is to use a **virtual environment for each project** you work on. A virtual environment is a **directory**, very similar to the global one, where you can install the packages for a project. This way, each project will have its own virtual environment (`.venv` directory) with its own packages. ```mermaid flowchart TB
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 24 03:16:23 UTC 2024 - 21.7K bytes - Viewed (0)