Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 272 for uwcache (0.43 sec)

  1. src/os/example_test.go

    		}
    		return os.ReadFile(filepath.Join(dir, name))
    	}
    
    	var mkdirOnce sync.Once
    	putCache := func(name string, b []byte) error {
    		if dirErr != nil {
    			return &os.PathError{Op: "putCache", Path: name, Err: dirErr}
    		}
    		mkdirOnce.Do(func() {
    			if err := os.MkdirAll(dir, 0700); err != nil {
    				log.Printf("can't create user cache dir: %v", err)
    			}
    		})
    		return os.WriteFile(filepath.Join(dir, name), b, 0600)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 17:35:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. releasenotes/notes/cds-cache.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 26732
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 08 19:34:01 UTC 2021
    - 245 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/initScripts/cacheRetention/groovy/gradleUserHome/init.d/cache-settings.gradle

    daz <******@****.***> 1711489416 -0600
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 21:43:36 UTC 2024
    - 350 bytes
    - Viewed (0)
  4. pkg/kubelet/container/cache_test.go

    func TestCacheGetPodDoesNotExist(t *testing.T) {
    	cache := NewCache()
    	podID, status := getTestPodIDAndStatus(0)
    	// If the pod does not exist in cache, cache should return an status
    	// object with id filled.
    	actualStatus, actualErr := cache.Get(podID)
    	assert.Equal(t, status, actualStatus)
    	assert.Equal(t, nil, actualErr)
    }
    
    func TestDelete(t *testing.T) {
    	cache := &cache{pods: map[types.UID]*data{}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 24 20:23:12 UTC 2020
    - 6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/install_move_not_stale.txt

    env GOROOT=$WORK${/}gopath${/}src${/}new
    go env GOROOT
    stdout $WORK[\\/]gopath[\\/]src[\\/]new
    cd new
    ! stale net
    
    # Add a control case to check that std is
    # stale with an empty cache
    env GOCACHE=$WORK${/}gopath${/}cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:51:12 UTC 2022
    - 625 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/clean_testcache.txt

    stderr 'go: clean -testcache cannot be used with package arguments'
    
    # golang.org/issue/29100: 'go clean -testcache' should succeed
    # if the cache directory doesn't exist at all.
    # It should not write a testexpire.txt file, since there are no
    # test results that need to be invalidated in the first place.
    env GOCACHE=$WORK/nonexistent
    go clean -testcache
    ! exists $WORK/nonexistent
    
    -- x/x_test.go --
    package x_test
    import (
        "testing"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 680 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/StaticVersionsDynamicListingReadOnlyCacheDependencyResolutionTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.resolve.rocache
    
    class StaticVersionsDynamicListingReadOnlyCacheDependencyResolutionTest extends StaticVersionsReadOnlyCacheDependencyResolutionTest {
    
        @Override
        boolean isResolveDynamic() {
            true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 868 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ArtifactCacheLockingAccessCoordinator.java

        /**
         * Creates a cache implementation that is managed by this locking manager. This method may be used at any time.
         *
         * <p>The returned cache may only be used by an action being run from {@link #useCache(org.gradle.internal.Factory)}.
         * In this instance, an exclusive lock will be held on the cache.
         *
         */
        <K, V> IndexedCache<K, V> createCache(String cacheName, Serializer<K> keySerializer, Serializer<V> valueSerializer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_limit_dup_entry.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # FuzzA attempts to cause the mutator to create duplicate inputs that generate
    # new coverage. Previously this would trigger a corner case when the fuzzer
    # had an execution limit, causing it to deadlock and sit in the coordinator
    # loop indefinitely, failing to exit once the limit had been exhausted.
    
    go test -fuzz=FuzzA -fuzztime=100x -parallel=1
    
    -- go.mod --
    module m
    
    go 1.16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 725 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cache_vet.txt

    [compiler:gccgo] skip  # gccgo has no standard packages
    
    # Start with a clean build cache:
    # test failures may be masked if the cache has just the right entries already.
    env GOCACHE=$WORK/cache
    
    # Run 'go vet os/user' once to warm up the cache.
    go vet os/user
    
    # Check that second vet reuses cgo-derived inputs.
    # The first command could be build instead of vet,
    # except that if the cache is empty and there's a net.a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 721 bytes
    - Viewed (0)
Back to top