Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 149 for output$1 (0.42 sec)

  1. tensorflow/c/experimental/ops/math_ops.cc

                AbstractTensorHandle** output, const char* name,
                const char* raw_device_name) {
      AbstractOperationPtr op_ptr(ctx->CreateOperation());
      TF_RETURN_IF_ERROR(op_ptr->Reset("Conj", raw_device_name));
      TF_RETURN_IF_ERROR(MaybeSetOpName(op_ptr.get(), name));
      TF_RETURN_IF_ERROR(op_ptr->AddInput(input));
      int num_retvals = 1;
      return op_ptr->Execute(absl::MakeSpan(output, 1), &num_retvals);
    }
    
    // Op: AddV2()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanConfigIntegrationTest.groovy

            scanPlugin.issuedNoPluginWarningCount(output, 1)
        }
    
        def "detects that the build scan plugin has been #description"() {
            given:
            scanPlugin.collectConfig = applied
    
            when:
            succeeds "t"
    
            then:
            output.contains("buildScan plugin applied: ${applied}")
            if (applied) {
                with(scanPlugin.attributes(output)) {
                    isTaskExecutingBuild()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. pkg/test/echo/proto/echo.proto

      string caCertFile = 7;
      // Skip verifying peer's certificate.
      bool insecureSkipVerify = 8;
    }
    
    message Alpn {
      repeated string value = 1;
    }
    
    message ForwardEchoResponse {
      repeated string output = 1;
    }
    
    enum ProxyProtoVersion {
      NONE = 0;
      V1 = 1;
      V2 = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/math/big/example_test.go

    	f := new(big.Float)
    	_, err := fmt.Sscan("1.19282e99", f)
    	if err != nil {
    		log.Println("error scanning value:", err)
    	} else {
    		fmt.Println(f)
    	}
    	// Output: 1.19282e+99
    }
    
    // This example demonstrates how to use big.Int to compute the smallest
    // Fibonacci number with 100 decimal digits and to test whether it is prime.
    func Example_fibonacci() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 16:15:32 UTC 2020
    - 4K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/punycode.go

    			}
    		}
    		if len(output) >= 1024 {
    			return "", punyError(encoded)
    		}
    		x := int32(len(output) + 1)
    		bias = adapt(i-oldI, x, oldI == 0)
    		n += i / x
    		i %= x
    		if n < 0 || n > utf8.MaxRune {
    			return "", punyError(encoded)
    		}
    		output = append(output, 0)
    		copy(output[i+1:], output[i:])
    		output[i] = n
    		i++
    	}
    	return string(output), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:36 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands.mlir

        }
        tf_executor.fetch %outputs#0, %outputs#1 : tensor<i1>, tensor<i32>
      }
      return
    }
    
    // CHECK: [[OUTPUT_0:%.*]], {{%.*}} = tf_executor.island wraps "tf.opA"() {_parallel_execution_ids = "p0:0"}
    // CHECK: [[OUTPUT_1:%.*]], {{%.*}} = tf_executor.island wraps "tf.opB"([[OUTPUT_0:%.*]]) {_parallel_execution_ids = "p0:0"}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskOutputsTest.groovy

            where:
            name    | type
            "files" | FILE
            "dirs"  | DIRECTORY
        }
    
        @Issue("https://github.com/gradle/gradle/issues/4085")
        def "can register more unnamed properties with method #method after properties have been queried"() {
            outputs."$method"("output-1")
            // Trigger naming properties
            outputs.hasOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:24 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/Fingerprint2011.java

        seedA += part1;
        seedB = rotateRight(seedB + seedA + part4, 51);
        long c = seedA;
        seedA += part2;
        seedA += part3;
        seedB += rotateRight(seedA, 23);
        output[0] = seedA + part4;
        output[1] = seedB + c;
      }
    
      /*
       * Compute an 8-byte hash of a byte array of length greater than 64 bytes.
       */
      private static long fullFingerprint(byte[] bytes, int offset, int length) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Dec 28 17:50:25 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    		}
    
    		delta := i - oldI
    		numPoints := len(output) + 1
    		firstTime := oldI == 0
    		if firstTime {
    			delta /= damp
    		} else {
    			delta /= 2
    		}
    		delta += delta / numPoints
    		k := 0
    		for delta > ((base-tmin)*tmax)/2 {
    			delta /= base - tmin
    			k += base
    		}
    		bias = k + ((base-tmin+1)*delta)/(delta+skew)
    
    		n += i / (len(output) + 1)
    		if n > utf8.MaxRune {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/Fingerprint2011.java

        seedA += part1;
        seedB = rotateRight(seedB + seedA + part4, 51);
        long c = seedA;
        seedA += part2;
        seedA += part3;
        seedB += rotateRight(seedA, 23);
        output[0] = seedA + part4;
        output[1] = seedB + c;
      }
    
      /*
       * Compute an 8-byte hash of a byte array of length greater than 64 bytes.
       */
      private static long fullFingerprint(byte[] bytes, int offset, int length) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Dec 28 17:50:25 UTC 2021
    - 6.5K bytes
    - Viewed (0)
Back to top