Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for uwcache (1.46 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. cmd/data-scanner.go

    	err := s.scanFolder(ctx, folder, &root)
    	if err != nil {
    		// No useful information...
    		return cache, err
    	}
    	s.newCache.forceCompact(dataScannerCompactAtChildren)
    	s.newCache.Info.LastUpdate = UTCNow()
    	s.newCache.Info.NextCycle = cache.Info.NextCycle
    	return s.newCache, nil
    }
    
    // sendUpdate() should be called on a regular basis when the newCache contains more recent total than previously.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. tools/docker-builder/types.go

    	Pull             *bool             `json:"pull,omitempty" hcl:"pull,optional"`
    	NoCache          *bool             `json:"no-cache,omitempty" hcl:"no-cache,optional"`
    }
    
    type Args struct {
    	Push              bool
    	Save              bool
    	Builder           string
    	SupportsEmulation bool
    	NoClobber         bool
    	NoCache           bool
    	Targets           []string
    	Variants          []string
    	Architectures     []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. pkg/proxy/endpointslicecache_test.go

    		t.Run(name, func(t *testing.T) {
    			esCache := NewEndpointSliceCache(tc.hostname, v1.IPv4Protocol, nil, nil)
    
    			cmc := newCacheMutationCheck(tc.endpointSlices)
    			for _, endpointSlice := range tc.endpointSlices {
    				esCache.updatePending(endpointSlice, false)
    			}
    
    			compareEndpointsMapsStr(t, esCache.getEndpointsMap(tc.namespacedName, esCache.trackerByServiceMap[tc.namespacedName].pending), tc.expectedMap)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    		if errors.IsNotFound(err) {
    			return nil
    		}
    		return err
    	}
    	return nil
    }
    
    func (d *namespacedResourcesDeleter) initOpCache(ctx context.Context) {
    	// pre-fill opCache with the discovery info
    	//
    	// TODO(sttts): get rid of opCache and http 405 logic around it and trust discovery info
    	resources, err := d.discoverResourcesFn()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/binder.go

    //     i.  If PVC binding is required, cache in-memory only:
    //     * For manual binding: update PV objects for prebinding to the corresponding PVCs.
    //     * For dynamic provisioning: update PVC object with a selected node from c)
    //     * For the pod, which PVCs and PVs need API updates.
    //     ii. Afterwards, the main scheduler caches the Pod->Node binding in the scheduler's pod cache,
    //     This is handled in the scheduler and not here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. cmd/data-usage-cache.go

    // dataUsageCacheV2 contains a cache of data usage entries version 2.
    type dataUsageCacheV2 struct {
    	Info  dataUsageCacheInfo
    	Cache map[string]dataUsageEntryV2
    }
    
    // dataUsageCacheV3 contains a cache of data usage entries version 3.
    type dataUsageCacheV3 struct {
    	Info  dataUsageCacheInfo
    	Cache map[string]dataUsageEntryV3
    }
    
    // dataUsageCacheV4 contains a cache of data usage entries version 4.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  8. tools/docker-builder/main.go

    	rootCmd.Flags().BoolVar(&globalArgs.Save, "save", globalArgs.Save, "save targets to tar.gz")
    	rootCmd.Flags().BoolVar(&globalArgs.NoCache, "no-cache", globalArgs.NoCache, "disable caching")
    	rootCmd.Flags().BoolVar(&globalArgs.NoClobber, "no-clobber", globalArgs.NoClobber, "do not allow pushing images that already exist")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    f4j-log4j12-1.7.5.jar:/home/tcagent1/agent/lib/trove4j.jar:/home/tcagent1/agent/lib/common-impl.jar:/home/tcagent1/agent/lib/ehcache-1.6.0-patch.jar:/home/tcagent1/agent/lib/buildAgent-updates-applying.jar:/home/tcagent1/agent/lib/agent-upgrade.jar:/home/tcagent1/agent/lib/commons-beanutils-core.jar:/home/tcagent1/agent/lib/app-wrapper.jar:/home/tcagent1/agent/lib/ehcache-1.7.2.jar:/home/tcagent1/agent/lib/jdom.jar:/home/tcagent1/agent/lib/spring-scripting/spring-scripting-jruby.jar:/home/tcagen...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. pkg/config/analysis/local/istiod_analyze.go

    		go mcs.Run(cancel)
    	}
    	return nil
    }
    
    type dfCache struct {
    	model.ConfigStore
    }
    
    func (d dfCache) RegisterEventHandler(kind config.GroupVersionKind, handler model.EventHandler) {
    	panic("implement me")
    }
    
    // Run intentionally left empty
    func (d dfCache) Run(_ <-chan struct{}) {
    }
    
    func (d dfCache) HasSynced() bool {
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top