Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 512 for fetches (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/StaticVersionsReadOnlyCacheDependencyResolutionTest.groovy

    class StaticVersionsReadOnlyCacheDependencyResolutionTest extends AbstractReadOnlyCacheDependencyResolutionTest {
    
        @Override
        boolean isPublishJavadocsAndSources() {
            true
        }
    
        def "fetches dependencies from read-only cache"() {
            given:
            buildFile << """
                dependencies {
                    implementation 'org.readonly:core:1.0'
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/MultiProcessSafeAsyncPersistentIndexedCache.java

     */
    public interface MultiProcessSafeAsyncPersistentIndexedCache<K, V> extends UnitOfWorkParticipant {
        /**
         * Fetches the given entry, blocking until the result is available.
         */
        @Nullable
        V get(K key);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. pkg/test/kube/util.go

    	defaultRetryDelay   = retry.BackoffDelay(time.Millisecond * 200)
    
    	ErrNoPodsFetched = fmt.Errorf("no pods fetched")
    )
    
    // PodFetchFunc fetches pods from a k8s Client.
    type PodFetchFunc func() ([]corev1.Pod, error)
    
    // NewPodFetch creates a new PodFetchFunction that fetches all pods matching the namespace and label selectors.
    func NewPodFetch(a istioKube.CLIClient, namespace string, selectors ...string) PodFetchFunc {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_executor_to_functional.cc

        // Forward island fetches (tf_executor.yield operands) to island op result
        // uses.
        for (auto result :
             llvm::zip(island_op.getOutputs(), island_op.GetYield().getFetches()))
          std::get<0>(result).replaceAllUsesWith(std::get<1>(result));
      }
    
      // Forward graph fetches (tf_executor.fetch operands) to graph op result uses.
      for (auto result :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. pkg/ledger/smt_tools.go

    	s.atomicUpdate = false
    	return s.get(prevRoot, key, nil, 0, s.trieHeight)
    }
    
    // get fetches the value of a key given a trie root
    func (s *smt) get(root []byte, key []byte, batch [][]byte, iBatch, height int) ([]byte, error) {
    	if len(root) == 0 {
    		return nil, nil
    	}
    	if height == 0 {
    		return root[:hashLength], nil
    	}
    	// Fetch the children of the node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go

    // Code generated by linux/mkall.go generatePtraceRegSet("arm64"). DO NOT EDIT.
    
    package unix
    
    import "unsafe"
    
    // PtraceGetRegSetArm64 fetches the registers used by arm64 binaries.
    func PtraceGetRegSetArm64(pid, addr int, regsout *PtraceRegsArm64) error {
    	iovec := Iovec{(*byte)(unsafe.Pointer(regsout)), uint64(unsafe.Sizeof(*regsout))}
    	return ptracePtr(PTRACE_GETREGSET, pid, uintptr(addr), unsafe.Pointer(&iovec))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 721 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/CacheAwareExternalResourceAccessor.java

    import javax.annotation.Nullable;
    import java.io.File;
    import java.io.IOException;
    
    public interface CacheAwareExternalResourceAccessor {
        /**
         * Fetches for a resource located at some URI.
         * @param source the URI of the resource to be fetched
         * @param baseName the required name of the local resource. Can be null.
         * @param fileStore used whenever the resource is effectively downloaded, to move it into a cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. pkg/wasm/monitoring.go

    	wasmCacheEntries = monitoring.NewGauge(
    		"wasm_cache_entries",
    		"number of Wasm remote fetch cache entries.",
    	)
    
    	wasmCacheLookupCount = monitoring.NewSum(
    		"wasm_cache_lookup_count",
    		"number of Wasm remote fetch cache lookups.",
    	)
    
    	wasmRemoteFetchCount = monitoring.NewSum(
    		"wasm_remote_fetch_count",
    		"number of Wasm remote fetches and results, including success, download failure, and checksum mismatch.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/experimental/public/function_metadata.h

    namespace tensorflow {
    namespace experimental {
    namespace cc {
    
    // FunctionMetadata stores additional function information, including
    // optional signaturedef feeds/fetches (for TF1-based ConcreteFunctions),
    // a valid function path (for TF2-based ConcreteFunctions), and
    // the types + number of inputs and outputs.
    class FunctionMetadata final {
      // TODO(bmzhao): Add getters here as necessary.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. pilot/pkg/util/informermetric/informerutil.go

    		"controller_sync_errors_total",
    		"Total number of errorMetric syncing controllers.",
    	)
    
    	mu       sync.RWMutex
    	handlers = map[cluster.ID]cache.WatchErrorHandler{}
    )
    
    // ErrorHandlerForCluster fetches or creates an ErrorHandler that emits a metric
    // and logs when a watch error occurs. For use with SetWatchErrorHandler on SharedInformer.
    func ErrorHandlerForCluster(clusterID cluster.ID) cache.WatchErrorHandler {
    	mu.RLock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top