Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 163 for input_ (0.1 sec)

  1. 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)
  2. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningTasksIntegrationSpec.groovy

        }
    
        def "out-of-date when input file changes"() {
            given:
            def inputFile = file("input.txt")
            inputFile.text = "foo"
            buildFile << """
                ${keyInfo.addAsPropertiesScript()}
                signing {
                    ${signingConfiguration()}
                }
                task signCustomFile(type: Sign) {
                    sign(file("input.txt"))
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. tensorflow/c/ops_test.cc

    TEST(OpsTest, TestBasicOpRegistration) {
      TF_OpDefinitionBuilder* builder = TF_NewOpDefinitionBuilder("SomeOp");
      TF_OpDefinitionBuilderAddAttr(builder, "attr1: string");
      TF_OpDefinitionBuilderAddInput(builder, "input1: uint8");
      TF_OpDefinitionBuilderAddInput(builder, "input2: uint16");
      TF_OpDefinitionBuilderAddOutput(builder, "output1: uint32");
      TF_Status* status = TF_NewStatus();
      TF_RegisterOpDefinition(builder, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-defs.pbtxt

    node {
      name: "replicated_input_0"
      op: "Identity"
      input: "input0"
      input: "^TPUReplicateMetadata"
      attr {
        key: "T"
        value {
          type: DT_INT32
        }
      }
      attr {
        key: "_tpu_replicate"
        value {
          s: "cluster"
        }
      }
    }
    node {
      name: "replicated_input_1"
      op: "Identity"
      input: "input1"
      input: "^TPUReplicateMetadata"
      attr {
        key: "T"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/convert_tf_quant_ops_to_mhlo.mlir

      func.return %2 : tensor<3x2xf32>
    }
    
    // -----
    
    // CHECK-LABEL: func @uniform_quantized_add_bias_not_const
    func.func @uniform_quantized_add_bias_not_const(%input1: tensor<3x2xi32>, %input2: tensor<2xi32>) -> tensor<3x2xi32> {
      %input_scales = "tf.Const"() { value = dense<2.0> : tensor<f32> } : () -> tensor<f32>
      %input_zps = "tf.Const"() { value = dense<4> : tensor<i32> } : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. pkg/spiffe/spiffe_test.go

    	// the SPIFFE bundle endpoints.
    	serverCerts := []*x509.Certificate{s1.Certificate(), s2.Certificate()}
    
    	input1 := map[string]string{
    		"foo": s1.Listener.Addr().String(),
    	}
    	// This simulates the case when there are multiple different servers to talk to.
    	input2 := map[string]string{
    		"foo": s1.Listener.Addr().String(),
    		"bar": s2.Listener.Addr().String(),
    	}
    
    	cases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K 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. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/UpToDateIntegTest.groovy

            where:
            inputAnnotation   | inputType             | inputPath         | inputToPrint
            "@InputDirectory" | "DirectoryProperty"   | "input"           | "getInput().file('input.txt').get().asFile.text"
            "@InputFile"      | "RegularFileProperty" | "input/input.txt" | "getInput().get().asFile.text"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 13 12:00:09 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/c/eager/c_api_test.cc

      TFE_DeleteContextOptions(opts);
    
      TFE_TensorHandle* input1 = TestMatrixTensorHandle(ctx);
      TFE_TensorHandle* input2 = TestMatrixTensorHandle(ctx);
      TFE_Op* identityOp = TFE_NewOp(ctx, "IdentityN", status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_TensorHandle* inputs[] = {input1, input2};
      TFE_OpAddInputList(identityOp, inputs, 2, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
Back to top