Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 212 for demand (0.14 sec)

  1. tensorflow/compiler/jit/xla_device.cc

      *shape = shaped_buffer.on_device_shape();
      return absl::OkStatus();
    }
    
    // Caches a XlaDeviceAllocator per <backend, device ordinal> pair. A
    // XlaDeviceAllocator is created on demand and is associated with a
    // XlaDevice. It outlives the device itself (for instance, the buffer
    // backing a tensor holds a pointer to the allocator for book-keeping,
    // and this buffer can outlast the device).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. architecture/ambient/ztunnel.md

    As the name suggests, an `Address` represents a particular IP Address.
    This can be a `Service` or a `Workload`.
    
    The address type has the following goals:
    * It should support (but not require) on-demand lookups.
      * Specifically, ztunnel should be able to send a request to the control plane to answer "I got a request to send traffic to 1.1.1.1, what is 1.1.1.1?"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    +
    _Default is `false`._
    
    `org.gradle.configureondemand=(true,false)`::
    Enables incubating configuration-on-demand, where Gradle will attempt to configure only necessary projects.
    +
    _Default is `false`._
    
    `org.gradle.console=(auto,plain,rich,verbose)`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. src/go/types/check.go

    	seenPkgMap map[*Package]bool
    
    	// information collected during type-checking of a set of package files
    	// (initialized by Files, valid only for the duration of check.Files;
    	// maps and lists are allocated on demand)
    	files         []*ast.File               // package files
    	versions      map[*ast.File]string      // maps files to version strings (each file has an entry); shared with Info.FileVersions if present
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. README.md

    <a href="https://training.talkpython.fm/fastapi-courses" target="_blank" title="FastAPI video courses on demand from people you trust"><img src="https://fastapi.tiangolo.com/img/sponsors/talkpython-v2.jpg"></a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. pilot/pkg/xds/delta.go

    	// server should treat that identically to how it would treat the client having explicitly
    	// subscribed to *"
    	// NOTE: this means you cannot subscribe to nothing, which is useful for on-demand loading; to workaround this
    	// Istio clients will send and initial request both subscribing+unsubscribing to `*`.
    	if len(request.ResourceNamesSubscribe) == 0 {
    		wildcard = true
    	}
    	return res.UnsortedList(), wildcard
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         */
        @Override
        public void setMaxWorkerCount(int maxWorkerCount) {
            parallelismConfiguration.setMaxWorkerCount(maxWorkerCount);
        }
    
        /**
         * If the configure-on-demand mode is active
         */
        @Incubating
        public boolean isConfigureOnDemand() {
            return configureOnDemand;
        }
    
        @Override
        public String toString() {
            return "StartParameter{"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/check.go

    	seenPkgMap map[*Package]bool
    
    	// information collected during type-checking of a set of package files
    	// (initialized by Files, valid only for the duration of check.Files;
    	// maps and lists are allocated on demand)
    	files         []*syntax.File              // list of package files
    	versions      map[*syntax.PosBase]string  // maps files to version strings (each file has an entry); shared with Info.FileVersions if present
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/main/resources/header.html

                            <li><a href="../userguide/composite_builds.html">Composite Builds</a></li>
                            <li><a href="../userguide/multi_project_configuration_and_execution.html">Configuration on Demand</a></li>
                        </ul>
                    </li>
                    <li><a class="nav-dropdown" data-toggle="collapse" href="#developing-tasks" aria-expanded="false" aria-controls="developing-tasks">Developing Tasks</a>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     * services from this registry or its parents.</li>
     *
     * </ul>
     *
     * <p>Service instances are created on demand. {@link #getFactory(Class)} looks for a service instance which implements {@code Factory<T>} where {@code T} is the expected type.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top