Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 235 for compactor (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact.go

    	if compactInterval != 0 {
    		go compactor(ctx, client, compactInterval)
    	}
    }
    
    // compactor periodically compacts historical versions of keys in etcd.
    // It will compact keys with versions older than given interval.
    // In other words, after compaction, it will only contain keys set during last interval.
    // Any API call for the older versions of keys will return error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 17 02:54:36 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/compare/comparator.go

    )
    
    // Comparator diffs between a config dump from Istiod and one from Envoy
    type Comparator struct {
    	envoy, istiod *configdump.Wrapper
    	w             io.Writer
    	context       int
    	location      string
    }
    
    // NewComparator is a comparator constructor
    func NewComparator(w io.Writer, istiodResponses map[string][]byte, envoyResponse []byte) (*Comparator, error) {
    	c := &Comparator{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/compact/compact.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package compact defines a compact representation of language tags.
    //
    // Common language tags (at least all for which locale information is defined
    // in CLDR) are assigned a unique index. Each Tag is associated with such an
    // ID for selecting language-related resources (such as translations) as well
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/compact.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package language
    
    // CompactCoreInfo is a compact integer with the three core tags encoded.
    type CompactCoreInfo uint32
    
    // GetCompactCore generates a uint32 value that is guaranteed to be unique for
    // different language, region, and script values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 853 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_testing_utils_test.go

    		c.Lock()
    		defer c.Unlock()
    
    		if c.watchCache.resourceVersion < rv {
    			t.Fatalf("Can't compact into a future version: %v", resourceVersion)
    		}
    
    		if len(c.watchers.allWatchers) > 0 || len(c.watchers.valueWatchers) > 0 {
    			// We could consider terminating those watchers, but given
    			// watchcache doesn't really support compaction and we don't
    			// exercise it in tests, we just throw an error here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 20:43:52 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    // for which data exists in the text repository.The index will change over time
    // and should not be stored in persistent storage. If t does not match a compact
    // index, exact will be false and the compact index will be returned for the
    // first match after repeatedly taking the Parent of t.
    func LanguageID(t Tag) (id ID, exact bool) {
    	return t.language, t.full == nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/encoding/json/indent.go

    			dst = append(dst, '\\', 'u', '2', '0', '2', hex[src[i+2]&0xF])
    			start = i + len("\u2029")
    		}
    	}
    	return append(dst, src[start:]...)
    }
    
    // Compact appends to dst the JSON-encoded src with
    // insignificant space characters elided.
    func Compact(dst *bytes.Buffer, src []byte) error {
    	dst.Grow(len(src))
    	b := dst.AvailableBuffer()
    	b, err := appendCompact(b, src, false)
    	dst.Write(b)
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. android/guava-tests/benchmark/com/google/common/collect/MinMaxPriorityQueueBenchmark.java

        MIN_MAX {
          @Override
          public Queue<Integer> create(Comparator<Integer> comparator) {
            return MinMaxPriorityQueue.orderedBy(comparator).create();
          }
        },
        PRIORITY_QUEUE {
          @Override
          public Queue<Integer> create(Comparator<Integer> comparator) {
            return new PriorityQueue<>(11, comparator);
          }
        },
        INVERTED_MIN_MAX {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultAttributeMatchingStrategy.java

        @Override
        public void ordered(Comparator<T> comparator) {
            ordered(true, comparator);
        }
    
        @Override
        public void ordered(boolean pickLast, Comparator<T> comparator) {
            compatibilityRules.ordered(comparator);
            if (pickLast) {
                disambiguationRules.pickLast(comparator);
            } else {
                disambiguationRules.pickFirst(comparator);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultOrderedCompatibilityRule.java

    import java.util.Comparator;
    
    public class DefaultOrderedCompatibilityRule<T> implements Action<CompatibilityCheckDetails<T>> {
        private final Comparator<? super T> comparator;
        private final boolean reverse;
    
        public DefaultOrderedCompatibilityRule(Comparator<? super T> comparator, boolean reverse) {
            this.comparator = comparator;
            this.reverse = reverse;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top