Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,484 for replaced (0.2 sec)

  1. testing/internal-performance-testing/src/integTest/groovy/org/gradle/performance/fixture/IdProviderGradleVsMavenPerformanceTest.groovy

            when:
            runner.testGroup = "group"
    
            then:
            runner.testId == "if no test id is set, the test method name is used"
        }
    
        def "if test id is set, it is not replaced"() {
            when:
            runner.testGroup = "group"
            runner.testId = "Another id"
    
            then:
            runner.testId == "Another id"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/materialize_passthrough_op.mlir

    // RUN: tf-opt -allow-unregistered-dialect -tf-materialize-passthrough-op %s  | FileCheck %s
    
    
    // Check that the MlirPassthroughOp is eliminated and replaced by its attached
    // MLIR module.
    
    // CHECK-LABEL: func @main
    func.func @main(%arg0 : tensor<10xf32>, %arg1 : tensor<10xf32>) -> tensor<10x10xf32> {
    // CHECK-SAME: (%[[ARG0:.*]]: tensor<10xf32>, %[[ARG1:.*]]: tensor<10xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 10:34:48 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/legacy-fed-input-without-inputs.pbtxt

    # Verify that invalid LegacyFedInput ops without any inputs are replaced with
    # Placeholder ops.
    
    # CHECK: func @main(%arg0: tensor<f32>)
    # CHECK-NOT: LegacyFedInput
    
    # If input data type isn't specified, uses the one in the graph
    # NODATATYPE: func @main(%arg0: tensor<f32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/util/internal/ToBeImplemented.java

     *
     * <p>This annotation replaces {@literal @}{@link groovy.test.NotYetImplemented}.
     * The problem with {@code NotYetImplemented} is that it succeeds no matter what causes the marked test
     * to fail. Tests like that can pass because the expected failure is still present, or even if the
     * expected failure is replaced by some other failure. It's better to write a test that explicitly
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

            then:
            executedAndNotSkipped ":run"
            outputFile.text == "different"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/12832")
        def "classpath can be replaced with a file collection including the replaced value"() {
            given:
            buildFile.text = """
                apply plugin: "java"
    
                task run(type: JavaExec) {
                    classpath = project.layout.files(compileJava)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ElementWarningsRenderer.java

                caution.appendChild(para);
                para.appendChild(document.createTextNode(String.format("Note: This %s has been replaced by %s.", type, elementDoc.getReplacement())));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top