Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for notice (0.22 sec)

  1. src/cmd/cgo/doc.go

    directory and also in the system include directory (or some other place
    specified by a -I flag), then "#include <foo/bar.h>" will always find the
    local version in preference to any other version.
    
    The cgo tool is enabled by default for native builds on systems where
    it is expected to work. It is disabled by default when cross-compiling
    as well as when the CC environment variable is unset and the default
    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)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const NOTE_LINK = 16
    pkg syscall (darwin-arm64), const NOTE_LINK ideal-int
    pkg syscall (darwin-arm64), const NOTE_LOWAT = 1
    pkg syscall (darwin-arm64), const NOTE_LOWAT ideal-int
    pkg syscall (darwin-arm64), const NOTE_NONE = 128
    pkg syscall (darwin-arm64), const NOTE_NONE ideal-int
    pkg syscall (darwin-arm64), const NOTE_NSECONDS = 4
    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)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const NOTE_EXIT ideal-int
    pkg syscall (freebsd-arm64), const NOTE_EXTEND = 4
    pkg syscall (freebsd-arm64), const NOTE_EXTEND ideal-int
    pkg syscall (freebsd-arm64), const NOTE_FFAND = 1073741824
    pkg syscall (freebsd-arm64), const NOTE_FFAND ideal-int
    pkg syscall (freebsd-arm64), const NOTE_FFCOPY = 3221225472
    pkg syscall (freebsd-arm64), const NOTE_FFCOPY ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  4. .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 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/archive/tar/strconv.go

    	nStr, rest, ok := strings.Cut(s, " ")
    	if !ok {
    		return "", "", s, ErrHeader
    	}
    
    	// Parse the first token as a decimal integer.
    	n, perr := strconv.ParseInt(nStr, 10, 0) // Intentionally parse as native int
    	if perr != nil || n < 5 || n > int64(len(s)) {
    		return "", "", s, ErrHeader
    	}
    	n -= int64(len(nStr) + 1) // convert from index in s to index in rest
    	if n <= 0 {
    		return "", "", s, ErrHeader
    	}
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (darwin-386), const NOTE_NONE = 128
    pkg syscall (darwin-386), const NOTE_NSECONDS = 4
    pkg syscall (darwin-386), const NOTE_PCTRLMASK = -1048576
    pkg syscall (darwin-386), const NOTE_PDATAMASK = 1048575
    pkg syscall (darwin-386), const NOTE_REAP = 268435456
    pkg syscall (darwin-386), const NOTE_RENAME = 32
    pkg syscall (darwin-386), const NOTE_RESOURCEEND = 33554432
    pkg syscall (darwin-386), const NOTE_REVOKE = 64
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  7. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const NOTE_EXEC ideal-int #53466
    pkg syscall (freebsd-riscv64), const NOTE_EXIT = 2147483648 #53466
    pkg syscall (freebsd-riscv64), const NOTE_EXIT ideal-int #53466
    pkg syscall (freebsd-riscv64), const NOTE_EXTEND = 4 #53466
    pkg syscall (freebsd-riscv64), const NOTE_EXTEND ideal-int #53466
    pkg syscall (freebsd-riscv64), const NOTE_FFAND = 1073741824 #53466
    pkg syscall (freebsd-riscv64), const NOTE_FFAND ideal-int #53466
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  8. src/cmd/addr2line/addr2line_test.go

    	}
    	fi1, err := os.Stat("addr2line_test.go")
    	if err != nil {
    		t.Fatalf("Stat failed: %v", err)
    	}
    
    	// Debug paths are stored slash-separated, so convert to system-native.
    	srcPath = filepath.FromSlash(srcPath)
    	fi2, err := os.Stat(srcPath)
    
    	if err != nil {
    		t.Fatalf("Stat failed: %v", err)
    	}
    	if !os.SameFile(fi1, fi2) {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 22:16:54 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/cmd/api/main_test.go

    		// so the method set can be extended. Instead of recording
    		// the full set of names (below), record only that there were
    		// unexported methods. (If the interface shrinks, we will notice
    		// because a method signature emitted during the last loop
    		// will disappear.)
    		w.emitf("unexported methods")
    	}
    
    	pop()
    
    	if !complete {
    		return
    	}
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  10. misc/go_android_exec/main.go

    		return 0, err
    	}
    
    	// Forward SIGQUIT from the go command to show backtraces from
    	// the binary instead of from this wrapper.
    	quit := make(chan os.Signal, 1)
    	signal.Notify(quit, syscall.SIGQUIT)
    	go func() {
    		for range quit {
    			// We don't have the PID of the running process; use the
    			// binary name instead.
    			adb("exec-out", "killall -QUIT "+binName)
    		}
    	}()
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Aug 21 17:46:57 GMT 2023
    - 15.3K bytes
    - Viewed (0)
Back to top