Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 149 for modcache (0.28 sec)

  1. src/cmd/go/testdata/script/build_cache_gomips.txt

    env GO111MODULE=off
    [short] skip # rebuilds std for mips
    
    # Set up fresh GOCACHE.
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    # Building for mipsle without setting GOMIPS will use floating point registers.
    env GOARCH=mipsle
    env GOOS=linux
    go build -gcflags=-S f.go
    stderr ADDD.F[0-9]+,.F[0-9]+,.F[0-9]+
    
    # Clean cache
    go clean -cache
    
    # Building with GOMIPS=softfloat will not use floating point registers
    env GOMIPS=softfloat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 859 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fuzz_dup_cache.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # This test checks that cached corpus loading properly handles duplicate entries (this can
    # happen when a f.Add value has a duplicate entry in the cached corpus.) Duplicate entries
    # should be discarded, and the rest of the cache should be loaded as normal.
    
    env GOCACHE=$WORK/cache
    env GODEBUG=fuzzdebug=1
    
    mkdir -p $GOCACHE/fuzz/fuzztest/FuzzTarget
    go run ./populate $GOCACHE/fuzz/fuzztest/FuzzTarget
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_list_compiled_concurrent.txt

    env GO111MODULE=on
    
    [short] skip
    [!cgo] skip
    
    # Regression test for golang.org/issue/29667:
    # spurious 'failed to cache compiled Go files' errors.
    
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    go list -json -compiled -test=false -export=false -deps=true -- . &
    go list -json -compiled -test=false -export=false -deps=true -- . &
    wait
    
    -- go.mod --
    module sandbox/bar
    -- bar.go --
    package bar
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 401 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    // changed. crdCache is a cached.Replaceable and updates are thread
    // safe. Thus, no lock is needed to protect this struct.
    type specCache struct {
    	crdCache          cached.LastSuccess[*apiextensionsv1.CustomResourceDefinition]
    	mergedVersionSpec cached.Value[*spec.Swagger]
    }
    
    func (s *specCache) update(crd *apiextensionsv1.CustomResourceDefinition) {
    	s.crdCache.Store(cached.Static(crd, generateCRDHash(crd)))
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_seed_corpus.txt

    ! stdout ^ok
    stdout 'Failing input written to testdata[/\\]fuzz[/\\]FuzzWithNoCache[/\\]'
    stdout FAIL
    
    # Write a crashing input to the cache
    mkdir $GOCACHE/fuzz/example.com/x/FuzzWithCache
    cp cache-file $GOCACHE/fuzz/example.com/x/FuzzWithCache/1
    
    # Test that fuzzing a target with a failure in the cache prints the crash
    # and writes this as a "new" crash to testdata/fuzz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  6. cmd/metrics-v3-system-memory.go

    package cmd
    
    import (
    	"context"
    )
    
    const (
    	memTotal     = "total"
    	memUsed      = "used"
    	memFree      = "free"
    	memBuffers   = "buffers"
    	memCache     = "cache"
    	memUsedPerc  = "used_perc"
    	memShared    = "shared"
    	memAvailable = "available"
    )
    
    var (
    	memTotalMD     = NewGaugeMD(memTotal, "Total memory on the node")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 05:10:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultInMemoryCacheDecoratorFactory.java

                MultiProcessSafeAsyncPersistentIndexedCache<K, V> memCache = applyInMemoryCaching(cacheId, asyncCache, maxEntriesToKeepInMemory, cacheInMemoryForShortLivedProcesses);
                return new CrossProcessSynchronizingIndexedCache<>(memCache, crossProcessCacheAccess);
            }
        }
    
        private static class CacheDetails {
            private final int maxEntries;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:36 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelCacheFactory.java

    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.apache.maven.model.building.ModelCache;
    import org.eclipse.aether.RepositorySystemSession;
    
    /**
     * Default implementation of {@link ModelCacheFactory}.
     */
    @Singleton
    @Named
    public class DefaultModelCacheFactory implements ModelCacheFactory {
        @Override
        public ModelCache createCache(RepositorySystemSession session) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. pkg/kubelet/server/stats/fs_resource_analyzer.go

    func (s *fsResourceAnalyzer) updateCachedPodVolumeStats() {
    	oldCache := s.cachedVolumeStats.Load().(statCache)
    	newCache := make(statCache)
    
    	// Copy existing entries to new map, creating/starting new entries for pods missing from the cache
    	for _, pod := range s.statsProvider.GetPods() {
    		if value, found := oldCache[pod.GetUID()]; !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 16:16:37 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CacheControlJvmTest.kt

    import org.junit.jupiter.api.Test
    
    class CacheControlJvmTest {
      @Test
      @Throws(Exception::class)
      fun completeBuilder() {
        val cacheControl =
          CacheControl.Builder()
            .noCache()
            .noStore()
            .maxAge(1, TimeUnit.SECONDS)
            .maxStale(2, TimeUnit.SECONDS)
            .minFresh(3, TimeUnit.SECONDS)
            .onlyIfCached()
            .noTransform()
            .immutable()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top