Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 562 for demand (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/resource/local/DefaultPathKeyFileStore.java

     * <p>
     * There is always at most one entry for a given key for this file store. If an entry already exists at the given path, it will be overwritten.
     * Paths can contain directory components, which will be created on demand.
     * <p>
     * This file store is self repairing in so far that any files partially written before a fatal error will be ignored and
     * removed at a later time.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		idx := indices[next]
    		demand := demands[idx]
    		if demand <= 0 {
    			continue
    		}
    		// `fullCapacityBite` is how much more capacity would be used
    		// if this and all following items get as much as this one
    		// is demanding.
    		fullCapacityBite := float64(count-next) * (demand - prevAlloc)
    		if fullCapacityBite > capacity {
    			break
    		}
    		prevAlloc = demand
    		alloc[idx] = demand
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

            public ConfigureOnDemandOption() {
                super(GRADLE_PROPERTY, BooleanCommandLineOptionConfiguration.create("configure-on-demand", "Configure necessary projects only. Gradle will attempt to reduce configuration time for large multi-project builds.", "Disables the use of configuration on demand.").incubating());
            }
    
            @Override
            public void applyTo(boolean value, StartParameterInternal settings, Origin origin) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

      // Explicitly set device to Host CPU instead of the device present in device
      // attribute of the MLIR op. The assigned device might be remote, not
      // available during compilation or compilation only device for on demand
      // execution which may create a recursion if used for constant folding.
      std::string host_cpu = tensorflow::DeviceNameUtils::FullName(
          /*job=*/"localhost", /*replica=*/0, /*task=*/0, /*type=*/"CPU", /*id=*/0);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionResult.java

         *
         * <ul>
         *     <li>Removes warning about running using configure on demand or parallel execution.</li>
         *     <li>Removes notice about starting or stopping the daemon.</li>
         *     <li>Normalizes build time to 0 seconds.
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/interface.go

    	// The RatioedGauge observes number of seats occupied through all phases of execution.
    	// The denominator for all the ratioed concurrency gauges is supplied later in the DispatchingConfig.
    	// The Gauge observes the seat demand (executing + queued seats).
    	BeginConstruction(QueuingConfig, metrics.RatioedGaugePair, metrics.RatioedGauge, metrics.Gauge) (QueueSetCompleter, error)
    }
    
    // QueueSetCompleter finishes the two-step process of creating or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. 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)
  8. architecture/security/istio-agent.md

    Envoy has stopped requested them; if there are no subscriptions they update will be ignored. If Envoy later watches these certificates again,
    a new one will be generated on demand.
    
    ## Configuration
    
    | Variable | Description |
    | - | - |
    |CA_ADDR|Address of CA, defaults to discoveryAddress|
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolver.java

            SelectorStateResolverResults results = new SelectorStateResolverResults(versionComparator, versionParser, selectors.size());
            TreeSet<ComponentIdResolveResult> preferResults = null; // Created only on demand
    
            for (ResolvableSelectorState selector : selectors) {
                resolveRequireConstraint(results, selector, allRejects);
                preferResults = maybeResolvePreferConstraint(preferResults, selector, allRejects);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 14:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top