Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for consuming (0.52 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ParallelDependencyResolutionIntegrationTest.groovy

            when:
            run 'project1:resolveDependencies', 'project2:resolveDependencies'
    
            then:
            noExceptionThrown()
        }
    
        def "long running task in producing project does not block task in consuming project"() {
            blockingServer.start()
    
            createDirs("producer", "consumer")
            settingsFile << """
                include "producer"
                include "consumer"
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryBinariesIntegrationTest.groovy

            installation("build/install/main").exec().out == "CPP_C"
        }
    
        @Issue("GRADLE-2925")
        @ToBeFixedForConfigurationCache
        def "headers for source set added to library binary are available to consuming binary"() {
            def app = new CppHelloWorldApp()
            given:
            buildFile << """
    apply plugin: "cpp"
    
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/userguide_single.adoc

    include::component_metadata_rules.adoc[leveloffset=+2]
    include::resolution_rules.adoc[leveloffset=+2]
    include::resolution_strategy_tuning.adoc[leveloffset=+2]
    
    == PRODUCING AND CONSUMING VARIANTS OF LIBRARIES
    
    include::component_capabilities.adoc[leveloffset=+2]
    include::feature_variants.adoc[leveloffset=+2]
    include::variant_model.adoc[leveloffset=+2]
    include::variant_attributes.adoc[leveloffset=+2]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 22:56:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/cryptobyte/string.go

    // length-prefixed, binary messages, including ASN.1 DER. (The asn1 subpackage
    // contains useful ASN.1 constants.)
    //
    // The String type is for parsing. It wraps a []byte slice and provides helper
    // functions for consuming structures, value by value.
    //
    // The Builder type is for constructing messages. It providers helper functions
    // for appending values and also for appending length-prefixed submessages –
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

             * Never empty.
             * Null if the task has no inputs.
             */
            @Nullable
            Map<String, byte[]> getInputValueHashesBytes();
    
            /**
             * The consuming visitor for file property inputs.
             * <p>
             * Properties are visited depth-first lexicographical.
             * Roots are visited in semantic order (i.e. the order in which they make up the file collection)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/mark_input_output_aliases.cc

          }
        } else {
          LLVM_DEBUG(llvm::dbgs()
                     << "No supported special parent found, using "
                        "tf_device.cluster_func outputs directly to search for "
                        "consuming AssignVariableOp.\n");
        }
      }
      return llvm::dyn_cast_or_null<TF::AssignVariableOp>(device_return);
    }
    
    // TODO(b/184420848): Explore relaxing these constraints.
    LogicalResult BuildAliasingInfo(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 04:14:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top