Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,961 for output0 (0.12 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

            inputDir = project.mkdir('inputs')
            outputDir = project.mkdir('outputs')
            prop = 'foo'
        }
    """
            file('inputs/file0.txt') << "inputFile0"
            file('inputs/file1.txt') << "inputFile1"
            file('inputs/file2.txt') << "inputFile2"
    
            file('outputs/file1.txt') << "outputFile1"
            file('outputs/file2.txt') << "outputFile2"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/cleanup/DefaultBuildOutputCleanupRegistryTest.groovy

            registry.isOutputOwnedByBuild(file('outputs/even-an-other-dir'))
            !registry.isOutputOwnedByBuild(file('build'))
            !registry.isOutputOwnedByBuild(file('output'))
            !registry.isOutputOwnedByBuild(file('build/output'))
            !registry.isOutputOwnedByBuild(file('different-file/build/outputs'))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 29 20:47:06 UTC 2021
    - 3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/MergeInstrumentationAnalysisTransform.java

        @Override
        public void transform(TransformOutputs outputs) {
            // We simulate fan-in behaviour:
            // We expect that a transform before this one outputs three artifacts: 1. analysis metadata, 2. the original file and 3. instrumentation marker file.
            // So if the input is analysis metadata we merge it and output it, otherwise it's original artifact, and we output that.
            File input = getInput().get().getAsFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedNodeFixture.java

    public abstract class GroupedNodeFixture {
    
        private final List<String> outputs = new ArrayList<>(1);
    
        public void addOutput(String transformOutput) {
            outputs.add(transformOutput);
        }
    
        public String getOutput() {
            List<String> nonEmptyOutputs = filter(outputs, string -> !string.equals(""));
            return join("\n", nonEmptyOutputs);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/MSBuildExecutor.java

            ExecOutput result = findMSBuild().execWithFailure(args, buildEnvironment(workingDir));
    
            List<ExecutionOutput> outputs = getOutputFiles();
            assert outputs.size() == 1;
            String gradleStdout = fileContents(outputs.get(0).stdout);
            String gradleStderr = fileContents(outputs.get(0).stderr);
            System.out.println(result.getOut());
            System.out.println(gradleStdout);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SymlinkContinuousIntegrationTest.groovy

            inputs.files "src/linkdir/existing"
            outputs.files "build/output"
            doLast {
                println "isEmpty: " + symlink.isEmpty()
            }
        }
    """
            Files.createSymbolicLink(Paths.get(symlink.toURI()), Paths.get(targetDir.toURI()))
            expect:
            succeeds("echo")
            executedAndNotSkipped(":echo")
            output.contains("isEmpty: false")
            when: "symlink is deleted"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

          location, concat_dim_type, concat_dimension_attr);
    
      // Correctly set output shapes of concat op output if output shape is
      // statically known. Since the shape of TPUExecute op must be the same
      // across logical devices, we refer to the shape of 0th logical device
      // computation output.
      mlir::Type output_type;
      auto input_type = mlir::cast<mlir::TensorType>(inputs[0].getType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    [[sec:task_output_caching_details]]
    == Cacheable tasks
    
    Since a task describes all of its inputs and outputs, Gradle can compute a _build cache key_ that uniquely defines the task's outputs based on its inputs.
    That build cache key is used to request previous outputs from a build cache or store new outputs in the build cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        def output = outputs.file("\${input.name}.${extension}")
                        println "${message} \${input.name} to \${output.name}"
                        output.text = String.valueOf(input.length())
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    //  noutputs - number of elements in `outputs` array
    //  outputs - array of TF_Outputs that specify the outputs of the function.
    //            If `noutputs` is zero (the function returns no outputs), `outputs`
    //            can be null. `outputs` can contain the same tensor more than once.
    //  output_names - The names of the function's outputs. `output_names` array
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top