Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,165 for _lower (0.27 sec)

  1. src/unicode/letter_test.go

    		u := upper[i]
    		if TurkishCase.ToLower(l) != l {
    			t.Errorf("lower(U+%04X) is U+%04X not U+%04X", l, TurkishCase.ToLower(l), l)
    		}
    		if TurkishCase.ToUpper(u) != u {
    			t.Errorf("upper(U+%04X) is U+%04X not U+%04X", u, TurkishCase.ToUpper(u), u)
    		}
    		if TurkishCase.ToUpper(l) != u {
    			t.Errorf("upper(U+%04X) is U+%04X not U+%04X", l, TurkishCase.ToUpper(l), u)
    		}
    		if TurkishCase.ToLower(u) != l {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  2. src/strconv/ftoaryu.go

    func computeBounds(mant uint64, exp int, flt *floatInfo) (lower, central, upper uint64, e2 int) {
    	if mant != 1<<flt.mantbits || exp == flt.bias+1-int(flt.mantbits) {
    		// regular case (or denormals)
    		lower, central, upper = 2*mant-1, 2*mant, 2*mant+1
    		e2 = exp - 1
    		return
    	} else {
    		// border of an exponent
    		lower, central, upper = 4*mant-1, 4*mant, 4*mant+2
    		e2 = exp - 2
    		return
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.td

      let summary = "Lower tf.ReadVariable and tf.AssignVariable";
    
      let description = [{
        This pass will lower AssignVariableOp and ReadVariableOp to their ml_program
        equivalents, for those resources which come from a VarHandle op, but also
        for those which come from a "bound input" parameter. For the latter,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. src/unicode/example_test.go

    			fmt.Println("\tis digit rune")
    		}
    		if unicode.IsGraphic(c) {
    			fmt.Println("\tis graphic rune")
    		}
    		if unicode.IsLetter(c) {
    			fmt.Println("\tis letter rune")
    		}
    		if unicode.IsLower(c) {
    			fmt.Println("\tis lower case rune")
    		}
    		if unicode.IsMark(c) {
    			fmt.Println("\tis mark rune")
    		}
    		if unicode.IsNumber(c) {
    			fmt.Println("\tis number rune")
    		}
    		if unicode.IsPrint(c) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 00:18:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  5. cmd/speedtest.go

    				// been seen recently due to hardware issues
    				// causes Reads() to go slower than Writes().
    				//
    				// Send such results anyways as this shall
    				// expose a problem underneath.
    				if totalPut > throughputHighestPut {
    					throughputHighestResults = results
    					throughputHighestPut = totalPut
    					// let the client see lower value as well
    					throughputHighestGet = totalGet
    				}
    				sendResult()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/unicode/graphic_test.go

    		if got != want {
    			t.Errorf("%U incorrect: got %t; want %t", i, got, want)
    		}
    	}
    }
    
    func TestIsLowerLatin1(t *testing.T) {
    	for i := rune(0); i <= MaxLatin1; i++ {
    		got := IsLower(i)
    		want := Is(Lower, i)
    		if got != want {
    			t.Errorf("%U incorrect: got %t; want %t", i, got, want)
    		}
    	}
    }
    
    func TestNumberLatin1(t *testing.T) {
    	for i := rune(0); i <= MaxLatin1; i++ {
    		got := IsNumber(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/compile.go

    	{"schedule", "regalloc"},
    	// the rules in late lower run after the general rules.
    	{"lower", "late lower"},
    	// late lower may generate some values that need to be CSEed.
    	{"late lower", "lowered cse"},
    	// checkLower must run after lowering & subsequent dead code elim
    	{"lower", "checkLower"},
    	{"lowered deadcode", "checkLower"},
    	{"late lower", "checkLower"},
    	// late nilcheck needs instructions to be scheduled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceResults.groovy

        }
    
        void assertCurrentVersionHasNotRegressed() {
            if (hasRegressionChecks()) {
                def slower = checkBaselineVersion({ it.significantlyFasterThan(current) }, { it.getSpeedStatsAgainst(displayName, current) })
                if (slower) {
                    throw new AssertionError(Object.cast(slower))
                }
            }
        }
    
        void assertCurrentVersionHasNotRegressedWithHighRelativeMedianDifference() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtFlexibleTypeRenderer.kt

                val isTheSameType = lower is KaNonErrorClassType && upper is KaNonErrorClassType && lower.classId == upper.classId ||
                        lower is KaTypeParameterType && upper is KaTypeParameterType && lower.symbol == upper.symbol
                if (isTheSameType &&
                    lower.nullability == KaTypeNullability.NON_NULLABLE
                    && upper.nullability == KaTypeNullability.NULLABLE
                ) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/go/scanner/scanner.go

    }
    
    func digitVal(ch rune) int {
    	switch {
    	case '0' <= ch && ch <= '9':
    		return int(ch - '0')
    	case 'a' <= lower(ch) && lower(ch) <= 'f':
    		return int(lower(ch) - 'a' + 10)
    	}
    	return 16 // larger than any legal digit val
    }
    
    func lower(ch rune) rune     { return ('a' - 'A') | ch } // returns lower-case ch iff ch is ASCII letter
    func isDecimal(ch rune) bool { return '0' <= ch && ch <= '9' }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
Back to top