Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 967 for demand (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tools/docker-builder/builder/crane.go

    		if args.Base != "" {
    			basesMu.RLock()
    			baseImage = bases[baseKey{arch: plat.Architecture, name: args.Base}] // todo per-arch base
    			basesMu.RUnlock()
    		}
    		if baseImage == nil {
    			log.Warnf("on demand loading base image %q", args.Base)
    			ref, err := name.ParseReference(args.Base)
    			if err != nil {
    				return err
    			}
    			bi, err := remote.Image(
    				ref,
    				remote.WithPlatform(plat),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. docs/lambda/README.md

    application developers to process data retrieved from MinIO before returning it to an application. You can register a Lambda Function target on MinIO, once successfully registered it can be used to transform the data for application GET requests on demand.
    
    This document focuses on showing a working example on how to use Object Lambda with MinIO, you must have [MinIO deployed in your environment](https://min.io/docs/minio/linux/operations/installation.html) before you can start using external...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 04 19:15:28 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. docs/contribute/concurrency.md

     * **RealConnection** is the socket and streams of an HTTP/1 or HTTP/2 connection. These are created on demand to fulfill HTTP requests. They may be reused for many HTTP request/response exchanges. Their lifetime is typically shorter than a connection pool.
    
     * **Exchange** carries a single HTTP request/response pair.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
Back to top