Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 272 for uwcache (0.58 sec)

  1. src/cmd/compile/internal/ssa/func.go

    // sets to be reused by f.newSparseMapPos.
    func (f *Func) retSparseMapPos(ss *sparseMapPos) {
    	f.Cache.freeSparseMapPos(ss)
    }
    
    // newPoset returns a new poset from the internal cache
    func (f *Func) newPoset() *poset {
    	if len(f.Cache.scrPoset) > 0 {
    		po := f.Cache.scrPoset[len(f.Cache.scrPoset)-1]
    		f.Cache.scrPoset = f.Cache.scrPoset[:len(f.Cache.scrPoset)-1]
    		return po
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Cache.kt

      /**
       * Closes the cache and deletes all of its stored values. This will delete all files in the cache
       * directory including files that weren't created by the cache.
       */
      @Throws(IOException::class)
      fun delete() {
        cache.delete()
      }
    
      /**
       * Deletes all values stored in the cache. In-flight writes to the cache will complete normally,
       * but the corresponding responses will not be stored.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. src/runtime/mcache.go

    var emptymspan mspan
    
    func allocmcache() *mcache {
    	var c *mcache
    	systemstack(func() {
    		lock(&mheap_.lock)
    		c = (*mcache)(mheap_.cachealloc.alloc())
    		c.flushGen.Store(mheap_.sweepgen)
    		unlock(&mheap_.lock)
    	})
    	for i := range c.alloc {
    		c.alloc[i] = &emptymspan
    	}
    	c.nextSample = nextSample()
    	return c
    }
    
    // freemcache releases resources associated with this
    // mcache and puts the object onto a free list.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. test/fixedbugs/issue59709.dir/dcache.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package dcache
    
    import (
    	"./aconfig"
    	"./bresource"
    	"./cmem"
    )
    
    type Module struct {
    	cfg  *aconfig.Config
    	err  error
    	last any
    }
    
    //go:noinline
    func TD() {
    }
    
    func (m *Module) Configure(x string) error {
    	if m.err != nil {
    		return m.err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 21:04:28 UTC 2023
    - 626 bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCoordinator.java

    import org.gradle.cache.FileLockManager;
    import org.gradle.cache.IndexedCacheParameters;
    import org.gradle.cache.InsufficientLockModeException;
    import org.gradle.cache.LockOptions;
    import org.gradle.cache.LockTimeoutException;
    import org.gradle.cache.MultiProcessSafeIndexedCache;
    import org.gradle.cache.internal.btree.BTreePersistentIndexedCache;
    import org.gradle.cache.internal.cacheops.CacheAccessOperationsStack;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/clean_cache_n.txt

    env GOCACHE=$WORK/cache
    
    # Build something so that the cache gets populates
    go build main.go
    
    # Check that cache contains directories before running
    exists $GOCACHE/00
    
    # Run go clean -cache -n and ensure that directories weren't deleted
    go clean -cache -n
    exists $GOCACHE/00
    
    # Re-run go clean cache without the -n flag go ensure that directories were properly removed
    go clean -cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 637 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_cache.txt

    [!fuzz-instrumented] skip
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Fuzz cache should not exist after a regular test run.
    go test .
    exists $GOCACHE
    ! exists $GOCACHE/fuzz
    
    # Fuzzing should write interesting values to the cache.
    go test -fuzz=FuzzY -fuzztime=100x .
    go run ./contains_files $GOCACHE/fuzz/example.com/y/FuzzY
    
    # 'go clean -cache' should not delete the fuzz cache.
    go clean -cache
    exists $GOCACHE/fuzz
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cache_unix.txt

    # With all three set, we should prefer GOCACHE.
    go env GOCACHE
    stdout $WORK'/gocache$'
    
    # Without GOCACHE, we should prefer XDG_CACHE_HOME over HOME.
    env GOCACHE=
    go env GOCACHE
    stdout $WORK'/xdg/go-build$$'
    
    # With only HOME set, we should use $HOME/.cache.
    env XDG_CACHE_HOME=
    go env GOCACHE
    stdout $WORK'/home/.cache/go-build$'
    
    # With no guidance from the environment, we must disable the cache, but that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 17:09:07 UTC 2023
    - 1010 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_nocache.txt

    env GOCACHE=test
    ! go build -o triv triv.go
    stderr 'build cache is required, but could not be located: GOCACHE is not an absolute path'
    
    # An explicit GOCACHE=off also disables builds.
    env GOCACHE=off
    ! go build -o triv triv.go
    stderr 'build cache is disabled by GOCACHE=off'
    
    # If GOCACHE is set to an unwritable directory, we should diagnose it as such.
    [GOOS:windows] stop # Does not support unwritable directories.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_cache_pgo.txt

    [short] skip
    
    # Set up fresh GOCACHE.
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    # Building trivial non-main package should run preprofile the first time.
    go build -x -pgo=default.pgo lib.go
    stderr 'preprofile.*default\.pgo'
    
    # ... but not again ...
    go build -x -pgo=default.pgo lib.go
    ! stderr 'preprofile.*default\.pgo'
    
    # ... unless we use -a.
    go build -a -x -pgo=default.pgo lib.go
    stderr 'preprofile.*default\.pgo'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 18:28:25 UTC 2024
    - 927 bytes
    - Viewed (0)
Back to top