Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 819 for input1 (0.18 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

            connection.queueIncoming(input1)
            connection.queueIncoming(input2)
            connection.queueIncoming(closeInput)
            received.await()
            daemonConnection.stop()
    
            then:
            1 * handler.onInput(input1)
            1 * handler.onInput(input2)
            1 * handler.onEndOfInput() >> { received.countDown() }
            0 * handler._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. tensorflow/c/while_loop_test.cc

      Init(2);
      // Create nested loop:
      //  while (input1 < 6) {
      //    inner_input1 = input1
      //    while (inner_input1 < 3) {
      //      input2 += 1
      //      inner_input1 += 2
      //    }
      //    input1 += input2
      //  }
      //
      // Expected execution with initial values input1 = input2 = 0:
      //
      // outer inner               inner_
      // step# step# input1 input2 input1
      // ------------------------------------
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

    // CHECK-LABEL: @main_stream_0
    // CHECK-SAME: ([[input0:%.*]]: !tf_mlrt.tensor, [[promise_b:%.*]]: !mlrt.promise)
    func.func @main_stream_0(%input0: tensor<i32>, %promise_b: !mlrt.promise) {
      %const = "tf.Const"() {__op_key = 0 : i32, value = dense<1> : tensor<i32>} : () -> tensor<i32>
      // CHECK: [[a:%.*]] = tf_mlrt.executeop([[input0]],
      // CHECK-SAME: AddV2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

        }
    
        private static String customTaskCode(String input1, String input2) {
            """
                ${customTaskImpl()}
                task customTask(type: CustomTask){
                    input1 = '$input1'
                    input2 = '$input2'
                }
            """
        }
    
        private static String customTaskImpl() {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. pkg/spiffe/spiffe_test.go

    		},
    		{
    			name:         "Success when response contains multiple certs",
    			in:           input1,
    			extraCerts:   serverCerts,
    			statusCode:   http.StatusOK,
    			body:         validSpiffeX509BundleWithMultipleCerts,
    			wantNumCerts: 2,
    		},
    		{
    			name:        "Bundle endpoint is not trusted",
    			in:          input1,
    			extraCerts:  nil,
    			statusCode:  http.StatusOK,
    			body:        validSpiffeX509Bundle,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildChangeReportingIntegrationTest.groovy

        }
    
        def "can increase the quiet period"() {
            given:
            inputDir.createDir("input1")
            inputDir.createDir("input2")
            def inputFile1 = inputDir.file("input1/input.txt")
            def inputFile2 = inputDir.file("input2/input.txt")
    
            when:
            succeeds("theTask", "-D${StartParameterBuildOptions.ContinuousBuildQuietPeriodOption.PROPERTY_NAME}=5000")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

            file("input.txt").createNewFile()
            file("input-nested.txt").createNewFile()
            file("input1.txt").createNewFile()
            file("input2.txt").createNewFile()
            file("inputs").createDir()
            file("inputs/inputA.txt").createNewFile()
            file("inputs/inputB.txt").createNewFile()
            file("inputs1").createDir()
            file("inputs2").createDir()
    
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  8. cmd/postpolicyform.go

    // to the passed operator
    func checkPolicyCond(op string, input1, input2 string) bool {
    	switch op {
    	case policyCondEqual:
    		return input1 == input2
    	case policyCondStartsWith:
    		return strings.HasPrefix(input1, input2)
    	}
    	return false
    }
    
    // checkPostPolicy - apply policy conditions and validate input values.
    // (http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-HTTPPOSTConstructPolicy.html)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops_invalid.mlir

    }
    
    // -----
    
    // Check number of replicated inputs is evenly divisible by 'n'.
    func.func @verifier_replicate_bad_operandSegmentSizes(%arg0: tensor<*xi32>) {
      "tf_device.replicate" (%arg0, %arg0, %arg0, %arg0) ({
    // expected-error@-1 {{'tf_device.replicate' op expects number of replicated inputs (4) to be evenly divisible by 'n' (3)}}
      ^entry(%input0: tensor<*xi32>, %input1: tensor<*xi32>):
        tf_device.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/mlrt/tpu_conversions.mlir

    // Test the output from TPU op is properly awaited before its use by map_fn.
    // CHECK-LABEL: @main
    // CHECK-SAME: ([[input0:%.*]]: !tf_mlrt.tensor, [[input1:%.*]]: !tf_mlrt.tensor)
    func.func @main(%input0: tensor<i32>, %input1: tensor<i32>, %input2: tensor<!tf_type.variant<tensor<*xf32>>> ) -> tensor<i32> {
      %0 = "tf.Cast"(%input0) {__op_key = 0: i32, device = "/device:CPU:0"} : (tensor<i32>) -> tensor<f32>
      // CHECK: tf_mlrt_tpu.compile_and_execute
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 21:25:31 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top