Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 967 for demand (0.1 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsIntegrationTest.groovy

            then:
            failure.assertHasDescription("The configuration cache cannot be disabled when isolated projects is enabled.")
        }
    
        def "projects are configured on demand"() {
            settingsFile << """
                println "configuring settings"
                include "a", "b", "c"
            """
            buildFile("""
                println "configuring root project"
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractLazyModuleComponentResolveMetadata.java

        private final VariantMetadataRules variantMetadataRules;
        private final ImmutableMap<String, Configuration> configurationDefinitions;
    
        // Configurations are built on-demand, but only once.
        private final Map<String, ModuleConfigurationMetadata> configurations = new HashMap<>();
    
        private Optional<List<? extends VariantGraphResolveMetadata>> graphVariants;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/ListIteratorTester.java

    /**
     * A utility similar to {@link IteratorTester} for testing a {@link ListIterator} against a known
     * good reference implementation. As with {@code IteratorTester}, a concrete subclass must provide
     * target iterators on demand. It also requires three additional constructor parameters: {@code
     * elementsToInsert}, the elements to be passed to {@code set()} and {@code add()} calls; {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/cache/internal/DefaultGeneratedGradleJarCacheTest.groovy

            1 * cacheBuilder.withDisplayName(CACHE_DISPLAY_NAME) >> cacheBuilder
            1 * cacheBuilder.withInitialLockMode(FileLockManager.LockMode.OnDemand) >> cacheBuilder
            1 * cacheBuilder.open() >> { cache }
            1 * cache.close()
        }
    
        def "creates JAR file on demand for identifier '#identifier'"(String identifier) {
            def cacheDir = tmpDir.testDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

            val modelParameters = if (requirements.isCreatesModel) {
                // When creating a model, disable certain features - only enable configure on demand and configuration cache when isolated projects is enabled
                BuildModelParameters(
                    parallelProjectExecution,
                    isolatedProjects,
                    isolatedProjects,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionResult.java

     * Get rid of them after debugging
     *
     */
    @Deprecated
    public class MetadataResolutionResult {
        MetadataTreeNode treeRoot;
    
        /**
         * these components are initialized on demand by
         * explicit call of the initTreeProcessing()
         */
        ClasspathTransformation classpathTransformation;
    
        GraphConflictResolver conflictResolver;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/cleanup/DefaultBuildOutputCleanupRegistry.java

            synchronized (lock) {
                if (resolvedPaths != null) {
                    // Some tasks cannot declare the dependencies on other projects, yet, for example the dependencies task.
                    // When configure on demand is enabled, those other projects are realized at execution time, long after the BuildOutputRegistry
                    // has been finalized. We ignore those problems for now, until the dependencies can be declared properly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/declaring_dependencies_between_subprojects.adoc

    Gradle's <<cross_project_publications#cross_project_publications,dependency management engine>> allows you to share arbitrary artifacts between projects and build them on demand....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 21:54:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/flags.h

      // many bytes.
      int64_t tf_xla_sparse_core_stacking_table_shard_limit_bytes;
    };
    
    // Flags associated with the XLA bridge's xla_device module.
    struct XlaDeviceFlags {
      // Switch the CPU device into "on-demand" mode, where instead of
      // auto-clustering ops are compiled one by one just-in-time.
      // Enabling this mode by a legacy flag is a temporary mechanism. When this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

            installation("exe/build/install/main").exec().out == app.englishOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "can use map notation to reference library in different project with configure-on-demand"() {
            given:
            def app = new CppHelloWorldApp()
            app.executable.writeSources(file("exe/src/main"))
            app.library.writeSources(file("lib/src/hello"))
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top