Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Suthar (0.22 sec)

  1. src/cmd/cgo/doc.go

    # Using cgo with the go command
    
    To use cgo write normal Go code that imports a pseudo-package "C".
    The Go code can then refer to types such as C.size_t, variables such
    as C.stdout, or functions such as C.putchar.
    
    If the import of "C" is immediately preceded by a comment, that
    comment, called the preamble, is used as a header when compiling
    the C parts of the package. For example:
    
    	// #include <stdio.h>
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const RLIMIT_STACK = 3
    pkg syscall (netbsd-arm64-cgo), const RLIMIT_STACK ideal-int
    pkg syscall (netbsd-arm64-cgo), const RTA_AUTHOR = 64
    pkg syscall (netbsd-arm64-cgo), const RTA_AUTHOR ideal-int
    pkg syscall (netbsd-arm64-cgo), const RTA_BRD = 128
    pkg syscall (netbsd-arm64-cgo), const RTA_BRD ideal-int
    pkg syscall (netbsd-arm64-cgo), const RTA_DST = 1
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. doc/README.md

    ## For developers
    
    Release notes should be added to `next` by editing existing files or creating
    new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to
    the CL (or ask the author to do so).
    
    At the end of the development cycle, the files will be merged by being
    concatenated in sorted order by pathname. Files in the directory matching the
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 21:24:36 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (darwin-386), const RLIMIT_NOFILE = 8
    pkg syscall (darwin-386), const RLIMIT_STACK = 3
    pkg syscall (darwin-386), const RLIM_INFINITY = 9223372036854775807
    pkg syscall (darwin-386), const RTAX_AUTHOR = 6
    pkg syscall (darwin-386), const RTAX_BRD = 7
    pkg syscall (darwin-386), const RTAX_DST = 0
    pkg syscall (darwin-386), const RTAX_GATEWAY = 1
    pkg syscall (darwin-386), const RTAX_GENMASK = 3
    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)
  5. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const RLIMIT_NOFILE ideal-int
    pkg syscall (freebsd-386-cgo), const RLIMIT_STACK ideal-int
    pkg syscall (freebsd-386-cgo), const RLIM_INFINITY ideal-int
    pkg syscall (freebsd-386-cgo), const RTAX_AUTHOR ideal-int
    pkg syscall (freebsd-386-cgo), const RTAX_BRD ideal-int
    pkg syscall (freebsd-386-cgo), const RTAX_DST ideal-int
    pkg syscall (freebsd-386-cgo), const RTAX_GATEWAY 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)
  6. .github/ISSUE_TEMPLATE/11-language-change.yml

      - type: dropdown
        id: author-go-experience
        attributes:
          label: "Go Programming Experience"
          description: "Would you consider yourself a novice, intermediate, or experienced Go programmer?"
          options:
            - "Novice"
            - "Intermediate"
            - "Experienced"
          default: 1
    
      - type: input
        id: author-other-languages-experience
        attributes:
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/02-pkgsite-removal.yml

        attributes:
          label: "What is the path of the package that you would like to have removed?"
          description: |
            We can remove packages with a shared path prefix.
            For example, a request for 'github.com/author' would remove all pkg.go.dev pages with that package path prefix.
        validations:
          required: true
      - type: textarea
        id: package-owner
        attributes:
          label: "Are you the owner of this package?"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  8. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const RLIM_INFINITY = 9223372036854775807 #53466
    pkg syscall (freebsd-riscv64), const RLIM_INFINITY ideal-int #53466
    pkg syscall (freebsd-riscv64), const RTAX_AUTHOR = 6 #53466
    pkg syscall (freebsd-riscv64), const RTAX_AUTHOR ideal-int #53466
    pkg syscall (freebsd-riscv64), const RTAX_BRD = 7 #53466
    pkg syscall (freebsd-riscv64), const RTAX_BRD ideal-int #53466
    pkg syscall (freebsd-riscv64), const RTAX_DST = 0 #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    )
    
    var debugDefine = flag.Bool("debug-define", false, "print relevant #defines")
    var debugGcc = flag.Bool("debug-gcc", false, "print gcc invocations")
    
    var nameToC = map[string]string{
    	"schar":         "signed char",
    	"uchar":         "unsigned char",
    	"ushort":        "unsigned short",
    	"uint":          "unsigned int",
    	"ulong":         "unsigned long",
    	"longlong":      "long long",
    	"ulonglong":     "unsigned long long",
    Go
    - Registered: Tue Apr 30 11:13:12 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 RLIM_INFINITY = 9223372036854775807
    pkg syscall (darwin-arm64), const RLIM_INFINITY ideal-int
    pkg syscall (darwin-arm64), const RTAX_AUTHOR = 6
    pkg syscall (darwin-arm64), const RTAX_AUTHOR ideal-int
    pkg syscall (darwin-arm64), const RTAX_BRD = 7
    pkg syscall (darwin-arm64), const RTAX_BRD ideal-int
    pkg syscall (darwin-arm64), const RTAX_DST = 0
    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)
Back to top