Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 149 for output$1 (0.23 sec)

  1. ci/official/containers/linux_arm64/devel.usertools/get_test_list.sh

    #
    # Usage: get_test_list.sh OUTPUT BAZEL_TEST_COMMAND...
    # Writes the list of tests that would be run from BAZEL_TEST_COMMAND to OUTPUT.
    # Hides all extra output and always exits with success for now.
    
    OUTPUT=$1
    shift
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_source_order.txt

    package p
    
    import "fmt"
    
    var n int
    
    func Example_Z() {
    	n++
    	fmt.Println(n)
    	// Output: 1
    }
    
    func Example_A() {
    	n++
    	fmt.Println(n)
    	// Output: 2
    }
    -- example2_test.go --
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 20:40:29 UTC 2020
    - 992 bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPackerPermissionTest.groovy

            _ * sourceOutputFile._
            0 * _
    
            when:
            def input = new ByteArrayInputStream(output.toByteArray())
            unpack input, prop(FILE, targetOutputFile)
    
            then:
            targetOutputFile.text == "output"
            1 * filePermissionAccess.chmod(targetOutputFile, unixMode)
            _ * targetOutputFile._
            0 * _
    
            where:
            mode << [ "0644", "0755" ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

                        one: file("build/output-1.txt"),
                        two: file("build/output-2.txt")
                    ]
                }
            """
    
            when:
            withBuildCache().run "customTask"
            then:
            executedAndNotSkipped ":customTask"
            file("build/output-1.txt").text == "one"
            file("build/output-2.txt").text == "two"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DebugLoggerWarningActionTest.groovy

            def action = createDebugLoggerWarning()
            when:
            action.execute(listener)
            then:
            def output = TextUtil.normaliseFileSeparators(log.toString())
            assertDoublePrintInOutput(output)
            1 * delegateAction.execute(_)
        }
    
        def "prints twice when debugging is enabled and an exception is thrown"() {
            delegateAction.execute(listener) >> { throw new RuntimeException("Boom!") }
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/inst_test.go

    	if len(r) != 1 {
    		t.Fatalf("Wanted 1 instantiations of Sort function, got %d\n", len(r))
    	}
    
    	// Actually run the test and make sure output is correct.
    	cmd = testenv.Command(t, gotool, "run", filepath.Join("testdata", filename))
    	if output, err = cmd.CombinedOutput(); err != nil {
    		t.Fatalf("Failed: %v:\nOut: %s\n", err, output)
    	}
    	out, err := os.ReadFile(filepath.Join("testdata", outname))
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filterlatency/filterlatency_test.go

    	if callCount != 1 {
    		t.Errorf("expected the given handler to be invoked once, but was actually invoked %d times", callCount)
    	}
    	output := fakeRecorder.Ended()
    	if len(output) != 1 {
    		t.Fatalf("got %d; expected len(output) == 1", len(output))
    	}
    	span := output[0]
    	if span.Name() != filterName {
    		t.Fatalf("got %s; expected span.Name == my-filter", span.Name())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_resource_partitioning.mlir

      // CHECK:      [[OUTPUT:%.+]]:2 = "tf.TPUPartitionedOutputV2"([[COMPUTATION]])
      // CHECK-SAME: _XlaSharding = ""
      // CHECK-SAME: partition_dims = []
      // CHECK-DAG:  "tf.AssignVariableOp"([[ARG0]], [[OUTPUT]]#0)
      // CHECK-DAG:  "tf.AssignVariableOp"([[ARG1]], [[OUTPUT]]#1)
      "tf.AssignVariableOp"(%0, %2) : (tensor<!tf_type.resource<tensor<i32>>>, tensor<i32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. tensorflow/cc/gradients/nn_grad.cc

      // Softmax gradient with cross entropy logits function.
      // We multiply the backprop for cost with the gradients - op.output[1].
      // There is no gradient for labels.
    
      // The outputs of the network are at input index 0.
      auto logits = op.input(0);
      // The "truth" labels are at index 1.
      auto softmax_grad = op.output(1);
    
      // The loss is the output at index 0, and backprop is the output at index 1.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 23:34:33 UTC 2022
    - 24.5K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/gradients_test.cc

        // Add StopGradients according to 'stop_outputs'.
        auto out0 =
            stop_outputs[0] ? StopGradient(scope_, y.output[0]) : y.output[0];
        auto out1 =
            stop_outputs[1] ? StopGradient(scope_, y.output[1]) : y.output[1];
        auto out2 =
            stop_outputs[2] ? StopGradient(scope_, y.output[2]) : y.output[2];
    
        auto g0 = Const(scope_, {1, 2, 3, 4, 5, 6, 7, 8}, {2, 4});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
Back to top