Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for unconditionally (0.05 sec)

  1. android/guava/src/com/google/common/collect/TreeMultiset.java

          return this;
        }
    
        AvlNode<E> add(
            Comparator<? super E> comparator, @ParametricNullness E e, int count, int[] result) {
          /*
           * It speeds things up considerably to unconditionally add count to totalCount here,
           * but that destroys failure atomicity in the case of count overflow. =(
           */
          int cmp = comparator.compare(e, getElement());
          if (cmp < 0) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Dec 09 15:58:48 UTC 2025
    - 33.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/TreeMultiset.java

          return this;
        }
    
        AvlNode<E> add(
            Comparator<? super E> comparator, @ParametricNullness E e, int count, int[] result) {
          /*
           * It speeds things up considerably to unconditionally add count to totalCount here,
           * but that destroys failure atomicity in the case of count overflow. =(
           */
          int cmp = comparator.compare(e, getElement());
          if (cmp < 0) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Dec 09 15:58:48 UTC 2025
    - 34.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.33.md

    - Removed the `JobPodFailurePolicy` feature gate, which graduated to GA in 1.31 and was unconditionally enabled. ([#129498](https://github.com/kubernetes/kubernetes/pull/129498), [@carlory](https://github.com/carlory))
    - Removed the deprecated `pod_scheduling_duration_seconds` metric. Users need to
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Dec 10 01:15:24 UTC 2025
    - 334.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.34.md

    - NONW ([#132890](https://github.com/kubernetes/kubernetes/pull/132890), [@atiratree](https://github.com/atiratree)) [SIG Apps]
    - Promoted the `SeparateTaintEvictionController` feature gate to GA; it is now enabled unconditionally. ([#122634](https://github.com/kubernetes/kubernetes/pull/122634), [@carlory](https://github.com/carlory)) [SIG API Machinery, Apps, Node and Testing]
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Dec 10 01:13:50 UTC 2025
    - 333.3K bytes
    - Viewed (1)
Back to top