Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 596 for cLower (0.1 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/context.go

    func lower(c *context) bool {
    	ct := c.caseType()
    	if c.info&hasMappingMask == 0 || ct == cLower {
    		return c.copy()
    	}
    	if c.info&exceptionBit == 0 {
    		return c.copyXOR()
    	}
    	e := exceptions[c.info>>exceptionShift:]
    	offset := 2 + e[0]&lengthMask // size of header + fold string
    	if nLower := (e[1] >> lengthBits) & lengthMask; nLower != noChange {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    const (
    	cUncased          info = iota // 000
    	cTitle                        // 001
    	cLower                        // 010
    	cUpper                        // 011
    	cIgnorableUncased             // 100
    	cIgnorableCased               // 101 // lower case if mappings exist
    	cXORCase                      // 11x // case is cLower | ((rune&1) ^ x)
    
    	maxCaseMode = cUpper
    )
    
    func (c info) isCased() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/Closer.java

     *
     * <pre>{@code
     * Closer closer = Closer.create();
     * try {
     *   InputStream in = closer.register(openInputStream());
     *   OutputStream out = closer.register(openOutputStream());
     *   // do stuff
     * } catch (Throwable e) {
     *   // ensure that any checked exception types other than IOException that could be thrown are
     *   // provided here, e.g. throw closer.rethrow(e, CheckedException.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/Closer.java

     *
     * <pre>{@code
     * Closer closer = Closer.create();
     * try {
     *   InputStream in = closer.register(openInputStream());
     *   OutputStream out = closer.register(openOutputStream());
     *   // do stuff
     * } catch (Throwable e) {
     *   // ensure that any checked exception types other than IOException that could be thrown are
     *   // provided here, e.g. throw closer.rethrow(e, CheckedException.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/coverage/cover.go

    package coverage
    
    // This package contains support routines for coverage "fixup" in the
    // compiler, which happens when compiling a package whose source code
    // has been run through "cmd/cover" to add instrumentation. The two
    // important entry points are FixupVars (called prior to package init
    // generation) and FixupInit (called following package init
    // generation).
    
    import (
    	"cmd/compile/internal/base"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. src/cmd/cover/cover.go

    const usageMessage = "" +
    	`Usage of 'go tool cover':
    Given a coverage profile produced by 'go test':
    	go test -coverprofile=c.out
    
    Open a web browser displaying annotated source code:
    	go tool cover -html=c.out
    
    Write out an HTML file instead of launching a web browser:
    	go tool cover -html=c.out -o coverage.html
    
    Display coverage percentages to stdout for each function:
    	go tool cover -func=c.out
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. hack/make-rules/test.sh

      )
    }
    
    # TODO: This timeout should really be lower, this is a *long* time to test one
    # package, however pkg/api/testing in particular will fail with a lower timeout
    # currently. We should attempt to lower this over time.
    KUBE_TIMEOUT=${KUBE_TIMEOUT:--timeout=180s}
    KUBE_COVER=${KUBE_COVER:-n} # set to 'y' to enable coverage collection
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                    new ClosingCallable<TestCloseable>() {
                      @Override
                      public TestCloseable call(DeferredCloser closer) throws Exception {
                        closer.eventuallyClose(closeable1, closingExecutor);
                        closer.eventuallyClose(closeable2, closingExecutor);
                        return closeable3;
                      }
                    },
                    executor)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  9. 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)
  10. src/strconv/itoa.go

    // for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
    // for digit values >= 10.
    func FormatUint(i uint64, base int) string {
    	if fastSmalls && i < nSmalls && base == 10 {
    		return small(int(i))
    	}
    	_, s := formatBits(nil, i, base, false, false)
    	return s
    }
    
    // FormatInt returns the string representation of i in the given base,
    // for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top