Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for demand (0.14 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. 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)
  3. 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)
  4. 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)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

                    compositeSubstitute()
                }
            }
    
            where:
            name                  | args
            "regular build"       | []
            "configure on demand" | ["--configure-on-demand"]
            "parallel"            | ["--parallel"]
        }
    
        def "substitutes dependency in composite containing participants with same root directory name"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

     *
     * <p>This type is intended to contain values that are calculated as nodes in the work graph, but which may also be calculated
     * on demand. An instance of this type can be used as a node in the work graph.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformStepNode.java

                return result;
            }
    
            @Override
            public void executeIfNotAlready() {
                // Only finalize the previous node when executing this node on demand
                previousTransformStepNode.executeIfNotAlready();
                super.executeIfNotAlready();
            }
    
            protected class TransformPreviousArtifacts extends AbstractTransformArtifacts {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    In the long run, cross-configuration usually grows in complexity and becomes a burden.
    Cross-configuration can also introduce configuration-time coupling between projects, which can prevent optimizations like configuration-on-demand from working properly.
    
    === Convention plugins versus cross-configuration
    
    The two most common uses of cross-configuration can be better modeled using convention plugins:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    +
    Set to `warn` to report problems without failing the build.
    +
    Set to `fail` to report problems and fail the build if there are any problems.
    
    `--configure-on-demand`, `--no-configure-on-demand`::
    Toggles configure-on-demand. Only relevant projects are configured in this build run. _Default is off_.
    
    `--max-workers`::
    Sets the maximum number of workers that Gradle may use. _Default is number of processors_.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	reqsGaugePair metrics.RatioedGaugePair
    
    	// Observer of number of seats occupied throughout execution
    	execSeatsObs metrics.RatioedGauge
    
    	// Integrator of seat demand, reset every CurrentCL adjustment period
    	seatDemandIntegrator fq.Integrator
    
    	// Gauge of seat demand / nominalCL
    	seatDemandRatioedGauge metrics.RatioedGauge
    
    	// seatDemandStats is derived from periodically examining the seatDemandIntegrator.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
Back to top