Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,653 for cachez (0.11 sec)

  1. pkg/wasm/cache.go

    	// sha256 scheme prefix
    	sha256SchemePrefix = "sha256:"
    )
    
    // Cache models a Wasm module cache.
    type Cache interface {
    	Get(url string, opts GetOptions) (string, error)
    	Cleanup()
    }
    
    // LocalFileCache for downloaded Wasm modules. Currently it stores the Wasm module as local file.
    type LocalFileCache struct {
    	// Map from Wasm module checksum to cache entry.
    	modules map[moduleKey]*cacheEntry
    	// Map from tagged URL to checksum
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. operator/pkg/cache/cache.go

    // limitations under the License.
    
    package cache
    
    import (
    	"sync"
    
    	"istio.io/istio/operator/pkg/metrics"
    	"istio.io/istio/operator/pkg/object"
    )
    
    // ObjectCache is a cache of objects,
    type ObjectCache struct {
    	// Cache is a cache keyed by object Hash() function.
    	Cache map[string]*object.K8sObject
    	Mu    *sync.RWMutex
    }
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 13:12:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/initScripts/cacheMarking/groovy/gradleUserHome/init.d/cache-settings.gradle

    beforeSettings { settings ->
        settings.caches {
            // Disable cache marking for all caches
            markingStrategy = MarkingStrategy.NONE
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 154 bytes
    - Viewed (0)
  4. src/runtime/mcache.go

    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // Per-thread (in Go, per-P) cache for small objects.
    // This includes a small object cache and local allocation stats.
    // No locking needed because it is per-thread (per-P).
    //
    // mcaches are allocated from non-GC'd memory, so any heap pointers
    // must be specially handled.
    type mcache struct {
    	_ sys.NotInHeap
    
    	// The following members are accessed on every malloc,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/initScripts/cacheMarking/kotlin/gradleUserHome/init.d/cache-settings.gradle.kts

    beforeSettings {
        caches {
            // Disable cache marking for all caches
            markingStrategy = MarkingStrategy.NONE
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 133 bytes
    - Viewed (0)
  6. platforms/core-runtime/functional/src/main/java/org/gradle/internal/serialization/Cached.java

     * whose result must be cached even (or specially) at serialization time.
     *
     * @param <T> the resulting type
     */
    public abstract class Cached<T> {
    
        public static <T> Cached<T> of(Callable<T> computation) {
            return new Deferred<>(computation);
        }
    
        public abstract T get();
    
        private static class Deferred<T> extends Cached<T> implements java.io.Serializable {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. pkg/controller/endpointslicemirroring/metrics/cache.go

    	endpointsliceutil "k8s.io/endpointslice/util"
    )
    
    // NewCache returns a new Cache with the specified endpointsPerSlice.
    func NewCache(endpointsPerSlice int32) *Cache {
    	return &Cache{
    		maxEndpointsPerSlice: endpointsPerSlice,
    		cache:                map[types.NamespacedName]*EndpointPortCache{},
    	}
    }
    
    // Cache tracks values for total numbers of desired endpoints as well as the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/Cache.java

     * limitations under the License.
     */
    package org.gradle.cache;
    
    import javax.annotation.Nullable;
    import java.util.function.Function;
    import java.util.function.Supplier;
    
    public interface Cache<K, V>  {
        /**
         * Locates the given entry, using the supplied factory when the entry is not present or has been discarded, to recreate the entry in the cache.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCacheFactoryTest.groovy

            @Override
            void onOpen(Object cache) {
                opened.accept(cache)
            }
    
            @Override
            void onClose(Object cache) {
                closed.accept(cache)
            }
        }
    
        def setup() {
            _ * metaDataProvider.processIdentifier >> '123'
            _ * metaDataProvider.processDisplayName >> 'process'
        }
    
        void "creates directory backed cache instance"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/cache.go

    // DO NOT use outside of tests.
    func (cache *cacheImpl) NodeCount() int {
    	cache.mu.RLock()
    	defer cache.mu.RUnlock()
    	return len(cache.nodes)
    }
    
    // PodCount returns the number of pods in the cache (including those from deleted nodes).
    // DO NOT use outside of tests.
    func (cache *cacheImpl) PodCount() (int, error) {
    	cache.mu.RLock()
    	defer cache.mu.RUnlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
Back to top