Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,164 for fetches (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

                         unused_replica_controls.end());
          builder.setInsertionPoint(fetch);
          builder.create<tf_executor::FetchOp>(fetch.getLoc(), fetches);
          fetch.erase();
        }
      } else {
        // Now, finally, we need to maintain the invariant expected to be maintained
        // throughout the graph export pipeline that all islands always perfectly
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. 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)
  10. security/pkg/nodeagent/caclient/credentials.go

    // this is safe themselves.
    func (t *DefaultTokenProvider) RequireTransportSecurity() bool {
    	return false
    }
    
    // GetToken fetches a token to attach to a request. Returning "", nil will cause no header to be
    // added; while a non-nil error will block the request If the token selected is not found, no error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top