Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for restore (0.3 sec)

  1. api/go1.1.txt

    pkg syscall (windows-386), const CERT_E_UNTRUSTEDROOT = 2148204809
    pkg syscall (windows-386), const CERT_STORE_ADD_ALWAYS = 4
    pkg syscall (windows-386), const CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG = 4
    pkg syscall (windows-386), const CERT_STORE_PROV_MEMORY = 2
    pkg syscall (windows-386), const CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT = 32768
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  2. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_KEXEC ideal-int
    pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_POWER_OFF ideal-int
    pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_RESTART ideal-int
    pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_RESTART2 ideal-int
    pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_SW_SUSPEND ideal-int
    pkg syscall (linux-arm-cgo), const LINUX_REBOOT_MAGIC1 ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  3. src/bytes/buffer.go

    		copy(b.buf, b.buf[b.off:])
    	} else if c > maxInt-c-n {
    		panic(ErrTooLarge)
    	} else {
    		// Add b.off to account for b.buf[:b.off] being sliced off the front.
    		b.buf = growSlice(b.buf[b.off:], b.off+n)
    	}
    	// Restore b.off and len(b.buf).
    	b.off = 0
    	b.buf = b.buf[:m+n]
    	return m
    }
    
    // Grow grows the buffer's capacity, if necessary, to guarantee space for
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  4. doc/asm.html

    Put this data in thread local storage.
    </li>
    <li>
    <code>NOFRAME</code> = 512
    <br>
    (For <code>TEXT</code> items.)
    Do not insert instructions to allocate a stack frame and save/restore the return
    address, even if this is not a leaf function.
    Only valid on functions that declare a frame size of 0.
    </li>
    <li>
    <code>TOPFRAME</code> = 2048
    <br>
    (For <code>TEXT</code> items.)
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  5. src/archive/tar/strconv.go

    	if fitsInBase256(len(b), x) {
    		for i := len(b) - 1; i >= 0; i-- {
    			b[i] = byte(x)
    			x >>= 8
    		}
    		b[0] |= 0x80 // Highest bit indicates binary format
    		return
    	}
    
    	f.formatOctal(b, 0) // Last resort, just write zero
    	f.err = ErrFieldTooLong
    }
    
    func (p *parser) parseOctal(b []byte) int64 {
    	// Because unused fields are filled with NULs, we need
    	// to skip leading NULs. Fields may also be padded with
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg syscall (darwin-386), type Fstore_t struct
    pkg syscall (darwin-386), type Fstore_t struct, Bytesalloc int64
    pkg syscall (darwin-386), type Fstore_t struct, Flags uint32
    pkg syscall (darwin-386), type Fstore_t struct, Length int64
    pkg syscall (darwin-386), type Fstore_t struct, Offset int64
    pkg syscall (darwin-386), type Fstore_t struct, Posmode int32
    pkg syscall (darwin-386), type IfData struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  7. api/go1.16.txt

    pkg syscall (darwin-arm64), type Fstore_t struct
    pkg syscall (darwin-arm64), type Fstore_t struct, Bytesalloc int64
    pkg syscall (darwin-arm64), type Fstore_t struct, Flags uint32
    pkg syscall (darwin-arm64), type Fstore_t struct, Length int64
    pkg syscall (darwin-arm64), type Fstore_t struct, Offset int64
    pkg syscall (darwin-arm64), type Fstore_t struct, Posmode int32
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  8. doc/godebug.md

    For example, Go 1.21 introduces the `panicnil` setting,
    controlling whether `panic(nil)` is allowed;
    it defaults to `panicnil=0`, making `panic(nil)` a run-time error.
    Using `panicnil=1` restores the behavior of Go 1.20 and earlier.
    
    When compiling a work module or workspace that declares
    an older Go version, the Go toolchain amends its defaults
    to match that older Go version as closely as possible.
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  9. doc/go1.22.html

      may break, but we expect such programs to be rare.
      Such programs may be built with <code>GOEXPERIMENT=noallocheaders</code> to revert
      to the old metadata layout and restore the previous alignment behavior, but package
      owners should update their assembly code to avoid the alignment assumption, as this
      workaround will be removed in a future release.
    </p>
    
    <p><!-- CL 525475 -->
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue24161res/restype.go

    Austin Clements <******@****.***> 1683224724 -0400
    Go
    - Registered: Tue Mar 26 11:13:08 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 486 bytes
    - Viewed (0)
Back to top