Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for releases (0.24 sec)

  1. src/cmd/cgo/internal/test/issue1435.go

    		// Since this test does need root to work, we need to skip it.
    		t.Skip("skipping root only test on a non-root builder")
    	}
    	if runtime.GOOS == "linux" {
    		if _, err := os.Stat("/etc/alpine-release"); err == nil {
    			t.Skip("skipping failing test on alpine - go.dev/issue/19938")
    		}
    	}
    
    	// Launch some threads in C.
    	const cts = 5
    	C.trial(cts)
    	defer C.cleanup()
    
    	vs := []struct {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jul 28 21:31:41 GMT 2023
    - 7.5K bytes
    - Viewed (0)
  2. misc/linkcheck/linkcheck.go

    		ids = append(ids, m[1])
    	}
    	return
    }
    
    // url may contain a #fragment, and the fragment is then noted as needing to exist.
    func crawl(url string, sourceURL string) {
    	if strings.Contains(url, "/devel/release") {
    		return
    	}
    	mu.Lock()
    	defer mu.Unlock()
    	if u, frag, ok := strings.Cut(url, "#"); ok {
    		url = u
    		if frag != "" {
    			uf := urlFrag{url, frag}
    			neededFrags[uf] = append(neededFrags[uf], sourceURL)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 06 15:53:04 GMT 2021
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    // (32 or 64-bit) is for payload, whatever the tagged class.
    //
    // Note that the specific integers used to identify the
    // specific tagged classes can and will change from release
    // to release (that's why this stuff is in CF*Internal*.h),
    // as can the definition of type info vs payload above.
    //
    #if __LP64__
    #define CF_IS_TAGGED_OBJ(PTR)	((uintptr_t)(PTR) & 0x1)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg os, method (*File) WriteString(string) (int, error)
    pkg os, method (*LinkError) Error() string
    pkg os, method (*PathError) Error() string
    pkg os, method (*Process) Kill() error
    pkg os, method (*Process) Release() error
    pkg os, method (*Process) Signal(Signal) error
    pkg os, method (*Process) Wait() (*ProcessState, error)
    pkg os, method (*ProcessState) Exited() bool
    pkg os, method (*ProcessState) Pid() int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64), const BPF_NEG ideal-int
    pkg syscall (darwin-arm64), const BPF_OR = 64
    pkg syscall (darwin-arm64), const BPF_OR ideal-int
    pkg syscall (darwin-arm64), const BPF_RELEASE = 199606
    pkg syscall (darwin-arm64), const BPF_RELEASE ideal-int
    pkg syscall (darwin-arm64), const BPF_RET = 6
    pkg syscall (darwin-arm64), const BPF_RET ideal-int
    pkg syscall (darwin-arm64), const BPF_RSH = 112
    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)
  6. api/go1.14.txt

    pkg syscall (freebsd-arm64), const BPF_NEG ideal-int
    pkg syscall (freebsd-arm64), const BPF_OR = 64
    pkg syscall (freebsd-arm64), const BPF_OR ideal-int
    pkg syscall (freebsd-arm64), const BPF_RELEASE = 199606
    pkg syscall (freebsd-arm64), const BPF_RELEASE ideal-int
    pkg syscall (freebsd-arm64), const BPF_RET = 6
    pkg syscall (freebsd-arm64), const BPF_RET ideal-int
    pkg syscall (freebsd-arm64), const BPF_RSH = 112
    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)
  7. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const BPF_OR = 64 #53466
    pkg syscall (freebsd-riscv64), const BPF_OR ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_RELEASE = 199606 #53466
    pkg syscall (freebsd-riscv64), const BPF_RELEASE ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_RET = 6 #53466
    pkg syscall (freebsd-riscv64), const BPF_RET ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_RSH = 112 #53466
    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)
  8. doc/README.md

    ## For the release team
    
    At the start of a release development cycle, the contents of `next` should be deleted
    and replaced with those of `initial`. From the repo root:
    
        > cd doc
        > rm -r next/*
        > cp -r initial/* next
    
    Then edit `next/1-intro.md` to refer to the next version.
    
    To prepare the release notes for a release, run `golang.org/x/build/cmd/relnote generate`.
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Apr 26 21:24:36 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  9. api/README

    become a go1.XX.txt for XX >= 19.
    
    The next/ directory contains the only files intended to be mutated.
    Each file in that directory contains a list of features that may be added
    to the next release of Go. The files in this directory only affect the
    warning output from the go api tool. Each file should be named
    nnnnn.txt, after the issue number for the accepted proposal.
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Jan 31 19:22:50 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  10. README.md

    BSD-style license found in the LICENSE file.
    
    ### Download and Install
    
    #### Binary Distributions
    
    Official binary distributions are available at https://go.dev/dl/.
    
    After downloading a binary release, visit https://go.dev/doc/install
    for installation instructions.
    
    #### Install From Source
    
    If a binary distribution is not available for your combination of
    operating system and architecture, visit
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Nov 02 20:14:56 GMT 2022
    - 1.4K bytes
    - Viewed (0)
Back to top