Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 272 for uwcache (0.11 sec)

  1. src/cmd/link/internal/ld/seh.go

    	// to deduplicate .xdata entries.
    	uwcache := make(map[string]int64) // aux symbol name --> .xdata offset
    	for _, s := range ctxt.Textp {
    		if fi := ldr.FuncInfo(s); !fi.Valid() {
    			continue
    		}
    		uw := ldr.SEHUnwindSym(s)
    		if uw == 0 {
    			continue
    		}
    		name := ctxt.SymName(uw)
    		off, cached := uwcache[name]
    		if !cached {
    			off = xdata.Size()
    			uwcache[name] = off
    			xdata.AddBytes(ldr.Data(uw))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. pkg/controller/endpointslicemirroring/metrics/cache.go

    	"k8s.io/apimachinery/pkg/types"
    	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)
  3. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheCompositeConfigurationIntegrationTest.groovy

            }
    
            def mainCache = new TestBuildCache(file("main-cache"))
            def buildSrcCache = new TestBuildCache(file("buildSrc-cache"))
            def i1Cache = new TestBuildCache(file("i1-cache"))
            def i1BuildSrcCache = new TestBuildCache(file("i1-buildSrc-cache"))
            def i2Cache = new TestBuildCache(file("i2-cache"))
            def i3Cache = new TestBuildCache(file("i3-cache"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultExclusiveCacheAccessCoordinatorTest.groovy

     * limitations under the License.
     */
    package org.gradle.cache.internal
    
    import org.gradle.cache.AsyncCacheAccess
    import org.gradle.cache.CacheDecorator
    import org.gradle.cache.CrossProcessCacheAccess
    import org.gradle.cache.FileLock
    import org.gradle.cache.FileLockManager
    import org.gradle.cache.FileLockReleasedSignal
    import org.gradle.cache.IndexedCacheParameters
    import org.gradle.cache.LockOptions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. internal/config/cache/cache.go

    	c.BlockSize = ncfg.BlockSize
    	c.clnt = ncfg.clnt
    }
    
    // cache related errors
    var (
    	ErrInvalidArgument = errors.New("invalid argument")
    	ErrKeyMissing      = errors.New("key is missing")
    )
    
    const (
    	mcacheV1Check  = "/_mcache/v1/check"
    	mcacheV1Update = "/_mcache/v1/update"
    	mcacheV1Delete = "/_mcache/v1/delete"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. pkg/test/util/yml/cache.go

    	part Part
    	file string
    }
    
    // NewCache returns a new Cache instance
    func NewCache(dir string) *Cache {
    	return &Cache{
    		resources: make(map[CacheKey]*resourceState),
    		dir:       dir,
    	}
    }
    
    // Apply adds the given yamlText contents as part of a given context name. If there is an existing context
    // with the given name, then a diffgram will be generated.
    func (c *Cache) Apply(yamlText string) ([]CacheKey, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultArtifactCaches.java

    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.api.internal.cache.CacheConfigurationsInternal;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.cache.IndexedCache;
    import org.gradle.cache.UnscopedCacheBuilderFactory;
    import org.gradle.cache.internal.UsedGradleVersions;
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory;
    import org.gradle.internal.Factory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. pkg/kubelet/container/cache.go

    	// Map that stores the subscriber records.
    	subscribers map[types.UID][]*subRecord
    }
    
    // NewCache creates a pod cache.
    func NewCache() Cache {
    	return &cache{pods: map[types.UID]*data{}, subscribers: map[types.UID][]*subRecord{}}
    }
    
    // Get returns the PodStatus for the pod; callers are expected not to
    // modify the objects returned.
    func (c *cache) Get(id types.UID) (*PodStatus, error) {
    	c.lock.RLock()
    	defer c.lock.RUnlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 07:37:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/compile/internal/ssa/value.go

    	// nor a slot on Go stack, and the generation of this value is delayed to its use time.
    	OnWasmStack bool
    
    	// Is this value in the per-function constant cache? If so, remove from cache before changing it or recycling it.
    	InCache bool
    
    	// Storage for the first three args
    	argstorage [3]*Value
    }
    
    // Examples:
    // Opcode          aux   args
    //  OpAdd          nil      2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top