Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Labs (0.14 sec)

  1. src/cmd/asm/internal/asm/testdata/s390x.s

    	FSUB	F3, F12                // b31b00c3
    	FMULS	F4, F11                // b31700b4
    	FMUL	F5, F10                // b31c00a5
    	FDIVS	F6, F9                 // b30d0096
    	FDIV	F7, F8                 // b31d0087
    	FABS	F1, F2                 // b3100021
    	FSQRTS	F3, F4                 // b3140043
    	FSQRT	F5, F15                // b31500f5
    	FIEBR	$0, F0, F1             // b3570010
    	FIDBR	$7, F2, F3             // b35f7032
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    <p>
    Tokens form the vocabulary of the Go language.
    There are four classes: <i>identifiers</i>, <i>keywords</i>, <i>operators
    and punctuation</i>, and <i>literals</i>.  <i>White space</i>, formed from
    spaces (U+0020), horizontal tabs (U+0009),
    carriage returns (U+000D), and newlines (U+000A),
    is ignored except as it separates tokens
    that would otherwise combine into a single token. Also, a newline or end of file
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/cgotest/overlaydir.go

    func OverlayDir(dstRoot, srcRoot string) error {
    	dstRoot = filepath.Clean(dstRoot)
    	if err := os.MkdirAll(dstRoot, 0777); err != nil {
    		return err
    	}
    
    	srcRoot, err := filepath.Abs(srcRoot)
    	if err != nil {
    		return err
    	}
    
    	return filepath.Walk(srcRoot, func(srcPath string, info os.FileInfo, err error) error {
    		if err != nil || srcPath == srcRoot {
    			return err
    		}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 20:56:09 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), const BIOCVERSION ideal-int
    pkg syscall (darwin-arm64), const BPF_A = 16
    pkg syscall (darwin-arm64), const BPF_A ideal-int
    pkg syscall (darwin-arm64), const BPF_ABS = 32
    pkg syscall (darwin-arm64), const BPF_ABS ideal-int
    pkg syscall (darwin-arm64), const BPF_ADD = 0
    pkg syscall (darwin-arm64), const BPF_ADD ideal-int
    pkg syscall (darwin-arm64), const BPF_ALIGNMENT = 4
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  5. api/go1.14.txt

    pkg syscall (freebsd-arm64), const BIOCVERSION ideal-int
    pkg syscall (freebsd-arm64), const BPF_A = 16
    pkg syscall (freebsd-arm64), const BPF_A ideal-int
    pkg syscall (freebsd-arm64), const BPF_ABS = 32
    pkg syscall (freebsd-arm64), const BPF_ABS ideal-int
    pkg syscall (freebsd-arm64), const BPF_ADD = 0
    pkg syscall (freebsd-arm64), const BPF_ADD ideal-int
    pkg syscall (freebsd-arm64), const BPF_ALIGNMENT = 8
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/ppc64.s

    	FNMSUBS F1, F2, F3, F4          // ec8110fc
    	FNMSUBSCC F1, F2, F3, F4        // ec8110fd
    	FSEL F1, F2, F3, F4             // fc8110ee
    	FSELCC F1, F2, F3, F4           // fc8110ef
    	FABS F1, F2                     // fc400a10
    	FNABS F1, F2                    // fc400910
    	FABSCC F1, F2                   // fc400a11
    	FNABSCC F1, F2                  // fc400911
    	FNEG F1, F2                     // fc400850
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
  7. src/bytes/reader.go

    	r.prevRune = -1
    	var abs int64
    	switch whence {
    	case io.SeekStart:
    		abs = offset
    	case io.SeekCurrent:
    		abs = r.i + offset
    	case io.SeekEnd:
    		abs = int64(len(r.s)) + offset
    	default:
    		return 0, errors.New("bytes.Reader.Seek: invalid whence")
    	}
    	if abs < 0 {
    		return 0, errors.New("bytes.Reader.Seek: negative position")
    	}
    	r.i = abs
    	return abs, nil
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  8. api/go1.20.txt

    pkg debug/elf, const R_LARCH_ABS64_LO20 = 69 #54222
    pkg debug/elf, const R_LARCH_ABS64_LO20 R_LARCH #54222
    pkg debug/elf, const R_LARCH_ABS_HI20 = 67 #54222
    pkg debug/elf, const R_LARCH_ABS_HI20 R_LARCH #54222
    pkg debug/elf, const R_LARCH_ABS_LO12 = 68 #54222
    pkg debug/elf, const R_LARCH_ABS_LO12 R_LARCH #54222
    pkg debug/elf, const R_LARCH_B16 = 64 #54222
    pkg debug/elf, const R_LARCH_B16 R_LARCH #54222
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  9. doc/go_spec.html

    <p>
    Tokens form the vocabulary of the Go language.
    There are four classes: <i>identifiers</i>, <i>keywords</i>, <i>operators
    and punctuation</i>, and <i>literals</i>.  <i>White space</i>, formed from
    spaces (U+0020), horizontal tabs (U+0009),
    carriage returns (U+000D), and newlines (U+000A),
    is ignored except as it separates tokens
    that would otherwise combine into a single token. Also, a newline or end of file
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  10. api/go1.19.txt

    pkg sync/atomic, type Pointer[$0 interface{}] struct #50860
    pkg sync/atomic, type Uint32 struct #50860
    pkg sync/atomic, type Uint64 struct #50860
    pkg sync/atomic, type Uintptr struct #50860
    pkg time, method (Duration) Abs() Duration #51414
    pkg time, method (Time) ZoneBounds() (Time, Time) #50062
    pkg crypto/x509, func ParseCRL //deprecated #50674
    pkg crypto/x509, func ParseDERCRL //deprecated #50674
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
Back to top