Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,821 for output0 (0.12 sec)

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

            withBuildCache().run "compileJava", "--info"
    
            then:
            noneSkipped()
            output.contains("Build cache key for task ':compileJava' is ")
            !output.contains("Appending implementation to build cache key:")
            !output.contains("Appending input value fingerprint for")
            !output.contains("Appending input file fingerprints for 'classpath'")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingDisabledReasonCategory.java

         */
        DISABLE_CONDITION_SATISFIED,
    
        /**
         * The work has no outputs declared.
         */
        NO_OUTPUTS_DECLARED,
    
        /**
         * Work has declared output that is not cacheable.
         *
         * Reasons for non-cacheable outputs:
         * <ul>
         *     <li>an output contains a file tree,</li>
         *     <li>an output is not tracked.</li>
         * </ul>
         */
        NON_CACHEABLE_OUTPUT,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/ops/xla_ops.cc

        // Note: when replication is supported, this op will have N outputs.
        .Output("outputs: T")
        .Attr("T: type")
        .SetShapeFn([](InferenceContext* c) {
          for (int i = 0; i < c->num_outputs(); ++i) {
            c->set_output(i, c->input(0));
          }
          return absl::OkStatus();
        })
        .Doc(
            "Operator that connects the output of an XLA computation to other "
            "consumer graph nodes.");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-unzip/kotlin/build.gradle.kts

            val output = outputDirectory.resolve(entry.name)
            if (!output.canonicalPath.startsWith(outputDirectoryCanonicalPath)) {
                throw ZipException("Zip entry '${entry.name}' is outside of the output directory")
            }
            if (entry.isDirectory) {
                output.mkdirs()
            } else {
                output.parentFile.mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    For the very same reason using `outputs.upToDateWhen` is discouraged and should be replaced by properly declaring the task's inputs.
    
    === Overlapping outputs
    
    You already saw that <<build_cache_concepts.adoc#concepts_overlapping_outputs,overlapping outputs are a problem for task output caching>>.
    When you add new tasks to your build or re-configure built-in tasks make sure you do not create overlapping outputs for cacheable tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/DependentComponentsRenderer.java

                hiddenNonBuildable = true;
                return;
            }
            StyledTextOutput output = builder.getOutput();
            GraphRenderer renderer = new GraphRenderer(output);
            renderer.visit(output1 -> {
                output1.withStyle(Identifier).text(component.getName());
                output1.withStyle(Description).text(" - Components that depend on " + component.getDisplayName());
            }, true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    ----
    <1> *Register Output*: The `process` task writes its output to a log file.
    <2> *Modify Output*: The task writes to its output file as it executes.
    <3> *Task Failure*: The task throws a `VerificationException` and fails at this point.
    <4> *Continue to Modify Output*: This line never runs due to the exception stopping the task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tasks/incrementalTask/kotlin/build.gradle.kts

        delete(layout.buildDirectory.file("outputs/1.txt"))
    }
    // end::removed-output[]
    
    // tag::reverse[]
    tasks.register<IncrementalReverseTask>("incrementalReverse") {
        inputDir = file("inputs")
        outputDir = layout.buildDirectory.dir("outputs")
        inputProperty = project.findProperty("taskInputProperty") as String? ?: "original"
    }
    // end::reverse[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-unzip/groovy/build.gradle

            def output = new File(outputDirectory, entry.name)
            if (!output.canonicalPath.startsWith(outputDirectoryCanonicalPath)) {
                throw new ZipException("Zip entry '${entry.name}' is outside of the output directory")
            }
            if (entry.isDirectory) {
                output.mkdirs()
            } else {
                output.parentFile.mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformOfDirectoriesIntegrationTest.groovy

                    abstract Provider<FileSystemLocation> getInput()
    
                    void transform(TransformOutputs outputs) {
                        def dir = input.get().asFile
                        assert dir.directory
                        println("transforming [\${dir.name}]")
                        outputs.file("\${dir.name}.size").text = 'ok'
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top