Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for upperBound (0.35 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/Restriction.java

            if (lowerBoundInclusive != restriction.lowerBoundInclusive) {
                return false;
            }
    
            if (upperBound != null) {
                if (!upperBound.equals(restriction.upperBound)) {
                    return false;
                }
            } else if (restriction.upperBound != null) {
                return false;
            }
    
            return upperBoundInclusive == restriction.upperBoundInclusive;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc_test.go

    				classes[j].target = x + 2*rands.Float64()
    				classes[j].upperBound = x + 3*rands.Float64()
    				lowSum += classes[j].lowerBound
    				highSum += classes[j].upperBound
    			})
    		case 1:
    			style = "bound from above"
    			requiredSum = rands.Intn(probLen*3) + 1
    			requiredSumF = float64(requiredSum)
    			partition64(rands, probLen, requiredSumF, func(j int, x float64) {
    				classes[j].upperBound = x
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 18:17:27 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10TypeSystemCommonBackendContextForTypeMapping.kt

            for (upperBound in upperBounds) {
                val declaration = upperBound.constructor.declarationDescriptor as? ClassDescriptor ?: continue
                if (declaration.kind != ClassKind.INTERFACE && declaration.kind != ClassKind.ANNOTATION_CLASS) {
                    return upperBound
                }
            }
    
            return upperBounds.firstOrNull() ?: builtIns.nullableAnyType
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingSortedMultiset.java

      }
    
      @Override
      public SortedMultiset<E> headMultiset(E upperBound, BoundType boundType) {
        return delegate().headMultiset(upperBound, boundType);
      }
    
      @Override
      public SortedMultiset<E> subMultiset(
          E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) {
        return delegate().subMultiset(lowerBound, lowerBoundType, upperBound, upperBoundType);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. cmd/batch-job-common-types_test.go

    			sizeFilter: BatchJobSizeFilter{
    				UpperBound: 1 << 20,
    				LowerBound: 10 << 20,
    			},
    			err: errInvalidBatchJobSizeFilter,
    		},
    		{
    			// LowerBound == UpperBound -> empty range
    			sizeFilter: BatchJobSizeFilter{
    				UpperBound: 1 << 20,
    				LowerBound: 1 << 20,
    			},
    			err: errInvalidBatchJobSizeFilter,
    		},
    	}
    	for i, test := range tests {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 08 23:22:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/swiftpm/internal/VersionDependency.java

        private final String lowerBound;
        private final String upperBound;
        private final boolean upperInclusive;
    
        public VersionDependency(URI url, String version) {
            super(url);
            this.lowerBound = version;
            this.upperBound = null;
            upperInclusive = false;
        }
    
        public VersionDependency(URI url, String lowerBound, @Nullable String upperBound, boolean upperInclusive) {
            super(url);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/SortedMultiset.java

       * in the other.
       */
      SortedMultiset<E> descendingMultiset();
    
      /**
       * Returns a view of this multiset restricted to the elements less than {@code upperBound},
       * optionally including {@code upperBound} itself. The returned multiset is a view of this
       * multiset, so changes to one will be reflected in the other. The returned multiset supports all
       * operations that this multiset supports.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/SortedMultiset.java

       * in the other.
       */
      SortedMultiset<E> descendingMultiset();
    
      /**
       * Returns a view of this multiset restricted to the elements less than {@code upperBound},
       * optionally including {@code upperBound} itself. The returned multiset is a view of this
       * multiset, so changes to one will be reflected in the other. The returned multiset supports all
       * operations that this multiset supports.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    //  1. `classes[J].lowerBound <= allocs[J] <= classes[J].upperBound` and
    //  2. exactly one of the following is true:
    //     2a. `allocs[J] == fairProp * classes[J].target`,
    //     2b. `allocs[J] == classes[J].lowerBound && classes[J].lowerBound > fairProp * classes[J].target`, or
    //     2c. `allocs[J] == classes[J].upperBound && classes[J].upperBound < fairProp * classes[J].target`.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  10. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/UnmodifiableSortedMultiset.java

      }
    
      @Override
      public SortedMultiset<E> headMultiset(E upperBound, BoundType boundType) {
        return Multisets.unmodifiableSortedMultiset(delegate().headMultiset(upperBound, boundType));
      }
    
      @Override
      public SortedMultiset<E> subMultiset(
          E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) {
        return Multisets.unmodifiableSortedMultiset(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top