Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for uwcache (0.29 sec)

  1. cmd/iam-store.go

    		cache.iamGroupPolicyMap = newCache.iamGroupPolicyMap
    		cache.iamGroupsMap = newCache.iamGroupsMap
    		cache.iamPolicyDocsMap = newCache.iamPolicyDocsMap
    		cache.iamUserGroupMemberships = newCache.iamUserGroupMemberships
    		cache.iamUserPolicyMap = newCache.iamUserPolicyMap
    		cache.iamUsersMap = newCache.iamUsersMap
    		// For STS policy map, we need to merge the new cache with the existing
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    		t.Skip("skipping lengthy test in short mode")
    	}
    
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    
    	// Set GOCACHE to an empty directory so that a previous run of
    	// this test does not affect the staleness of the packages it builds.
    	tg.tempDir("gocache")
    	tg.setenv("GOCACHE", tg.path("gocache"))
    
    	// Copy the runtime packages into a temporary GOROOT
    	// so that we can change files.
    	var dirs []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	// We used to use it for C objects.
    	// Now we use it for the build cache, to separate dist's cache
    	// from any other cache the user might have, and for the location
    	// to build the bootstrap versions of the standard library.
    	obj := pathf("%s/pkg/obj", goroot)
    	if !isdir(obj) {
    		xmkdir(obj)
    	}
    	xatexit(func() { xremove(obj) })
    
    	// Create build cache directory.
    	objGobuild := pathf("%s/pkg/obj/go-build", goroot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller.go

    	dsStoreSynced cache.InformerSynced
    	// historyLister get list/get history from the shared informers's store
    	historyLister appslisters.ControllerRevisionLister
    	// historyStoreSynced returns true if the history store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	historyStoreSynced cache.InformerSynced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    			if state := s.state.get(); state != mSpanInUse {
    				print("s.state = ", state, "\n")
    				throw("non in-use span found with specials bit set")
    			}
    			// Check that this span was swept (it may be cached or uncached).
    			if !useCheckmark && !(s.sweepgen == sg || s.sweepgen == sg+3) {
    				// sweepgen was updated (+2) during non-checkmark GC pass
    				print("sweep ", s.sweepgen, " ", sg, "\n")
    				throw("gc: unswept span")
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    			//
    			// On the builders, we skip this step: we assume that 'dist test' is
    			// already using the result of a clean build, and because of test sharding
    			// and virtualization we usually start with a clean GOCACHE, so we would
    			// end up rebuilding large parts of the standard library that aren't
    			// otherwise relevant to the actual set of packages under test.
    			goInstall(toolenv(), gorootBinGo, toolchain...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top