Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,036 for cachez (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    ====
    
    By default, Gradle caches changing modules for 24 hours. To change how long Gradle will cache the meta-data and artifacts for a changing module, use:
    
    .Changing module cache control
    ====
    include::sample[dir="snippets/dependencyManagement/troubleshooting-cache-changing/kotlin",files="build.gradle.kts[tags=changing-module-cache-control]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/help/helpdoc.go

    The go command periodically deletes cached data that has not been
    used recently. Running 'go clean -cache' deletes all cached data.
    
    The build cache correctly accounts for changes to Go source files,
    compilers, compiler options, and so on: cleaning the cache explicitly
    should not be necessary in typical use. However, the build cache
    does not detect changes to C libraries imported with cgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	w.resizeCacheLocked(event.RecordTime)
    	if w.isCacheFullLocked() {
    		// Cache is full - remove the oldest element.
    		w.startIndex++
    		w.removedEventSinceRelist = true
    	}
    	w.cache[w.endIndex%w.capacity] = event
    	w.endIndex++
    }
    
    // resizeCacheLocked resizes the cache if necessary:
    // - increases capacity by 2x if cache is full and all cached events occurred within last eventFreshDuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

        quantfork::QuantizeRegionOp op, int index,
        llvm::DenseMap<Value, int> *cache) {
      Value in = op.getOperand(index);
      auto cached = cache->insert({in, 0});
      if (!cached.second) {
        operand_states_.insert({{op, index}, cached.first->second});
        return;
      }
      cached.first->second = InitializeState(op, index, /*as_result=*/false);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/jwks_resolver.go

    	PushFunc func()
    
    	// cache for JWT public key.
    	// map key is jwtKey, map value is jwtPubKeyEntry.
    	keyEntries sync.Map
    
    	secureHTTPClient *http.Client
    	httpClient       *http.Client
    	refreshTicker    *time.Ticker
    
    	// Cached key will be removed from cache if (time.now - cachedItem.lastUsedTime >= evictionDuration), this prevents key cache growing indefinitely.
    	evictionDuration time.Duration
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. security/pkg/nodeagent/cache/secretcache.go

    		// Check if this is a stale scheduled rotating task.
    		if cached := sc.cache.GetWorkload(); cached != nil {
    			if cached.CreatedTime == item.CreatedTime {
    				resourceLog(item.ResourceName).Debugf("rotating certificate")
    				// Clear the cache so the next call generates a fresh certificate
    				sc.cache.SetWorkload(nil)
    				sc.OnSecretUpdate(item.ResourceName)
    			}
    		}
    		return nil
    	}, delay)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

            }
            spec.outputContains("Reusing configuration cache.")
        }
    
        private void assertHasStoreReason(HasBuildActions details) {
            if (quietLogging) {
                // Runs in quiet mode, and does not log anything
                return
            }
            if (details.runsTasks) {
                spec.outputContains("Calculating task graph as no cached configuration is available for tasks:")
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. pkg/scheduler/util/assumecache/assume_cache.go

    	"k8s.io/client-go/tools/cache"
    )
    
    // Informer is the subset of [cache.SharedInformer] that NewAssumeCache depends upon.
    type Informer interface {
    	AddEventHandler(handler cache.ResourceEventHandler) (cache.ResourceEventHandlerRegistration, error)
    }
    
    // AddTestObject adds an object to the assume cache.
    // Only use this for unit testing!
    func AddTestObject(cache *AssumeCache, obj interface{}) {
    	cache.add(obj)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	if bindings == nil {
    		return fmt.Errorf("failed to get cached bindings for pod %q", podName)
    	}
    	if claimsToProvision == nil {
    		return fmt.Errorf("failed to get cached claims to provision for pod %q", podName)
    	}
    
    	lastProcessedBinding := 0
    	lastProcessedProvisioning := 0
    	defer func() {
    		// only revert assumed cached updates for volumes we haven't successfully bound
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	if s.ctx != nil {
    		return fmt.Errorf("policy source already running")
    	}
    
    	// Wait for initial cache sync of policies and informers before reconciling
    	// any
    	if !cache.WaitForNamedCacheSync(fmt.Sprintf("%T", s), ctx.Done(), s.UpstreamHasSynced) {
    		err := ctx.Err()
    		if err == nil {
    			err = fmt.Errorf("initial cache sync for %T failed", s)
    		}
    		return err
    	}
    
    	s.ctx = ctx
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top