Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 270 for consuming (0.11 sec)

  1. 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)
  2. 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)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         * <li>{@link SortOrder#CONSUMER_FIRST} : Artifacts for a consuming component should appear before artifacts for its dependencies.</li>
         * <li>{@link SortOrder#DEPENDENCY_FIRST} : Artifacts for a consuming component should appear after artifacts for its dependencies.</li>
         * </ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/VariantAwareResolutionWithConfigurationAttributesIntegrationTest.groovy

            notExecuted ':compileJavaFreeRelease'
            notExecuted ':compileJavaPaidDebug'
            notExecuted ':compileJavaPaidRelease'
        }
    
        @ToBeFixedForConfigurationCache
        def "consuming subproject variant builds the project with the appropriate tasks"() {
            given:
            subproject('core') {
                def buildDotGradle = file('build.gradle')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKuromojiTokenizerFactory.java

                        + "reset() called multiple times, or subclass does not call super.reset(). "
                        + "Please see Javadocs of TokenStream class for more information about the correct consuming workflow.");
            }
    
            @Override
            public void close() {
            }
        };
    
        protected final Field inputPendingField;
    
        protected final Field userDictionaryField;
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top