Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for output24 (0.23 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.yaml

    zirain <******@****.***> 1703405786 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/routes/istio-gateway-http-route-prefix/output.txt

    Jacek Ewertowski <******@****.***> 1701261434 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 378 bytes
    - Viewed (0)
  3. src/cmd/go/internal/cache/cache.go

    type ActionID [HashSize]byte
    
    // An OutputID is a cache output key, the hash of an output of a computation.
    type OutputID [HashSize]byte
    
    // Cache is the interface as used by the cmd/go.
    type Cache interface {
    	// Get returns the cache entry for the provided ActionID.
    	// On miss, the error type should be of type *entryNotFoundError.
    	//
    	// After a success call to Get, OutputFile(Entry.OutputID) must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r85/TestLauncherDebugCrossVersionTest.groovy

            setup:
            sampleBuildWithTest()
    
            when:
            String output1 = runTaskAndTestClassUsing(firstDebug)
            String output2 = runTaskAndTestClassUsing(secondDebug)
    
            then:
            assertTestDebugMode(output1, firstDebug)
            assertTestDebugMode(output2, secondDebug)
    
            where:
            scenarioName                     | firstDebug | secondDebug
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 08:00:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

                    }
                    outputs.files files(fileList) withPropertyName("out")
                    def output1 = project.file("build/output1.txt")
                    def output2 = project.file("build/output2.txt")
                    doLast {
                        output1.parentFile.mkdirs()
                        output1 << "data"
                        if (!System.getProperty("changedCardinality")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/end2end/conv_2d.pbtxt

          type: DT_FLOAT
        }
      }
    }
    node {
      name: "output_0"
      op: "Identity"
      input: "conv_net_2d_1/Relu"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
    }
    library {
    }
    
    # CHECK: 'main' inputs:
    # CHECK-NEXT: name: 'input'
    # CHECK-NEXT: 'main' outputs:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 28 06:29:38 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  7. tensorflow/c/while_loop_test.cc

      params_->body_outputs[1] = params_->body_inputs[1];
    
      // Finalize while loop
      ExpectOK();
    
      // Validate while loop outputs returned by TF_FinishWhile()
      EXPECT_TRUE(outputs_[0].oper != nullptr);
      EXPECT_GE(outputs_[0].index, 0);
      EXPECT_TRUE(outputs_[1].oper != nullptr);
      EXPECT_GE(outputs_[1].index, 0);
    
      // Check that cond and body inputs are not present
      for (int i = 0; i < params_->ninputs; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_main_function.mlir

      }
    
      func.func @mul1(%arg0: tensor<1xf32> {tf_saved_model.index_path = ["y"]}, %arg1: tensor<1xf32> {tf_saved_model.index_path = ["x"]}) -> (tensor<1xf32> {tf_saved_model.index_path = ["output_0"]}) attributes {tf.entry_function = {inputs = "mul1_y:0,mul1_x:0", outputs = "output:0"}, tf_saved_model.exported_names = ["mul1"]} {
        %0 = "tf.Mul"(%arg1, %arg0) : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
        func.return %0 : tensor<1xf32>
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. test/fixedbugs/issue23545.go

    		panic("FAIL")
    	}
    }
    
    func dummyID(x int) [Size]interface{} {
    	var out [Size]interface{}
    	out[0] = x
    	return out
    }
    
    const Size = 32
    
    type OutputID [Size]interface{}
    
    //go:noinline
    func Get() OutputID {
    	return dummyID(1234)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 10 01:20:45 UTC 2018
    - 557 bytes
    - Viewed (0)
  10. tensorflow/cc/framework/while_gradients_test.cc

          [](const Scope& s, const std::vector<Output>& inputs, Output* output) {
            *output = ops::Less(s, inputs[0], 10);
            return s.status();
          },
          [](const Scope& s, const std::vector<Output>& inputs,
             std::vector<Output>* outputs) {
            outputs->push_back(ops::AddN(s, {inputs[0], inputs[1]}));
            outputs->push_back(ops::AddN(s, {inputs[1], 1}));
            outputs->push_back(inputs[2]);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 27 20:32:17 UTC 2017
    - 7.7K bytes
    - Viewed (0)
Back to top