Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 556 for input1 (0.34 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. 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)
  7. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandlerTest.groovy

            when:
            def input = ask { it.selectOption(TEXT, [11, 12, 13], 12) }
    
            then:
            1 * userInputReader.readInput() >> new UserInputReader.TextResponse("")
            0 * userInputHandler._
    
            and:
            input == 12
        }
    
        def "select question returns default on end-of-input"() {
            when:
            def input = ask { it.selectOption(TEXT, [11, 12, 13], 12) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_resource_partitioning.mlir

      // CHECK-DAG:  [[READ1:%.+]] = "tf.ReadVariableOp"([[ARG1]])
      // CHECK:      [[INPUT0:%.+]] = "tf.TPUPartitionedInputV2"([[READ0]], [[READ1]])
      // CHECK-DAG:  [[READ2:%.+]] = "tf.ReadVariableOp"([[ARG0]])
      // CHECK-DAG:  [[READ3:%.+]] = "tf.ReadVariableOp"([[ARG1]])
      // CHECK:      [[INPUT1:%.+]] = "tf.TPUPartitionedInputV2"([[READ2]], [[READ3]])
    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/compiler/mlir/quantization/stablehlo/tests/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.mlir

      // CHECK-SAME: %[[INPUT1:.*]]: tensor<1024x3xf32>, %[[INPUT2:.*]]: tensor<1024x3xf32>
      // CHECK: %[[CONSTANT2:.*]] = stablehlo.constant dense<1.000000e+03> : tensor<1024x3xf32>
      // CHECK: %[[ADD:.*]] = stablehlo.add %[[INPUT1]], %[[CONSTANT2]] : tensor<1024x3xf32>
      // CHECK: %[[MUL:.*]] = stablehlo.multiply %[[INPUT1]], %[[INPUT2]] : tensor<1024x3xf32>
      // CHECK: return %[[ADD]], %[[MUL]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                test {
                    inputs1 = files("input1.txt")
                    inputs2 = files("input2.txt", "input3.txt")
                }
            """
    
            when:
            succeeds "test", "--info"
    
            then:
            executedAndNotSkipped ':test'
            outputContains "Input property 'inputs1' file ${file("input2.txt")} has been removed."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top