Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 381 for demand (0.13 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            file("gradle.properties") << "org.gradle.configureondemand=false"
            buildFile << "task foo"
    
            when:
            run("foo", "--configure-on-demand")
    
            then:
            fixture.assertProjectsConfigured(":")
            output.count("Configuration on demand is an incubating feature") == 1
        }
    
        @Requires(
            value = [IntegTestPreconditions.NotParallelExecutor, IntegTestPreconditions.NotIsolatedProjects],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPluginDevelopmentIntegrationTest.groovy

    }
    """
    
            when:
            args "--configure-on-demand"
            execute(buildA, ":foo:bar:classes", ":foo:classes")
    
            then:
            executed ":pluginBuild:jar", ":foo:classes", ":foo:bar:classes"
        }
    
        def "can develop a plugin with multiple consumers when those consumers are accessed via undeclared dependency resolution and using configure-on-demand"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

            [JAR_TASK_NAME, '--parallel']                          | 'in parallel'
            [JAR_TASK_NAME, '--parallel', '--configure-on-demand'] | 'in parallel and configure on demand enabled'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/821")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

         *
         * <p>The closures will be “evaluated” on demand whenever the value is needed (e.g. at generation time)</p>
         *
         * @param toSign A closure that produces a File for the object to sign (non File return values will be used as the path to the file)
         * @param classifier A closure that produces the classifier to assign to the signature artifact on demand
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

    // These resources cannot be looked up on-demand.
    //
    // In some cases, we do not know the IP address of a Service. These services cannot be used for matching
    // outbound traffic, as we only have L4 attributes to route based on. However,
    // they can be used for Gateways.
    // In this case, the key format will be "network/hostname".
    // These resources cannot be looked up on-demand.
    message Address {
      oneof type {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Gets the identifiers of those profiles that should be activated by explicit demand.
         *
         * @return The identifiers of those profiles to activate, never {@code null}.
         */
        List<String> getActiveProfileIds();
    
        /**
         * Sets the identifiers of those profiles that should be activated by explicit demand.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

                result.assertTaskExecuted(":app:processResources")
            }
        }
    
        def "can run task from included build that also produces a plugin used from root build when configure on demand is enabled"() {
            setup:
            settingsFile << """
                includeBuild('build-logic')
                include("app")
                include("util")
            """
            def rootDir = file("build-logic")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top