Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 486 for Upper (0.05 sec)

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

       * or equal to {@code upper}.
       *
       * @throws IllegalArgumentException if {@code lower} is greater than {@code upper}
       * @throws ClassCastException if {@code lower} and {@code upper} are not mutually comparable
       * @since 14.0
       */
      public static <C extends Comparable<?>> Range<C> closed(C lower, C upper) {
        return create(Cut.belowValue(lower), Cut.aboveValue(upper));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/upper/kotlin/build.gradle.kts

    tasks.register("upper") {
        doLast {
            val someString = "mY_nAmE"
            println("Original: $someString")
            println("Upper case: ${someString.toUpperCase()}")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 182 bytes
    - Viewed (0)
  3. src/unicode/letter.go

    			delta := cr.Delta[_case]
    			if delta > MaxRune {
    				// In an Upper-Lower sequence, which always starts with
    				// an UpperCase letter, the real deltas always look like:
    				//	{0, 1, 0}    UpperCase (Lower is next)
    				//	{-1, 0, -1}  LowerCase (Upper, Title are previous)
    				// The characters at even offsets from the beginning of the
    				// sequence are upper case; the ones at odd offsets are lower.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. src/encoding/gob/encgen.go

    	fmt.Fprint(&b, header)
    	printMaps(&b, "Array")
    	fmt.Fprint(&b, "\n")
    	printMaps(&b, "Slice")
    	for _, t := range types {
    		fmt.Fprintf(&b, arrayHelper, t.lower, t.upper)
    		fmt.Fprintf(&b, sliceHelper, t.lower, t.upper, t.zero, t.encoder)
    	}
    	source, err := format.Source(b.Bytes())
    	if err != nil {
    		log.Fatal("source format error:", err)
    	}
    	fd, err := os.Create(*output)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:39:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/upper/groovy/build.gradle

    tasks.register('upper') {
        doLast {
            String someString = 'mY_nAmE'
            println "Original: $someString"
            println "Upper case: ${someString.toUpperCase()}"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 183 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    //
    //	byte 1:
    //	  7..6  unused
    //	  5..3  length of 1st mapping of case type
    //	  2..0  length of 2nd mapping of case type
    //
    //	  case     1st    2nd
    //	  lower -> upper, title
    //	  upper -> lower, title
    //	  title -> lower, upper
    //
    // Lengths with the value 0x7 indicate no value and implies no change.
    // A length of 0 indicates a mapping to zero-length string.
    //
    // Body bytes:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

                                upper = res2.getUpperBound();
                                upperInclusive = res2.isUpperBoundInclusive();
                            }
                        }
    
                        // don't add if they are equal and one is not inclusive
                        if (lower == null || upper == null || lower.compareTo(upper) != 0) {
                            restrictions.add(new Restriction(lower, lowerInclusive, upper, upperInclusive));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. src/math/big/calibrate_test.go

    func computeSqrThreshold(from, to, step, nruns int, lower, upper string) int {
    	fmt.Printf("Calibrating threshold between %s and %s\n", lower, upper)
    	fmt.Printf("Looking for a timing difference for x between %d - %d words by %d step\n", from, to, step)
    	var initPos bool
    	var threshold int
    	for i := from; i <= to; i += step {
    		baseline := measureSqr(i, nruns, lower)
    		testval := measureSqr(i, nruns, upper)
    		pos := baseline > testval
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. src/regexp/syntax/perl_groups.go

    	`[:print:]`:   {+1, code12},
    	`[:^print:]`:  {-1, code12},
    	`[:punct:]`:   {+1, code13},
    	`[:^punct:]`:  {-1, code13},
    	`[:space:]`:   {+1, code14},
    	`[:^space:]`:  {-1, code14},
    	`[:upper:]`:   {+1, code15},
    	`[:^upper:]`:  {-1, code15},
    	`[:word:]`:    {+1, code16},
    	`[:^word:]`:   {-1, code16},
    	`[:xdigit:]`:  {+1, code17},
    	`[:^xdigit:]`: {-1, code17},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/math/big/ftoa.go

    	// 2) Compute lower bound by subtracting 1/2 ulp.
    	var lower decimal
    	var tmp nat
    	lower.init(tmp.sub(mant, natOne), exp)
    
    	// 3) Compute upper bound by adding 1/2 ulp.
    	var upper decimal
    	upper.init(tmp.add(mant, natOne), exp)
    
    	// The upper and lower bounds are possible outputs only if
    	// the original mantissa is even, so that ToNearestEven rounding
    	// would round to the original mantissa and not the neighbors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top