Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 512 for fetches (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/graph_pruning.cc

    void GraphPruningPass::PruneGraph(GraphOp graph) {
      // A graph has a single block which forms a DAG: operations that aren't
      // reachable from the `fetch` operands can be eliminated.
    
      llvm::SmallPtrSet<Operation*, 8> reachable_ops;
      llvm::SmallVector<Operation*, 8> ops_to_visit;
    
      // Visit fetches first to create a starting point for ops that are reachable.
      reachable_ops.insert(graph.GetFetch());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ObjectHolder.java

     * limitations under the License.
     */
    
    package org.gradle.cache;
    
    /**
     * A persistent store containing an object of type T.
     */
    public interface ObjectHolder<T> {
        /**
         * Fetches the value from this cache. A shared or exclusive lock is held while fetching the value, depending on implementation.
         */
        T get();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. tools/certs/README.md

    Make Target | Makefile | Description
    ------ | -------- | -----------
    `root-ca` | `Makefile.selfsigned.mk` | Generates a self-signed root CA key and certificate.
    `fetch-root-ca` | `Makefile.k8s.mk` | Fetches the Istio CA from the Kubernetes cluster, using the current context in the default `kubeconfig`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 17 20:29:15 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ioctl_linux.go

    	return &value, err
    }
    
    func IoctlSetRTCWkAlrm(fd int, value *RTCWkAlrm) error {
    	return ioctlPtr(fd, RTC_WKALM_SET, unsafe.Pointer(value))
    }
    
    // IoctlGetEthtoolDrvinfo fetches ethtool driver information for the network
    // device specified by ifname.
    func IoctlGetEthtoolDrvinfo(fd int, ifname string) (*EthtoolDrvinfo, error) {
    	ifr, err := NewIfreq(ifname)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_platform_info.h

        DeviceCompiler<xla::LocalExecutable, xla::LocalClient>**
            xla_device_compiler);
    
    // Fetches a DeviceCompiler from the tfrt_global resource manager (or creates
    // one there if not found) that uses xla::PjRtClient using an appropriate
    // PjRtClient for `platform_info.device_type()` and sets *pjrt_device_compiler
    // to point to it. Also fetches/creates a DeviceCompilationProfiler from/in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/IndexedCache.java

    import java.util.function.Function;
    
    /**
     * A persistent store of objects of type V indexed by a key of type K.
     */
    public interface IndexedCache<K, V> extends Cache<K, V> {
        /**
         * Fetches the value mapped to the given key from this cache, blocking until it is available.
         *
         * A shared or exclusive file lock is held while fetching the value, depending on implementation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. internal/http/dial_dnscache.go

    type LookupHost func(ctx context.Context, host string) (addrs []string, err error)
    
    // DialContextWithLookupHost is a helper function which returns `net.DialContext` function.
    // It randomly fetches an IP via custom LookupHost function and dials it by the given dial
    // function. LookupHost may implement an internal DNS caching implementation, lookupHost
    // input if nil then net.DefaultResolver.LookupHost is used.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 03 19:30:51 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download.go

    	configFileName = "config.json"
    )
    
    // needNoConsole is used on windows to set the windows.CREATE_NO_WINDOW
    // creation flag.
    var needNoConsole = func(cmd *exec.Cmd) {}
    
    // Download fetches the requested telemetry UploadConfig using "go mod
    // download". If envOverlay is provided, it is appended to the environment used
    // for invoking the go command.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/metrics_test.go

    	_, _, _ = fetchPath(manager, "application/json", discoveryPath, "")
    	// A single fetch should aggregate and increment regeneration counter.
    	if err := testutil.GatherAndCompare(legacyregistry.DefaultGatherer, formatExpectedMetrics(1), interests...); err != nil {
    		t.Fatal(err)
    	}
    	_, _, _ = fetchPath(manager, "application/json", discoveryPath, "")
    	// Subsequent fetches should not reaggregate discovery.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 17:24:02 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. internal/store/batch.go

    	b.Lock()
    	defer b.Unlock()
    
    	if b.isFull() {
    		return ErrBatchFull
    	}
    
    	if _, ok := b.items[key]; !ok {
    		b.keys = append(b.keys, key)
    	}
    	b.items[key] = item
    
    	return nil
    }
    
    // GetAll fetches the items and resets the batch
    // Returned items are not referenced by the batch
    func (b *Batch[K, T]) GetAll() (orderedKeys []K, orderedItems []T, err error) {
    	b.Lock()
    	defer b.Unlock()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Oct 07 15:07:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top