Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 538 for cLower (0.12 sec)

  1. android/guava/src/com/google/common/primitives/UnsignedBytes.java

            int strideLimit = minLength & ~(stride - 1);
            int i;
    
            /*
             * Compare 8 bytes at a time. Benchmarking on x86 shows a stride of 8 bytes is no slower
             * than 4 bytes even on 32-bit. On the other hand, it is substantially faster on 64-bit.
             */
            for (i = 0; i < strideLimit; i += stride) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/UnsignedBytes.java

            int strideLimit = minLength & ~(stride - 1);
            int i;
    
            /*
             * Compare 8 bytes at a time. Benchmarking on x86 shows a stride of 8 bytes is no slower
             * than 4 bytes even on 32-bit. On the other hand, it is substantially faster on 64-bit.
             */
            for (i = 0; i < strideLimit; i += stride) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. src/strings/strings_test.go

    	if l != lower {
    		t.Errorf("Lower(lower) is %s not %s", l, lower)
    	}
    	l = ToLowerSpecial(unicode.TurkishCase, upper)
    	if l != lower {
    		t.Errorf("Lower(upper) is %s not %s", l, lower)
    	}
    }
    
    func TestTrimSpace(t *testing.T) { runStringTests(t, TrimSpace, "TrimSpace", trimSpaceTests) }
    
    var trimTests = []struct {
    	f            string
    	in, arg, out string
    }{
    	{"Trim", "abba", "a", "bb"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. src/io/io.go

    type ReadCloser interface {
    	Reader
    	Closer
    }
    
    // WriteCloser is the interface that groups the basic Write and Close methods.
    type WriteCloser interface {
    	Writer
    	Closer
    }
    
    // ReadWriteCloser is the interface that groups the basic Read, Write and Close methods.
    type ReadWriteCloser interface {
    	Reader
    	Writer
    	Closer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. src/mime/type.go

    	var buf [10]byte
    	lower := buf[:0]
    	const utf8RuneSelf = 0x80 // from utf8 package, but not importing it.
    	for i := 0; i < len(ext); i++ {
    		c := ext[i]
    		if c >= utf8RuneSelf {
    			// Slow path.
    			si, _ := mimeTypesLower.Load(strings.ToLower(ext))
    			s, _ := si.(string)
    			return s
    		}
    		if 'A' <= c && c <= 'Z' {
    			lower = append(lower, c+('a'-'A'))
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

                        if (lower == null || upper == null || lower.compareTo(upper) != 0) {
                            restrictions.add(new Restriction(lower, lowerInclusive, upper, upperInclusive));
                        } else if (lowerInclusive && upperInclusive) {
                            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)
  7. src/internal/coverage/cfile/hooks.go

    import "internal/runtime/exithook"
    
    // InitHook is invoked from the main package "init" routine in
    // programs built with "-cover". This function is intended to be
    // called only by the compiler (via runtime/coverage.initHook).
    //
    // If 'istest' is false, it indicates we're building a regular program
    // ("go build -cover ..."), in which case we immediately try to write
    // out the meta-data file, and register emitCounterData as an exit
    // hook.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. internal/s3select/select.go

    // Helpers
    /////////////////
    
    // limitedReadCloser is like io.LimitedReader, but also implements io.Closer.
    type limitedReadCloser struct {
    	io.LimitedReader
    	io.Closer
    }
    
    func newLimitedReadCloser(r io.ReadCloser, n int64) *limitedReadCloser {
    	return &limitedReadCloser{
    		LimitedReader: io.LimitedReader{R: r, N: n},
    		Closer:        r,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. cmd/metrics.go

    		for _, mf := range mfs {
    			if err := enc.Encode(mf); err != nil {
    				// client may disconnect for any reasons
    				// we do not have to log this.
    				return
    			}
    		}
    		if closer, ok := enc.(expfmt.Closer); ok {
    			closer.Close()
    		}
    	})
    }
    
    // NoAuthMiddleware no auth middle ware.
    func NoAuthMiddleware(h http.Handler) http.Handler {
    	return h
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. pkg/test/framework/testcontext.go

    func (c *testContext) Skipped() bool {
    	c.Helper()
    	return c.T.Skipped()
    }
    
    func (c *testContext) ID() string {
    	return c.id
    }
    
    var _ io.Closer = &closer{}
    
    type closer struct {
    	fn     func() error
    	noskip bool
    }
    
    func (c *closer) Close() error {
    	return c.fn()
    }
    
    func (c *testContext) RecordTraceEvent(string, any) {
    	// Currently, only supported at suite level.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top