Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isCreate (0.09 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		}
    		namespaceScoped = scoper.NamespaceScoped()
    	}
    
    	// what verbs are supported by the storage, used to know what verbs we support per path
    	creater, isCreater := storage.(rest.Creater)
    	namedCreater, isNamedCreater := storage.(rest.NamedCreater)
    	lister, isLister := storage.(rest.Lister)
    	getter, isGetter := storage.(rest.Getter)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    		d.Policy = doc.Policy
    		return nil
    	}
    	*d = doc
    	return nil
    }
    
    // key options
    type options struct {
    	ttl int64 // expiry in seconds
    }
    
    type iamWatchEvent struct {
    	isCreated bool // !isCreated implies a delete event.
    	keyPath   string
    }
    
    // iamCache contains in-memory cache of IAM data.
    type iamCache struct {
    	updatedAt time.Time
    
    	// map of policy names to policy definitions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top