Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,053 for Off (0.03 sec)

  1. src/testing/iotest/reader.go

    				return fmt.Errorf("Seek(-1, 1) from EOF = %d, %v, want %d, nil", -off, err, len(content)-1)
    			}
    			if off, err := r.Seek(int64(-len(content)/3), 1); off != int64(middle-1) || err != nil {
    				return fmt.Errorf("Seek(%d, 1) from %d = %d, %v, want %d, nil", -len(content)/3, len(content)-1, off, err, middle-1)
    			}
    			if off, err := r.Seek(+1, 1); off != int64(middle) || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_amd64.s

    #define x1in(off) (32*0 + off)(SP)
    #define y1in(off) (32*1 + off)(SP)
    #define z1in(off) (32*2 + off)(SP)
    #define x2in(off) (32*3 + off)(SP)
    #define y2in(off) (32*4 + off)(SP)
    #define xout(off) (32*5 + off)(SP)
    #define yout(off) (32*6 + off)(SP)
    #define zout(off) (32*7 + off)(SP)
    #define s2(off)   (32*8 + off)(SP)
    #define z1sqr(off) (32*9 + off)(SP)
    #define h(off)	  (32*10 + off)(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  3. src/debug/elf/file.go

    				Off:    bo.Uint64(phdata[off+unsafe.Offsetof(ph.Off):]),
    				Vaddr:  bo.Uint64(phdata[off+unsafe.Offsetof(ph.Vaddr):]),
    				Paddr:  bo.Uint64(phdata[off+unsafe.Offsetof(ph.Paddr):]),
    				Filesz: bo.Uint64(phdata[off+unsafe.Offsetof(ph.Filesz):]),
    				Memsz:  bo.Uint64(phdata[off+unsafe.Offsetof(ph.Memsz):]),
    				Align:  bo.Uint64(phdata[off+unsafe.Offsetof(ph.Align):]),
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. src/debug/dwarf/typeunit.go

    }
    
    // Seek to a new position in the type unit.
    func (tur *typeUnitReader) Seek(off Offset) {
    	tur.err = nil
    	doff := off - tur.tu.off
    	if doff < 0 || doff >= Offset(len(tur.tu.data)) {
    		tur.err = fmt.Errorf("%s: offset %d out of range; max %d", tur.tu.name, doff, len(tur.tu.data))
    		return
    	}
    	tur.b = makeBuf(tur.d, tur.tu, tur.tu.name, off, tur.tu.data[doff:])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. .github/workflows/mint/nginx.conf

            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
                proxy_set_header Host $http_host;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. .github/workflows/mint/nginx-4-node.conf

            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
                proxy_set_header Host $http_host;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. .github/workflows/mint/nginx-8-node.conf

            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
                proxy_set_header Host $http_host;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/StreamByteBuffer.java

            public int read(byte[] b, int off, int len) throws IOException {
                return readImpl(b, off, len);
            }
    
            int readImpl(byte[] b, int off, int len) {
                if (b == null) {
                    throw new NullPointerException();
                }
    
                if ((off < 0) || (off > b.length) || (len < 0)
                        || ((off + len) > b.length) || ((off + len) < 0)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/decodesym.go

    	for j := 0; j < relocs.Count(); j++ {
    		rel := relocs.At(j)
    		if rel.Off() == off {
    			return rel
    		}
    	}
    	return loader.Reloc{}
    }
    
    func decodeRelocSym(ldr *loader.Loader, symIdx loader.Sym, relocs *loader.Relocs, off int32) loader.Sym {
    	return decodeReloc(ldr, symIdx, relocs, off).Sym()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/symbolbuilder.go

    		sb.kind = sym.SDATA
    	}
    	if sb.size < off+wid {
    		sb.size = off + wid
    		sb.Grow(sb.size)
    	}
    
    	switch wid {
    	case 1:
    		sb.data[off] = uint8(v)
    	case 2:
    		arch.ByteOrder.PutUint16(sb.data[off:], uint16(v))
    	case 4:
    		arch.ByteOrder.PutUint32(sb.data[off:], uint32(v))
    	case 8:
    		arch.ByteOrder.PutUint64(sb.data[off:], v)
    	}
    
    	return off + wid
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top