Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Aigner (0.19 sec)

  1. api/go1.5.txt

    pkg debug/elf, const R_PPC64_ADDR16_HA R_PPC64
    pkg debug/elf, const R_PPC64_ADDR16_HI = 5
    pkg debug/elf, const R_PPC64_ADDR16_HI R_PPC64
    pkg debug/elf, const R_PPC64_ADDR16_HIGHER = 39
    pkg debug/elf, const R_PPC64_ADDR16_HIGHER R_PPC64
    pkg debug/elf, const R_PPC64_ADDR16_HIGHERA = 40
    pkg debug/elf, const R_PPC64_ADDR16_HIGHERA R_PPC64
    pkg debug/elf, const R_PPC64_ADDR16_HIGHEST = 41
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    unless the memory it points to is pinned with [runtime.Pinner] and the
    Pinner is not unpinned while the Go pointer is stored in C memory.
    This implies that C code may not keep a copy of a string, slice,
    channel, and so forth, because they cannot be pinned with
    [runtime.Pinner].
    
    The _GoString_ type also may not be pinned with [runtime.Pinner].
    Because it includes a Go pointer, the memory it points to is only pinned
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. src/archive/zip/reader_test.go

    //			log.Fatal(err)
    //		}
    //
    //		biggerZip := makeZip("big.zip", bytes.NewReader(bigZip))
    //		if err := os.WriteFile("/tmp/bigger.zip", biggerZip, 0666); err != nil {
    //			log.Fatal(err)
    //		}
    //
    //		biggestZip := makeZip("bigger.zip", bytes.NewReader(biggerZip))
    //		if err := os.WriteFile("/tmp/biggest.zip", biggestZip, 0666); err != nil {
    //			log.Fatal(err)
    //		}
    //	}
    //
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  4. src/bytes/buffer_test.go

    // license that can be found in the LICENSE file.
    
    package bytes_test
    
    import (
    	. "bytes"
    	"fmt"
    	"io"
    	"math/rand"
    	"strconv"
    	"testing"
    	"unicode/utf8"
    )
    
    const N = 10000       // make this bigger for a larger (and slower) test
    var testString string // test data for write tests
    var testBytes []byte  // test data; same as testString but as a slice.
    
    type negativeReader struct{}
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 20 01:07:29 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  5. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const IFT_XETHER ideal-int
    pkg syscall (netbsd-arm64-cgo), const IGNBRK = 1
    pkg syscall (netbsd-arm64-cgo), const IGNBRK ideal-int
    pkg syscall (netbsd-arm64-cgo), const IGNCR = 128
    pkg syscall (netbsd-arm64-cgo), const IGNCR ideal-int
    pkg syscall (netbsd-arm64-cgo), const IGNPAR = 4
    pkg syscall (netbsd-arm64-cgo), const IGNPAR ideal-int
    pkg syscall (netbsd-arm64-cgo), const IMAXBEL = 8192
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    uint64      the set of all unsigned 64-bit integers (0 to 18446744073709551615)
    
    int8        the set of all signed  8-bit integers (-128 to 127)
    int16       the set of all signed 16-bit integers (-32768 to 32767)
    int32       the set of all signed 32-bit integers (-2147483648 to 2147483647)
    int64       the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807)
    
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  7. misc/ios/README

    However, further setup is required to run tests or programs directly on a device.
    
    First make sure you have a valid developer certificate and have setup your device properly
    to run apps signed by your developer certificate. Then install the libimobiledevice and
    ideviceinstaller tools from https://www.libimobiledevice.org/. Use the HEAD versions from
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Dec 29 21:49:26 GMT 2020
    - 2.7K bytes
    - Viewed (0)
  8. api/go1.6.txt

    pkg debug/elf, const R_MIPS_GPREL32 = 12
    pkg debug/elf, const R_MIPS_GPREL32 R_MIPS
    pkg debug/elf, const R_MIPS_HI16 = 5
    pkg debug/elf, const R_MIPS_HI16 R_MIPS
    pkg debug/elf, const R_MIPS_HIGHER = 28
    pkg debug/elf, const R_MIPS_HIGHER R_MIPS
    pkg debug/elf, const R_MIPS_HIGHEST = 29
    pkg debug/elf, const R_MIPS_HIGHEST R_MIPS
    pkg debug/elf, const R_MIPS_INSERT_A = 25
    pkg debug/elf, const R_MIPS_INSERT_A R_MIPS
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 13 23:40:13 GMT 2016
    - 12.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    			t.Align = c.ptrSize
    		}
    		t.C.Set("enum " + dt.EnumName)
    		signed := 0
    		t.EnumValues = make(map[string]int64)
    		for _, ev := range dt.Val {
    			t.EnumValues[ev.Name] = ev.Val
    			if ev.Val < 0 {
    				signed = signedDelta
    			}
    		}
    		switch t.Size + int64(signed) {
    		default:
    			fatalf("%s: unexpected: %d-byte enum type - %s", lineno(pos), t.Size, dtype)
    		case 1:
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  10. api/go1.16.txt

    pkg syscall (darwin-arm64), const SO_LABEL = 4112
    pkg syscall (darwin-arm64), const SO_LABEL ideal-int
    pkg syscall (darwin-arm64), const SO_LINGER = 128
    pkg syscall (darwin-arm64), const SO_LINGER_SEC = 4224
    pkg syscall (darwin-arm64), const SO_LINGER_SEC ideal-int
    pkg syscall (darwin-arm64), const SO_NKE = 4129
    pkg syscall (darwin-arm64), const SO_NKE ideal-int
    pkg syscall (darwin-arm64), const SO_NOADDRERR = 4131
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
Back to top