Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 731 for output2 (0.33 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            outputContains(output3)
    
            where:
            expression                                                                                      | output1                     | output2                            | output3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r50/ArgumentPassingCrossVersionTest.groovy

            then:
            output1.toString().contains(ARG_1)
            output1.toString().contains(ARG_2)
    
            when:
            String output2 = runBuild { launcher -> launcher.addArguments(["-P$ARG_1" as String]).addArguments(["-P$ARG_2" as String]) }
    
            then:
            output2.toString().contains(ARG_1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                    @InputFiles def inputFiles = project.layout.files()
    
                    @OutputDirectory File outputs1
                    @OutputDirectory File outputs2
    
                    @TaskAction void action() {
                        new File(outputs1, "output1.txt").text = "output1"
                        new File(outputs2, "output2.txt").text = "output2"
                    }
                }
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                file("build.gradle") << """
                    task foo {
                        inputs.dir('src').ignoreEmptyDirectories(false).withPropertyName('src')
                        outputs.file('output.txt')
                        doLast {
                            file('output.txt') << 'do stuff'
                        }
                    }
                """
                dir("src") {
                    file("A.txt") << "fooA"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

        # model and saving the output quantized model. These two member
        # attributes can be used to specify the paths for such models,
        # respectively. These paths will be cleaned up after each test case.
        self._input_saved_model_path = self.create_tempdir('input').full_path
        self._output_saved_model_path = self.create_tempdir('output').full_path
        # Extra output path occasionally used for comparing two different
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

                    void myAction() {
                        def output = outputFile.get().asFile
                        output << launcher1.get().executablePath
                        output << launcher2.get().executablePath
                    }
                }
    
                tasks.register("myToolchainTask", ToolchainTask) {
                    outputFile = layout.buildDirectory.file("output.txt")
                    launcher1 = javaToolchains.launcherFor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.mlir

      func.func @serving_default(%arg0: tensor<1024x1024xf32> {tf_saved_model.index_path = ["input_tensor"]}) -> (tensor<1024x3xf32> {tf_saved_model.index_path = ["output1"]}, tensor<1024x3xf32> {tf_saved_model.index_path = ["output2"]}) attributes {tf.entry_function = {control_outputs = "", inputs = "serving_default_input_tensor:0", outputs = "PartitionedCall:0"}, tf_saved_model.exported_names = ["serving_default"]} {
        %0 = stablehlo.constant dense<1.000000e+03> : tensor<1024x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  9. src/os/exec/exec_test.go

    	c.Env = append(os.Environ(), "CGO_ENABLED=0")
    	if output, err := c.CombinedOutput(); err != nil {
    		t.Logf("go build -o %s read3.go\n%s", exe, output)
    		t.Fatalf("go build failed: %v", err)
    	}
    
    	// Use a deadline to try to get some output even if the program hangs.
    	ctx := context.Background()
    	if deadline, ok := t.Deadline(); ok {
    		// Leave a 20% grace period to flush output, which may be large on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            Args:
              input_tensor: Input tensor to matmul with the filter.
    
            Returns:
              A 'output' -> output tensor mapping
            """
            out = math_ops.matmul(input_tensor, random_tensor_gen_fn((2, 3)))
            out = math_ops.matmul(out, random_tensor_gen_fn((3, 4)))
            return {'output': out}
    
        model = TwoMatmulModel()
        input_shape = (1, 2)
    
        save.save(
            model,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top