Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,550 for Off (0.05 sec)

  1. src/cmd/go/internal/cache/default.go

    	// otherwise distinguish between an explicit "off" and a UserCacheDir error.
    
    	defaultDirOnce.Do(func() {
    		defaultDir = cfg.Getenv("GOCACHE")
    		if defaultDir != "" {
    			defaultDirChanged = true
    			if filepath.IsAbs(defaultDir) || defaultDir == "off" {
    				return
    			}
    			defaultDir = "off"
    			defaultDirErr = fmt.Errorf("GOCACHE is not an absolute path")
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_arm64.s

    #define y2in(off)  (32*0 + 8 + off)(RSP)
    #define s2(off)    (32*1 + 8 + off)(RSP)
    #define z1sqr(off) (32*2 + 8 + off)(RSP)
    #define h(off)	   (32*3 + 8 + off)(RSP)
    #define r(off)	   (32*4 + 8 + off)(RSP)
    #define hsqr(off)  (32*5 + 8 + off)(RSP)
    #define rsqr(off)  (32*6 + 8 + off)(RSP)
    #define hcub(off)  (32*7 + 8 + off)(RSP)
    
    #define z2sqr(off) (32*8 + 8 + off)(RSP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. src/time/sys_unix.go

    	return syscall.Read(int(fd), buf)
    }
    
    func closefd(fd uintptr) {
    	syscall.Close(int(fd))
    }
    
    func preadn(fd uintptr, buf []byte, off int) error {
    	whence := seekStart
    	if off < 0 {
    		whence = seekEnd
    	}
    	if _, err := syscall.Seek(int(fd), int64(off), whence); err != nil {
    		return err
    	}
    	for len(buf) > 0 {
    		m, err := syscall.Read(int(fd), buf)
    		if m <= 0 {
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:10 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/BaseEncoding.java

              checkPositionIndexes(off, off + len, buf.length);
    
              int i = off;
              for (; i < off + len; i++) {
                int b = read();
                if (b == -1) {
                  int read = i - off;
                  return read == 0 ? -1 : read;
                }
                buf[i] = (byte) b;
              }
              return i - off;
            }
    
            @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MOVBstore [off] {sym} ptr (MOVWUreg x) mem) => (MOVBstore [off] {sym} ptr x mem)
    (MOVHstore [off] {sym} ptr (MOVHreg  x) mem) => (MOVHstore [off] {sym} ptr x mem)
    (MOVHstore [off] {sym} ptr (MOVHUreg x) mem) => (MOVHstore [off] {sym} ptr x mem)
    (MOVHstore [off] {sym} ptr (MOVWreg  x) mem) => (MOVHstore [off] {sym} ptr x mem)
    (MOVHstore [off] {sym} ptr (MOVWUreg x) mem) => (MOVHstore [off] {sym} ptr x mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultColorMapTest.groovy

            color.on(ansi)
    
            then:
            1 * ansi.fg(Color.MAGENTA)
            1 * ansi.a(Attribute.ITALIC)
    
            when: 'That color is turned off, it resets to default'
            color.off(ansi)
    
            then:
            1 * ansi.fg(Color.DEFAULT)
            1 * ansi.a(Attribute.ITALIC_OFF)
    
            when: 'A Style is overridden with a compound property'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top