Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,365 for replaced (0.43 sec)

  1. tensorflow/c/experimental/ops/BUILD

    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    # Experimental ops. These will eventually be replaced by machine-generated versions.
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "array_ops",
        srcs = [
            "array_ops.cc",
        ],
        hdrs = [
            "array_ops.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactSelectionDetails.java

         * Removes all artifact selectors, if any.
         */
        void withoutArtifactSelectors();
    
        /**
         * Adds an artifact to substitute. The first time this method is called, the original artifacts
         * are replaced with the artifact defined by this method call. If you wish to add artifacts to
         * the original query, you need to call {@link #getRequestedSelectors()} and add them using
         * {@link #selectArtifact(DependencyArtifactSelector)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

                  || countMap.replace(element, existingCounter, newCounter);
            }
          } else {
            if (existingCounter.compareAndSet(oldValue, newCount)) {
              if (newCount == 0) {
                // Just CASed to 0; remove the entry to clean up the map. If the removal fails,
                // another thread has already replaced it with a new counter, which is fine.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/device_attribute_to_launch.mlir

      // CHECK: device = "CPU:0"
      // CHECK: "tf.opA"
      // CHECK-NOT device
      // CHECK: tf_device.return
      "tf.opA"() {device = "CPU:0"} : () -> tensor<i1>
      func.return
    }
    
    // Tests that usage of wrapped op is replaced by launch return
    // CHECK-LABEL: func @launch_return
    func.func @launch_return() -> tensor<i1> {
      // CHECK: %[[LAUNCH_OUT:.*]] = "tf_device.launch"
      // CHECK: device = "CPU:0"
      // CHECK: %[[A_OUT:.*]] = "tf.opA"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu-annotate-dynamic-shape-inputs.mlir

      // TODO(b/292540052): Below tf.addV2 instruction is replaced with just
      // returning arg0 due to the workaround mentioned in the above bug. Revert
      // this after the bug is fixed.
        // %0 = "tf.AddV2"(%arg0, %arg1) : (tensor<2048xi32>, tensor<2048xi32>) -> tensor<2048xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/xml/XmlEscapers.java

        // Unsafe characters are replaced with the Unicode replacement character.
        builder.setUnsafeReplacement("\uFFFD");
    
        /*
         * Except for \n, \t, and \r, all ASCII control characters are replaced with the Unicode
         * replacement character.
         *
         * Implementation note: An alternative to the following would be to make a map that simply
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  7. hack/build-cross.sh

    # platforms.
    # Usage: `hack/build-cross.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    echo "NOTE: $0 has been replaced by 'make cross'"
    echo
    echo "The equivalent of this invocation is: "
    echo "    make cross"
    echo
    echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/AmbiguousVariantSelectionException.java

    import java.util.Collections;
    
    /**
     * This type is {@code deprecated} and will be removed in Gradle 9.0.
     *
     * This is temporarily available for migration only.
     * This exception class is internal and has been replaced by {@link ArtifactVariantSelectionException}, which is also internal.
     * If possible, catch a {@link RuntimeException} instead to avoid depending on Gradle internal classes.
     */
    @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 21:57:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_sum_mismatch.txt

    	$WORK${/}gopath${/}src${/}a${/}go.sum:     h1:U1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
    
    SECURITY ERROR
    This download does NOT match an earlier download recorded in go.sum.
    The bits may have been replaced on the origin server, or an attacker may
    have intercepted the download attempt.
    
    For more information, see 'go help module-auth'.
    -- go.work --
    go 1.18
    
    use ./a
    use ./b
    -- a/go.mod --
    go 1.18
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. hack/verify-all.sh

    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # For help output
    ARGHELP=""
    if [[ -n "${KUBE_VERIFY_GIT_BRANCH:-}" ]]; then
        ARGHELP="BRANCH=${KUBE_VERIFY_GIT_BRANCH}"
    fi
    
    echo "NOTE: ${BASH_SOURCE[0]} has been replaced by 'make verify'"
    echo
    echo "The equivalent of this invocation is: "
    echo "    make verify ${ARGHELP}"
    echo
    echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 16 15:58:13 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top