Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,669 for rstore (0.1 sec)

  1. src/cmd/compile/internal/ssa/cse_test.go

    			Valu("r5", OpAdd64, c.config.Types.Int64, 0, nil, "r2", "r3"),
    			Valu("r10", OpAdd64, c.config.Types.Int64, 0, nil, "r6", "r9"),
    			Valu("rstore", OpStore, types.TypeMem, 0, c.config.Types.Int64, "raddr", "r10", "raddrdef"),
    			Goto("exit")),
    		Bloc("exit",
    			Exit("rstore")))
    
    	CheckFunc(fun.f)
    	cse(fun.f)
    	deadcode(fun.f)
    	CheckFunc(fun.f)
    
    	s1Cnt := 2
    	// r1 == r2 == r3, needs to remove two of this set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	JNE           openSSEPreparePolyKey
    
    	// A0|B0 hold the Poly1305 32-byte key, C0,D0 can be discarded
    	PADDL ·chacha20Constants<>(SB), A0; PADDL state1Store, B0
    
    	// Clamp and store the key
    	PAND ·polyClampMask<>(SB), A0
    	MOVO A0, rStore; MOVO B0, sStore
    
    	// Hash AAD
    	MOVQ ad_len+80(FP), itr2
    	CALL polyHashADInternal<>(SB)
    
    openSSEMainLoop:
    	CMPQ inl, $256
    	JB   openSSEMainLoopDone
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	DestroyFunc func()
    }
    
    // Note: the rest.StandardStorage interface aggregates the common REST verbs
    var _ rest.StandardStorage = &Store{}
    var _ rest.TableConvertor = &Store{}
    var _ GenericStore = &Store{}
    
    var _ rest.SingularNameProvider = &Store{}
    
    const (
    	OptimisticLockErrorMsg        = "the object has been modified; please apply your changes to the latest version and try again"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    type store struct {
    	client              *clientv3.Client
    	codec               runtime.Codec
    	versioner           storage.Versioner
    	transformer         value.Transformer
    	pathPrefix          string
    	groupResource       schema.GroupResource
    	groupResourceString string
    	watcher             *watcher
    	leaseManager        *leaseManager
    }
    
    func (s *store) RequestWatchProgress(ctx context.Context) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. internal/store/store.go

    	DelList(key []string) error
    	Open() error
    	Delete() error
    	Extension() string
    }
    
    // Key denotes the key present in the store.
    type Key struct {
    	Name   string
    	IsLast bool
    }
    
    // replayItems - Reads the items from the store and replays.
    func replayItems[I any](store Store[I], doneCh <-chan struct{}, log logger, id string) <-chan Key {
    	keyCh := make(chan Key)
    
    	go func() {
    		defer xioutil.SafeClose(keyCh)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 25 16:44:20 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. pilot/pkg/autoregistration/internal/state/store.go

    	IsControllerOf(wle *config.Config) bool
    }
    
    // NewStore returns a new Store instance.
    func NewStore(store model.ConfigStoreController, cb StoreCallbacks) *Store {
    	return &Store{
    		store: store,
    		cb:    cb,
    	}
    }
    
    // UpdateHealth updates the associated WorkloadEntries health status
    // based on the corresponding health check performed by istio-agent.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top