Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,210 for cachez (0.19 sec)

  1. 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)
  2. src/cmd/go/internal/test/test.go

    		return false
    	}
    	if cache.DebugTest {
    		fmt.Fprintf(os.Stderr, "testcache: %s: test ID %x => input ID %x => %x\n", a.Package.ImportPath, testID, testInputsID, testAndInputKey(testID, testInputsID))
    	}
    
    	// Parse cached result in preparation for changing run time to "(cached)".
    	// If we can't parse the cached result, don't use it.
    	data, entry, err = cache.GetBytes(cache.Default(), testAndInputKey(testID, testInputsID))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K 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. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    	return &defaultFeatureSupportChecker{
    		checkingEndpoint: make(map[string]struct{}),
    	}
    }
    
    // Supports can check the featue from anywhere without storage if it was cached before.
    func (f *defaultFeatureSupportChecker) Supports(feature storage.Feature) bool {
    	switch feature {
    	case storage.RequestWatchProgress:
    		f.lock.Lock()
    		defer f.lock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/default.go

    	defaultCache Cache
    )
    
    // cacheREADME is a message stored in a README in the cache directory.
    // Because the cache lives outside the normal Go trees, we leave the
    // README as a courtesy to explain where it came from.
    const cacheREADME = `This directory holds cached build artifacts from the Go build system.
    Run "go clean -cache" if the directory is getting too large.
    Run "go clean -fuzzcache" to delete the fuzz cache.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. 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)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaConfigurationCachePerformanceTest.groovy

                    if (context.iteration > 1) {
                        def tag = action == storing
                            ? "Calculating task graph as no (cached configuration|configuration cache) is available"
                            : "Reusing configuration cache"
                        File buildLog = new File(invocationSettings.projectDir, "profile.log")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. pkg/kubelet/util/manager/cache_based_manager.go

    		}
    	}
    }
    
    // NewCacheBasedManager creates a manager that keeps a cache of all objects
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, the cached versions of all objects
    //     is referencing are invalidated
    //   - every GetObject() call tries to fetch the value from local cache; if it is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/FileBackedObjectHolderTest.groovy

            given:
            def cache = createStateCache(createOnDemandFileLock(file))
    
            and:
            cache.set "a"
    
            expect:
            cache.get() == "a"
    
            when:
            unlockUncleanly(file)
    
            then:
            isIntegrityViolated(file)
    
            when:
            cache.set "b"
    
            then:
            cache.get() == "b"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanConstructors.kt

    import groovy.lang.GroovyObjectSupport
    import org.gradle.cache.internal.CrossBuildInMemoryCache
    import org.gradle.cache.internal.CrossBuildInMemoryCacheFactory
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import sun.reflect.ReflectionFactory
    import java.lang.reflect.Constructor
    
    
    /**
     * A global service that caches the serialization constructors for bean types.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top