Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,068 for offset_ (0.36 sec)

  1. cmd/erasure-utils.go

    	for _, block := range enBlocks[:dataBlocks] {
    		// Skip blocks until we have reached our offset.
    		if offset >= int64(len(block)) {
    			// Decrement offset.
    			offset -= int64(len(block))
    			continue
    		}
    
    		// Skip until offset.
    		block = block[offset:]
    
    		// Reset the offset for next iteration to read everything
    		// from subsequent blocks.
    		offset = 0
    
    		// We have written all the blocks, write the last remaining block.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 31 02:11:45 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

            private int startPosition;
    
            private int pageSize;
    
            private int offset;
    
            TestSearchRequestParams(int startPosition, int pageSize, int offset) {
                this.startPosition = startPosition;
                this.pageSize = pageSize;
                this.offset = offset;
            }
    
            @Override
            public String getQuery() {
                return null;
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. src/embed/embed.go

    		return 0, &fs.PathError{Op: "read", Path: f.f.name, Err: fs.ErrInvalid}
    	}
    	n := copy(b, f.f.data[f.offset:])
    	f.offset += int64(n)
    	return n, nil
    }
    
    func (f *openFile) Seek(offset int64, whence int) (int64, error) {
    	switch whence {
    	case 0:
    		// offset += 0
    	case 1:
    		offset += f.offset
    	case 2:
    		offset += int64(len(f.f.data))
    	}
    	if offset < 0 || offset > int64(len(f.f.data)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go

    	// Block 0x38, offset 0xe00
    	0xe00: 0x000a,
    	// Block 0x39, offset 0xe40
    	0xe40: 0x0009,
    	0xe5b: 0x007a, 0xe5c: 0x006a,
    	// Block 0x3a, offset 0xe80
    	0xe92: 0x000c, 0xe93: 0x000c, 0xe94: 0x000c,
    	0xeb2: 0x000c, 0xeb3: 0x000c, 0xeb4: 0x000c,
    	// Block 0x3b, offset 0xec0
    	0xed2: 0x000c, 0xed3: 0x000c,
    	0xef2: 0x000c, 0xef3: 0x000c,
    	// Block 0x3c, offset 0xf00
    	0xf34: 0x000c, 0xf35: 0x000c,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 118.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.go

    	nn := len(p)
    	if h.offset > 0 {
    		n := copy(h.buffer[h.offset:], p)
    		if h.offset+n < TagSize {
    			h.offset += n
    			return nn, nil
    		}
    		p = p[n:]
    		h.offset = 0
    		update(&h.macState, h.buffer[:])
    	}
    	if n := len(p) - (len(p) % TagSize); n > 0 {
    		update(&h.macState, p[:n])
    		p = p[n:]
    	}
    	if len(p) > 0 {
    		h.offset += copy(h.buffer[h.offset:], p)
    	}
    	return nn, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/tables15.0.0.go

    	// Block 0x90, offset 0x39f
    	{value: 0x0010, lo: 0x80, hi: 0xb1},
    	{value: 0x0004, lo: 0xb2, hi: 0xbf},
    	// Block 0x91, offset 0x3a1
    	{value: 0x0004, lo: 0x80, hi: 0x82},
    	{value: 0x0010, lo: 0x93, hi: 0xbf},
    	// Block 0x92, offset 0x3a3
    	{value: 0x0010, lo: 0x80, hi: 0xbd},
    	// Block 0x93, offset 0x3a4
    	{value: 0x0010, lo: 0x90, hi: 0xbf},
    	// Block 0x94, offset 0x3a5
    	{value: 0x0010, lo: 0x80, hi: 0x8f},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 106.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/tables12.0.0.go

    	// Block 0x90, offset 0x393
    	{value: 0x0010, lo: 0x80, hi: 0xb1},
    	{value: 0x0004, lo: 0xb2, hi: 0xbf},
    	// Block 0x91, offset 0x395
    	{value: 0x0004, lo: 0x80, hi: 0x81},
    	{value: 0x0010, lo: 0x93, hi: 0xbf},
    	// Block 0x92, offset 0x397
    	{value: 0x0010, lo: 0x80, hi: 0xbd},
    	// Block 0x93, offset 0x398
    	{value: 0x0010, lo: 0x90, hi: 0xbf},
    	// Block 0x94, offset 0x399
    	{value: 0x0010, lo: 0x80, hi: 0x8f},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 99.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/tables11.0.0.go

    	// Block 0x90, offset 0x38c
    	{value: 0x0010, lo: 0x80, hi: 0xb1},
    	{value: 0x0004, lo: 0xb2, hi: 0xbf},
    	// Block 0x91, offset 0x38e
    	{value: 0x0004, lo: 0x80, hi: 0x81},
    	{value: 0x0010, lo: 0x93, hi: 0xbf},
    	// Block 0x92, offset 0x390
    	{value: 0x0010, lo: 0x80, hi: 0xbd},
    	// Block 0x93, offset 0x391
    	{value: 0x0010, lo: 0x90, hi: 0xbf},
    	// Block 0x94, offset 0x392
    	{value: 0x0010, lo: 0x80, hi: 0x8f},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 97.5K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/ipallocator_test.go

    			name:    "IPv4 offset 1",
    			address: netip.MustParseAddr("192.168.0.0"),
    			offset:  1,
    			want:    netip.MustParseAddr("192.168.0.1"),
    		},
    		{
    			name:    "IPv4 offset 1 not nibble boundary",
    			address: netip.MustParseAddr("192.168.0.11"),
    			offset:  1,
    			want:    netip.MustParseAddr("192.168.0.12"),
    		},
    		{
    			name:    "IPv6 offset 1",
    			address: netip.MustParseAddr("fd00:1:2:3::"),
    			offset:  1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/bitmap.go

    }
    
    // contains returns true and the offset if the ip is in the range, and false
    // and nil otherwise. The first and last addresses of the CIDR are omitted.
    func (r *Range) contains(ip net.IP) (bool, int) {
    	if !r.net.Contains(ip) {
    		return false, 0
    	}
    
    	offset := calculateIPOffset(r.base, ip)
    	if offset < 0 || offset >= r.max {
    		return false, 0
    	}
    	return true, offset
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top