Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 228 for Upper (0.37 sec)

  1. guava/src/com/google/common/collect/TreeRangeSet.java

          /*
           * firstComplementRangeUpperBound is the upper bound of the last complement range with lower
           * bound inside complementLowerBoundWindow.
           *
           * positiveItr starts at the first positive range with upper bound less than
           * firstComplementRangeUpperBound. (Positive range upper bounds correspond to complement range
           * lower bounds.)
           */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeRangeSet.java

          /*
           * firstComplementRangeUpperBound is the upper bound of the last complement range with lower
           * bound inside complementLowerBoundWindow.
           *
           * positiveItr starts at the first positive range with upper bound less than
           * firstComplementRangeUpperBound. (Positive range upper bounds correspond to complement range
           * lower bounds.)
           */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/Quantiles.java

       * {@code upper}. Assumes that {@code lower <= upper}. Correctly handles infinities (but not
       * {@code NaN}).
       */
      private static double interpolate(double lower, double upper, double remainder, double scale) {
        if (lower == NEGATIVE_INFINITY) {
          if (upper == POSITIVE_INFINITY) {
            // Return NaN when lower == NEGATIVE_INFINITY and upper == POSITIVE_INFINITY:
            return NaN;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/Quantiles.java

       * {@code upper}. Assumes that {@code lower <= upper}. Correctly handles infinities (but not
       * {@code NaN}).
       */
      private static double interpolate(double lower, double upper, double remainder, double scale) {
        if (lower == NEGATIVE_INFINITY) {
          if (upper == POSITIVE_INFINITY) {
            // Return NaN when lower == NEGATIVE_INFINITY and upper == POSITIVE_INFINITY:
            return NaN;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    	nonLetter := false
    	special := false // special letter
    	for _, b := range s {
    		if b >= utf8.RuneSelf {
    			return bytes.EqualFold
    		}
    		upper := b & caseMask
    		if upper < 'A' || upper > 'Z' {
    			nonLetter = true
    		} else if upper == 'K' || upper == 'S' {
    			// See above for why these letters are special.
    			special = true
    		}
    	}
    	if special {
    		return equalFoldRight
    	}
    	if nonLetter {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool-rebalance_gen.go

    		zb0001, bts, err = msgp.ReadUint8Bytes(bts)
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = rebalSaveOpts(zb0001)
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z rebalSaveOpts) Msgsize() (s int) {
    	s = msgp.Uint8Size
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

            }
        }
    
        /**
         * Creates an instance of {@link WildcardType} bound by upper and lower bounds
         *
         * @param upperBounds a wildcard upper bound types
         * @param lowerBounds a wildcard lower bound types
         * @return an instance of {@link WildcardType}
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/math/bits/bits.go

    	borrowOut = ((^x & y) | (^(x ^ y) & diff)) >> 63
    	return
    }
    
    // --- Full-width multiply ---
    
    // Mul returns the full-width product of x and y: (hi, lo) = x * y
    // with the product bits' upper half returned in hi and the lower
    // half returned in lo.
    //
    // This function's execution time does not depend on the inputs.
    func Mul(x, y uint) (hi, lo uint) {
    	if UintSize == 32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. cmd/batch-job-common-types_gen.go

    				return
    			}
    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z BatchJobKV) Msgsize() (s int) {
    	s = 1 + 4 + msgp.StringPrefixSize + len(z.Key) + 6 + msgp.StringPrefixSize + len(z.Value)
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    }
    ----
    
    A build script is also a Groovy or a Kotlin script:
    
    ====
    include::sample[dir="snippets/tutorial/upper/kotlin", files="build.gradle.kts[]"]
    include::sample[dir="snippets/tutorial/upper/groovy", files="build.gradle[]"]
    ----
    $ gradle -q upper
    include::{snippetsPath}/tutorial/upper/tests/upper.out[]
    ----
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top