Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for consuming (0.15 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonOutputConsumer.java

        @SuppressWarnings("DefaultCharset")
        public void start() {
            if (processStdOutput == null) {
                throw new IllegalStateException("Cannot start consuming daemon output because streams have not been connected first.");
            }
            LOGGER.debug("Starting consuming the daemon process output.");
    
            // Wait for the process' stdout to indicate that the process has been started successfully
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-plugin-performance/build.gradle.kts

        }
    
        buildSrcTemplate = "buildsrc-plugins"
        setProjects(50)
        sourceFiles = 200
        testSourceFiles = 50 // verbose tests are time consuming
        filesPerPackage = 5
        linesOfCodePerSourceFile = 150
        numberOfScriptPlugins = 30
        rootProjectTemplates = listOf("root")
        subProjectTemplates = listOf("project-with-source")
        templateArgs = mapOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/legalize_hashtables.cc

    // - Converting static hash table ops to the TFLite equivalent ops.
    //
    // There are needs to fall back to Flex for the following cases:
    // - Mutable hash table cases
    // - Other resource operators consuming a hash table resource tensor
    
    class LegalizeHashTableOpPattern : public OpRewritePattern<TF::HashTableV2Op> {
     public:
      using OpRewritePattern<TF::HashTableV2Op>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveMetadata.java

        ImmutableCapabilities getCapabilities();
    
        boolean isTransitive();
    
        boolean isExternalVariant();
    
        /**
         * Returns true if this variant is deprecated and consuming it in a dependency graph should emit a warning. False otherwise.
         */
        default boolean isDeprecated() {
            return false;
        }
    
        interface Subvariant {
            String getName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

            "same location"        | null           | "file"     | "output.txt"               | "output.txt"
            "consuming ancestor"   | null           | "file"     | "build/dir/sub/output.txt" | "build/dir"
            "consuming descendant" | 'build/dir'    | "dir"      | "build/dir/sub/output.txt" | "build/dir/sub/output.txt"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                    )
                }
            """
    
            when:
            run "myTask"
    
            then:
            outputContains("CONSUMING build/producerOutput")
    
            when:
            run "myTask"
    
            then:
            outputContains("CONSUMING build/producerOutput")
    
            where:
            methodName                         | useCase
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/LenientPlatformGraphResolveState.java

        }
    
        /**
         * @param platformId The consuming platform.
         */
        public VariantGraphResolveState getDefaultVariant(NodeState from, @Nullable ComponentIdentifier platformId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultResolvableArtifact.java

            if (isProjectArtifact()) {
                // Use a node to eagerly calculate the file if this artifact will be used as a dependency of some other node
                // This is to avoid having to lock the producing project when a consuming task in another project runs
                this.resolvedArtifactDependency = new ResolveAction(this);
            } else {
                this.resolvedArtifactDependency = null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    This is where a *build cache* is helpful.
    
    The build cache stores previous build results and restores them when needed.
    It prevents the redundant work and cost of executing time-consuming and expensive processes.
    
    When the build cache has been used to repopulate the local directory, the tasks are marked as `FROM-CACHE`:
    
    [source,text]
    ----
    $ ./gradlew compileJava --build-cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

        if (!input_type.hasRank() || !output_type.hasRank()) return failure();
    
        // The pattern attempts to reduce the rank of the input to BroadcastTo.
        // Thus, we fail to match if the consuming reshape rank is larger.
        ArrayRef<int64_t> input_shape = input_type.getShape();
        if (reshape_shape.size() > input_shape.size()) return failure();
    
        // Extend the input shape with leading 1s to match the broadcast shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top