- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 202 for Combiner (0.1 sec)
-
guava/src/com/google/common/primitives/Booleans.java
for (int i = end - 1; i >= start; i--) { if (array[i] == target) { return i; } } return -1; } /** * Returns the values from each provided array combined into a single array. For example, {@code * concat(new boolean[] {a, b}, new boolean[] {}, new boolean[] {c}} returns the array {@code {a, * b, c}}. * * @param arrays zero or more {@code boolean} arrays
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 20.4K bytes - Viewed (0) -
tensorflow/c/eager/parallel_device/parallel_device_lib.cc
} TFE_TensorHandleGetStatus(components[0].get(), status); if (!status->status.ok()) { return nullptr; } TF_DataType dtype = TFE_TensorHandleDataType(components[0].get()); // Verify that the combined TensorHandle's dtype matches all of the component // dtypes. for (TensorHandlePtr& component : components) { TFE_TensorHandleGetStatus(component.get(), status); if (!status->status.ok()) {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 21 04:14:14 UTC 2024 - 25.9K bytes - Viewed (0) -
licenses/github.com/hashicorp/errwrap/LICENSE
Secondary License. 1.6. “Executable Form” means any form of the work other than Source Code Form. 1.7. “Larger Work” means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. 1.8. “License” means this document. 1.9. “Licensable”
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Oct 26 02:47:39 UTC 2019 - 15.6K bytes - Viewed (0) -
impl/maven-core/pom.xml
<pluginManagement> <plugins> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes combine.children="append"> <exclude>lifecycle-executor.txt</exclude> <exclude>plugin-manager.txt</exclude> <exclude>project-builder.txt</exclude>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 13:40:16 UTC 2024 - 15.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableRangeMap.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 14.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TopKSelector.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 11.1K bytes - Viewed (0) -
cmd/iam.go
} } // Defensive code: Do not allow any operation if no policy is found in the session token if !isOwnerDerived && len(policies) == 0 { return false } // 2. Combine the mapped policies into a single combined policy. var combinedPolicy policy.Policy // Policies were found, evaluate all of them. if !isOwnerDerived { availablePoliciesStr, c := sys.store.MergePolicies(strings.Join(policies, ","))
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 29 16:01:48 UTC 2024 - 74.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java
ImmutableMap.<String, Integer>builder().put("one", 1); ImmutableMap.Builder<String, Integer> zat = ImmutableMap.<String, Integer>builder().put("two", 2).put("three", 3); assertMapEquals(zis.combine(zat).build(), "one", 1, "two", 2, "three", 3); } // TODO(b/172823566): Use mainline testToImmutableMap once CollectorTester is usable to java7. public void testToImmutableMap_exceptionOnDuplicateKey_java7_combine() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 36.6K bytes - Viewed (0) -
docs/en/docs/contributing.md
$ python ./scripts/docs.py build-all Building docs for: en Building docs for: es Successfully built docs for: es ``` </div> This builds all those independent MkDocs sites for each language, combines them, and generates the final output at `./site/`. Then you can serve that with the command `serve`: <div class="termy"> ```console // Use the command "serve" after running "build-all"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Aug 25 02:44:06 UTC 2024 - 12.7K bytes - Viewed (0) -
docs/en/docs/tutorial/bigger-applications.md
### Import `FastAPI` You import and create a `FastAPI` class as normally. And we can even declare [global dependencies](dependencies/global-dependencies.md){.internal-link target=_blank} that will be combined with the dependencies for each `APIRouter`: ```Python hl_lines="1 3 7" title="app/main.py" {!../../docs_src/bigger_applications/app/main.py!} ``` ### Import the `APIRouter`
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 18.4K bytes - Viewed (0)