Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 967 for demand (0.12 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

    class ConfigurationCacheFixture {
        static final String ISOLATED_PROJECTS_MESSAGE = "Isolated projects is an incubating feature."
        static final String CONFIGURE_ON_DEMAND_MESSAGE = "Configuration on demand is an incubating feature."
    
        private final AbstractIntegrationSpec spec
        final BuildOperationsFixture buildOperations
        final ConfigurationCacheBuildOperationsFixture configurationCacheBuildOperations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/sizes.go

    		return a
    	}
    	panic("implementation of alignof returned an alignment < 1")
    }
    
    func (conf *Config) offsetsof(T *Struct) []int64 {
    	var offsets []int64
    	if T.NumFields() > 0 {
    		// compute offsets on demand
    		f := stdSizes.Offsetsof
    		if conf.Sizes != nil {
    			f = conf.Sizes.Offsetsof
    		}
    		offsets = f(T.fields)
    		// sanity checks
    		if len(offsets) != T.NumFields() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. 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)
  4. pkg/util/async/bounded_frequency_runner.go

    	fn      func()      // function to run
    	lastRun time.Time   // time of last run
    	timer   timer       // timer for deferred runs
    	limiter rateLimiter // rate limiter for on-demand runs
    
    	retry     chan struct{} // schedule a retry
    	retryMu   sync.Mutex    // guards retryTime
    	retryTime time.Time     // when to retry
    }
    
    // designed so that flowcontrol.RateLimiter satisfies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    - for tasks providing diagnostics (similar to the `dependencyInsight` task)
    - for tasks which need to perform dependency resolution at execution time (e.g, download files on demand)
    
    For those use cases, Gradle provides lazy, thread-safe APIs, accessible by calling the link:{javadocPath}/org/gradle/api/artifacts/Configuration.html#getIncoming--[Configuration.getIncoming()] method:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/base/base.go

    	//   GC's mark phase terminates; finalizers are run after marking as the
    	//   spans containing finalizable objects are swept, driven by GC
    	//   background activity and allocation demand.
    
    	// - "live at last GC" is not available through the current metrics
    	//    interface. Instead, live is estimated by knowing the adjusted value of
    	//    GOGC and the new heap goal following a GC (this requires knowing that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

        private boolean inheritedByDefault = true;
    
        private List<Artifact> artifacts;
    
        private DependencyNode dependencyNode;
    
        private ClassRealm classRealm;
    
        // calculated on-demand.
        private Map<String, Artifact> artifactMap;
    
        private Set<Artifact> introducedDependencyArtifacts;
    
        private String name;
    
        private String description;
    
        private String requiredMavenVersion;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    Registering the service does not create the service instance.
    This happens on demand when a task first uses the service.
    The service instance will not be created if no task uses the service during a build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/go/types/sizes.go

    		return a
    	}
    	panic("implementation of alignof returned an alignment < 1")
    }
    
    func (conf *Config) offsetsof(T *Struct) []int64 {
    	var offsets []int64
    	if T.NumFields() > 0 {
    		// compute offsets on demand
    		f := stdSizes.Offsetsof
    		if conf.Sizes != nil {
    			f = conf.Sizes.Offsetsof
    		}
    		offsets = f(T.fields)
    		// sanity checks
    		if len(offsets) != T.NumFields() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. 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)
Back to top