Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,236 for store1 (0.12 sec)

  1. cmd/iam-store.go

    }
    
    // HasWatcher - returns if the storage system has a watcher.
    func (store *IAMStoreSys) HasWatcher() bool {
    	_, ok := store.IAMStorageAPI.(iamStorageWatcher)
    	return ok
    }
    
    // GetUser - fetches credential from memory.
    func (store *IAMStoreSys) GetUser(user string) (UserIdentity, bool) {
    	cache := store.rlock()
    	defer store.runlock()
    
    	u, ok := cache.iamUsersMap[user]
    	if !ok {
    		// Check the sts map
    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. pilot/pkg/config/memory/store.go

    )
    
    const ResourceVersion string = "ResourceVersion"
    
    // Make creates an in-memory config store from a config schemas
    // It is with validation
    func Make(schemas collection.Schemas) model.ConfigStore {
    	return newStore(schemas, false)
    }
    
    // MakeSkipValidation creates an in-memory config store from a config schemas
    // It is without validation
    func MakeSkipValidation(schemas collection.Schemas) model.ConfigStore {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. pkg/kubelet/util/store/store.go

    	keyRegex = regexp.MustCompile("^" + qualifiedKeyFmt + "$")
    
    	// ErrKeyNotFound is the error returned if key is not found in Store.
    	ErrKeyNotFound = fmt.Errorf("key is not found")
    )
    
    // Store provides the interface for storing keyed data.
    // Store must be thread-safe
    type Store interface {
    	// key must contain one or more characters in [A-Za-z0-9]
    	// Write writes data with key.
    	Write(key string, data []byte) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 22:18:30 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  4. internal/config/dns/store.go

    // ErrBucketConflict for buckets that already exist
    type ErrBucketConflict Error
    
    func (e ErrBucketConflict) Error() string {
    	return e.Bucket + " bucket conflict error: " + e.Err.Error()
    }
    
    // Store dns record store
    type Store interface {
    	Put(bucket string) error
    	Get(bucket string) ([]SrvRecord, error)
    	Delete(bucket string) error
    	List() (map[string][]SrvRecord, error)
    	DeleteRecord(record SrvRecord) error
    	Close() error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/cross-namespace-routing/store-route.yaml

    #$ - site-src/guides/multiple-ns.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: store
      namespace: store-ns
    spec:
      parentRefs:
      - name: shared-gateway
        namespace: infra-ns
      rules:
      - matches:
        - path:
            value: /store
        backendRefs:
        - name: store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 333 bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/Store.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.cache.internal;
    
    import java.util.function.Supplier;
    
    public interface Store<T> {
        T load(Supplier<T> createIfNotPresent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 763 bytes
    - Viewed (0)
  7. src/sync/atomic/type.go

    type Bool struct {
    	_ noCopy
    	v uint32
    }
    
    // Load atomically loads and returns the value stored in x.
    func (x *Bool) Load() bool { return LoadUint32(&x.v) != 0 }
    
    // Store atomically stores val into x.
    func (x *Bool) Store(val bool) { StoreUint32(&x.v, b32(val)) }
    
    // Swap atomically stores new into x and returns the previous value.
    func (x *Bool) Swap(new bool) (old bool) { return SwapUint32(&x.v, b32(new)) != 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/stored.rules

    Anže Sodja <******@****.***> 1717576978 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. pilot/pkg/config/file/store.go

    			_, err := s.inner.Update(*r.config)
    			if err != nil {
    				_, err = s.inner.Create(*r.config)
    				if err != nil {
    					return fmt.Errorf("cannot store config %s/%s %s from reader: %s",
    						r.schema.Version(), r.schema.Kind(), r.fullName(), err)
    				}
    			}
    			s.shas[key] = r.sha
    		}
    		newKeys[key] = r.schema.GroupVersionKind()
    		if oldKeys != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/VirtualFileSystem.java

        /**
         * Snapshots and stores the result in the VFS.
         *
         * If the snapshotted location is invalidated while snapshotting,
         * then the snapshot is not stored in the VFS to avoid inconsistent state.
         */
        FileSystemLocationSnapshot store(String absolutePath, Supplier<FileSystemLocationSnapshot> snapshotSupplier);
    
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top