- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 47 for prebind (0.07 sec)
-
CHANGELOG/CHANGELOG-1.31.md
- Scheduler framework: Allowed PreBind implementations to return Pending and Unschedulable status codes. ([#125360](https://github.com/kubernetes/kubernetes/pull/125360), [@pohly](https://github.com/pohly))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Oct 23 12:18:32 UTC 2024 - 315.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/InvokableTest.java
Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); assertEquals(new TypeToken<Iterable<String>>() {}, delegate.getReturnType()); } public void testStaticMethod_exceptionTypes() throws Exception { Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); assertEquals(ImmutableList.of(), delegate.getExceptionTypes());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 30.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/InvokableTest.java
Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); assertEquals(new TypeToken<Iterable<String>>() {}, delegate.getReturnType()); } public void testStaticMethod_exceptionTypes() throws Exception { Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); assertEquals(ImmutableList.of(), delegate.getExceptionTypes());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 30.7K bytes - Viewed (0) -
ci/official/envs/nightly_upload
# limitations under the License. # ============================================================================== # IMPORTANT: trailing slash is required on GCS URIs, as it tells gcloud to # pretend the path is a directory. # 1. Upload nightlies TFCI_ARTIFACT_FINAL_GCS_ENABLE=1 TFCI_ARTIFACT_FINAL_GCS_SA_PATH="${KOKORO_KEYSTORE_DIR}/73361_tensorflow_release_binary_uploader_service_account"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Jun 17 20:45:36 UTC 2024 - 1.7K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java
addCssToHead(document); addJavascriptToHead(document); wrapH2InSectionTopic(document); addAnchorsForHeadings(document); document.body().prepend("<h1>Gradle Release Notes</h1>"); addTOC(document); wrapContentInContainer(document); String rewritten = document.body().html(); // Turn Gradle Jira issue numbers into issue links
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 03 05:02:20 UTC 2024 - 9.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/ObjectArrays.java
arraycopy(second, 0, result, first.length, second.length); return result; } /** * Returns a new array that prepends {@code element} to {@code array}. * * @param element the element to prepend to the front of {@code array} * @param array the array of elements to append * @return an array whose size is one larger than {@code array}, with {@code element} occupying
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 9K bytes - Viewed (0) -
ci/official/envs/versions_upload
# Release jobs are very basic. They don't use any caching or RBE, # but they do upload logs to resultstore. # IMPORTANT: trailing slash is required on GCS URIs, as it tells gcloud to # pretend the path is a directory. TFCI_ARTIFACT_FINAL_GCS_ENABLE=1 TFCI_ARTIFACT_FINAL_GCS_SA_PATH="${KOKORO_KEYSTORE_DIR}/73361_tensorflow_release_binary_uploader_service_account" TFCI_ARTIFACT_FINAL_GCS_URI="gs://tensorflow/versions"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Jul 16 21:54:22 UTC 2024 - 1.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ObjectArrays.java
arraycopy(second, 0, result, first.length, second.length); return result; } /** * Returns a new array that prepends {@code element} to {@code array}. * * @param element the element to prepend to the front of {@code array} * @param array the array of elements to append * @return an array whose size is one larger than {@code array}, with {@code element} occupying
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 9K bytes - Viewed (0) -
tensorflow/c/eager/parallel_device/BUILD
load("//tensorflow/core/platform:rules_cc.bzl", "cc_library") package( # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"], licenses = ["notice"], ) # Currently pybind extension shared objects must use only C API headers since # the C API has static initializers duplicated in the Python bindings. So we # need a second rule that omits .cc files, in # tensorflow/python:_pywrap_parallel_device.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 21 04:14:14 UTC 2024 - 5.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/utils/Os.java
* @param actualOsName the OS name to check against * @return true if the OS matches * */ public static boolean isFamily(String family, String actualOsName) { // windows probing logic relies on the word 'windows' in the OS boolean isWindows = actualOsName.contains(FAMILY_WINDOWS); boolean is9x = false; boolean isNT = false; if (isWindows) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.3K bytes - Viewed (0)