Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for niger (0.18 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and
    // wrap it in our own nicer implementation.
    
    package unix
    
    import "unsafe"
    
    /*
     * Wrapped
     */
    
    func Access(path string, mode uint32) (err error) {
    	return Faccessat(AT_FDCWD, path, mode, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and wrap
    // it in our own nicer implementation, either here or in
    // syscall_bsd.go or syscall_unix.go.
    
    package unix
    
    import (
    	"errors"
    	"sync"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/doc.go

    		If there are any exported functions, write the
    		generated export declarations to file.
    		C code can #include this to see the declarations.
    	-importpath string
    		The import path for the Go package. Optional; used for
    		nicer comments in the generated files.
    	-import_runtime_cgo
    		If set (which it is by default) import runtime/cgo in
    		generated output.
    	-import_syscall
    		If set (which it is by default) import syscall in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and wrap
    // it in our own nicer implementation, either here or in
    // syscall_bsd.go or syscall_unix.go.
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    // SockaddrDatalink implements the Sockaddr interface for AF_LINK type sockets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"ng_man":                               "\U0001f645\u200d\u2642\ufe0f",
    	"ng_woman":                             "\U0001f645\u200d\u2640\ufe0f",
    	"nicaragua":                            "\U0001f1f3\U0001f1ee",
    	"niger":                                "\U0001f1f3\U0001f1ea",
    	"nigeria":                              "\U0001f1f3\U0001f1ec",
    	"night_with_stars":                     "\U0001f303",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    	// git every time we run this command. Unlike VERSION, it gets
    	// deleted by the clean command.
    	path = pathf("%s/VERSION.cache", goroot)
    	if isfile(path) {
    		return chomp(readfile(path))
    	}
    
    	// Show a nicer error message if this isn't a Git repo.
    	if !isGitRepo() {
    		fatalf("FAILED: not a Git repo; must put a VERSION file in $GOROOT")
    	}
    
    	// Otherwise, use Git.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/git.go

    				os.RemoveAll(r.dir)
    				return nil, err
    			}
    			// We could just say git fetch https://whatever later,
    			// but this lets us say git fetch origin instead, which
    			// is a little nicer. More importantly, using a named remote
    			// avoids a problem with Git LFS. See golang.org/issue/25605.
    			if _, err := Run(ctx, r.dir, "git", "remote", "add", "origin", "--", r.remote); err != nil {
    				os.RemoveAll(r.dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and
    // wrap it in our own nicer implementation.
    
    package unix
    
    import (
    	"encoding/binary"
    	"strconv"
    	"syscall"
    	"time"
    	"unsafe"
    )
    
    /*
     * Wrapped
     */
    
    func Access(path string, mode uint32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/typecheck.go

    		traceIndent = traceIndent[:len(traceIndent)-2]
    
    		// if we have a result, use that
    		if np != nil {
    			n = *np
    		}
    
    		// guard against nil
    		// use outer pos, op so we don't get empty pos/op if n == nil (nicer output)
    		var tc uint8
    		var typ *types.Type
    		if n != nil {
    			pos = base.FmtPos(n.Pos())
    			op = n.Op().String()
    			tc = n.Typecheck()
    			typ = n.Type()
    		}
    
    		types.SkipSizeForTracing = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    1'4025 | 2'58 | 5436 Crystal of the Rock. | 25 to 16 | 1'445 | 2'65 | 5450 Island Crystal. | 5 to 3 | 1'778 | 2'72 | 6536 Sal Gemmæ. | 17 to 11 | 1'388 | 2'143 | 6477 Alume. | 35 to 24 | 1'1267 | 1'714 | 6570 Borax. | 22 to 15 | 1'1511 | 1'714 | 6716 Niter. | 32 to 21 | 1'345 | 1'9 | 7079 Dantzick Vitriol. | 303 to 200 | 1'295 | 1'715 | 7551 Oil of Vitriol. | 10 to 7 | 1'041 | 1'7 | 6124 Rain Water. | 529 to 396 | 0'7845 | 1' | 7845 Gum Arabick. | 31 to 21 | 1'179 | 1'375 | 8574 Spirit of Wine well |...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
Back to top