Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,786 for Off (0.06 sec)

  1. src/cmd/internal/buildid/buildid.go

    				sizeStr := strings.TrimSpace(string(hdr[0:20]))
    				size, err := strconv.ParseInt(sizeStr, 10, 64)
    				if err != nil {
    					return bad()
    				}
    				off += int64(len(hdr)) + namLen + 2
    				if off&1 != 0 {
    					off++
    				}
    				sr := io.NewSectionReader(f, off, size)
    				x, err := xcoff.NewFile(sr)
    				if err != nil {
    					return bad()
    				}
    				data := x.CSect(".go.buildid")
    				if data == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/LineBufferTest.java

                lines.add(line + end);
              }
            };
        char[] chars = input.toCharArray();
        int off = 0;
        while (off < chars.length) {
          int len = Math.min(chars.length, off + chunk) - off;
          lineBuf.add(chars, off, len);
          off += len;
        }
        lineBuf.finish();
        return lines;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/LineBufferTest.java

                lines.add(line + end);
              }
            };
        char[] chars = input.toCharArray();
        int off = 0;
        while (off < chars.length) {
          int len = Math.min(chars.length, off + chunk) - off;
          lineBuf.add(chars, off, len);
          off += len;
        }
        lineBuf.finish();
        return lines;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_shuffle.txt

    ! go test -shuffle=
    stderr '(?s)invalid value "" for flag -shuffle: -shuffle argument must be "on", "off", or an int64: strconv.ParseInt: parsing "": invalid syntax'
    
    ! go test -shuffle=' '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:46:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/internal/syscall/unix/fallocate_freebsd_arm.go

    package unix
    
    import "syscall"
    
    func PosixFallocate(fd int, off int64, size int64) error {
    	// If successful, posix_fallocate() returns zero. It returns an error on failure, without
    	// setting errno. See https://man.freebsd.org/cgi/man.cgi?query=posix_fallocate&sektion=2&n=1
    	//
    	// The padding 0 argument is needed because the ARM calling convention requires that if an
    	// argument (off in this case) needs double-word alignment (8-byte), the NCRN (next core
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 14:17:36 UTC 2023
    - 1013 bytes
    - Viewed (0)
  6. pkg/test/framework/features/allowlist.txt

    security,TestReachability/beta-mtls-off/a->ws://a:http
    security,TestReachability/beta-mtls-off/a->ws://b:http
    security,TestReachability/beta-mtls-off/a->ws://headless:http
    security,TestReachability/beta-mtls-off/a->ws://multiversion:http
    security,TestReachability/beta-mtls-off/a->ws://naked:http
    security,TestReachability/beta-mtls-off/b->grpc://a:grpc
    security,TestReachability/beta-mtls-off/b->grpc://b:grpc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/riscv64/asm.go

    	case objabi.R_RISCV_GOT_HI20, objabi.R_RISCV_PCREL_HI20:
    		pc := ldr.SymValue(s) + int64(r.Off())
    		off := ldr.SymValue(rs) + r.Add() - pc
    
    		// Generate AUIPC immediates.
    		_, high, err := riscv.Split32BitImmediate(off)
    		if err != nil {
    			ldr.Errorf(s, "relocation does not fit in 32-bits: %d", off)
    		}
    
    		auipcImm, err := riscv.EncodeUImmediate(high)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/outbuf.go

    	// See if we have enough space in the mmaped area.
    	bufLen := int64(len(out.buf))
    	if out.off+lenToWrite <= bufLen {
    		return out.off, out.buf
    	}
    
    	// Not enough space in the mmaped area, write to heap area instead.
    	heapPos := out.off - bufLen
    	heapLen := int64(len(out.heap))
    	lenNeeded := heapPos + lenToWrite
    	if lenNeeded > heapLen { // do we need to grow the heap storage?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/telemetrycmd/telemetry.go

    	UsageLine: "go telemetry [off|local|on]",
    	Short:     "manage telemetry data and settings",
    	Long: `Telemetry is used to manage Go telemetry data and settings.
    
    Telemetry can be in one of three modes: off, local, or on.
    
    When telemetry is in local mode, counter data is written to the local file
    system, but will not be uploaded to remote servers.
    
    When telemetry is off, local counter data is neither collected nor uploaded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/debug/gosym/pclntab_test.go

    	// Test PCToLine
    	sym := tab.LookupFunc("main.linefrompc")
    	wantLine := 0
    	for pc := sym.Entry; pc < sym.End; pc++ {
    		off := pc - text.Addr // TODO(rsc): should not need off; bug in 8g
    		if textdat[off] == 255 {
    			break
    		}
    		wantLine += int(textdat[off])
    		t.Logf("off is %d %#x (max %d)", off, textdat[off], sym.End-pc)
    		file, line, fn := tab.PCToLine(pc)
    		if fn == nil {
    			t.Errorf("failed to get line of PC %#x", pc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 17:17:44 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top