Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,891 for output0 (0.2 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        println "processing [\${input.name}]"
                        assert ${lenient} || input.file
                        def output = outputs.file(input.name + "." + parameters.targetColor.get())
                        if (input.file) {
                            output.text = input.text + "-" + parameters.targetColor.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    For the aforementioned reasons, task output caching is automatically disabled for tasks whose output directories overlap with another task.
    
    Build scans show tasks where caching was disabled due to overlapping outputs in the timeline:
    
    [.screenshot]
    image::build-cache/overlapping-outputs-timeline.png[]
    
    == Reuse of outputs between different tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/caching/internal/packaging/BuildCacheEntryPackingIntegrationTest.groovy

                    outputs.file("output.txt")
                        .withPropertyName("$NON_ASCII_NAME")
                    outputs.cacheIf { true }
                    doLast {
                        file("output.txt").text = "output"
                    }
                }
            """
    
            when:
            withBuildCache().run("createFile", "-Dfile.encoding=$fileEncoding")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            output.contains "Task 'b' file 'output.txt' with 'output-file'"
            output.contains "Task 'b2' file 'output.txt' with 'output-file'"
    
            when:
            succeeds "b", "b2"
    
            then:
            result.assertTasksSkipped(':a')
            result.assertTasksNotSkipped(':b', ':b2')
            output.contains "Task 'b' file 'output.txt' with 'output-file'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. pkg/log/default.go

    // Fatal outputs a message at fatal level.
    func Fatal(fields any) {
    	defaultScope.Fatal(fields)
    }
    
    // Fatalf uses fmt.Sprintf to construct and log a message at fatal level.
    func Fatalf(format string, args ...any) {
    	defaultScope.Fatalf(format, args...)
    }
    
    // FatalEnabled returns whether output of messages using this scope is currently enabled for fatal-level output.
    func FatalEnabled() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/cleanup/DefaultBuildOutputCleanupRegistry.java

                    // See https://github.com/gradle/gradle/issues/18460.
                    LOGGER.debug("More outputs are being registered even though the build output cleanup registry has already been finalized. New outputs: {}", files);
                } else {
                    this.outputs.add(fileCollectionFactory.resolving(files));
                }
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedWorkOutputFixture.java

            outputs.add(output);
        }
    
        /**
         * Returns concatenated non-empty output entries.
         */
        public String getOutput() {
            List<String> nonEmptyOutputs = filter(outputs, string -> !string.equals(""));
            return join("\n", nonEmptyOutputs);
        }
    
        /**
         * Returns all output entries.
         */
        public List<String> getOutputs() {
            return outputs;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithFileInputsIntegrationTest.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        println "processing \${input.name} using \${parameters.someFiles*.name}"
                        def output = outputs.file(input.name + ".green")
                        def paramContent = parameters.someFiles.collect { it.file ? it.text : it.list().length }.join("")
                        output.text = input.text + paramContent + ".green"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis_test.cc

      Output live0 = ops::Add(root.WithOpName("live0"), m0.output, m1.output);
      Output live1 = ops::Add(root.WithOpName("live1"), m2.output, m3.output);
    
      Output halfdead0 =
          ops::Add(root.WithOpName("halfdead0"), m0.output, m2.output);
      Output halfdead1 =
          ops::Add(root.WithOpName("halfdead1"), m1.output, m3.output);
    
      std::unique_ptr<DeadnessAnalysis> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

    public class OutputSnapshotUtil {
    
        /**
         * Finds outputs that are still present since the last execution when overlapping outputs are present.
         *
         * Note: when there are no overlapping outputs, all outputs currently existing in the output locations
         * are considered outputs of the work.
         *
         * If a property did not exist after the previous execution then all the outputs for it will be ignored.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top