Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,929 for Store2 (0.16 sec)

  1. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 154 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/config/aggregate/config.go

    	for _, store := range cr.stores[typ] {
    		config := store.Get(typ, name, namespace)
    		if config != nil {
    			return config
    		}
    	}
    	return nil
    }
    
    // List all configs in the stores.
    func (cr *store) List(typ config.GroupVersionKind, namespace string) []config.Config {
    	stores := cr.stores[typ]
    	if len(stores) == 0 {
    		return nil
    	}
    
    	var (
    		configs      []config.Config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Serialization.java

        for (int i = 0; i < size; i++) {
          @SuppressWarnings("unchecked") // reading data stored by writeMap
          K key = (K) stream.readObject();
          @SuppressWarnings("unchecked") // reading data stored by writeMap
          V value = (V) stream.readObject();
          map.put(key, value);
        }
      }
    
      /**
       * Stores the contents of a multiset in an output stream, as part of serialization. It does not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CompositeResultsStore.java

    import java.util.stream.Collectors;
    
    public class CompositeResultsStore implements ResultsStore {
        private final List<ResultsStore> stores;
        private Map<PerformanceExperiment, ResultsStore> tests;
    
        public CompositeResultsStore(ResultsStore... stores) {
            this.stores = Arrays.asList(stores);
        }
    
        @Override
        public List<PerformanceExperiment> getPerformanceExperiments() {
            buildTests();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/AbstractSetMultimap.java

       * values.
       */
      @Override
      public Map<K, Collection<V>> asMap() {
        return super.asMap();
      }
    
      /**
       * Stores a key-value pair in the multimap.
       *
       * @param key key to store in the multimap
       * @param value value to store in the multimap
       * @return {@code true} if the method increased the size of the multimap, or {@code false} if the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 4.8K bytes
    - Viewed (0)
Back to top