Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for aranges (0.09 sec)

  1. cmd/iam-store.go

    		}
    
    		newCache.buildUserGroupMemberships()
    	}
    
    	cache := store.lock()
    	defer store.unlock()
    
    	// We should only update the in-memory cache if there were no changes
    	// to the in-memory cache since the disk loading began. If there
    	// were changes to the in-memory cache we should wait for the next
    	// cycle until we can safely update the in-memory cache.
    	//
    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. cmd/iam.go

    func (sys *IAMSys) periodicRoutines(ctx context.Context, baseInterval time.Duration) {
    	// Watch for IAM config changes for iamStorageWatcher.
    	watcher, isWatcher := sys.store.IAMStorageAPI.(iamStorageWatcher)
    	if isWatcher {
    		go func() {
    			ch := watcher.watch(ctx, iamConfigPrefix)
    			for event := range ch {
    				if err := sys.loadWatchedEvent(ctx, event); err != nil {
    					// we simply log errors
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    	for _, obj := range r.HTTPRoute {
    		buildHTTPVirtualServices(r, obj, gatewayRoutes, meshRoutes)
    	}
    	for _, obj := range r.GRPCRoute {
    		buildGRPCVirtualServices(r, obj, gatewayRoutes, meshRoutes)
    	}
    	for _, vsByHost := range gatewayRoutes {
    		for _, vsConfig := range vsByHost {
    			result = append(result, *vsConfig)
    		}
    	}
    	for _, vsByHost := range meshRoutes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top