Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for tracker (0.24 sec)

  1. .github/SUPPORT.md

    Unlike many projects on GitHub, the Go project does not use its bug tracker for general discussion or asking questions.
    We only use our bug tracker for tracking bugs and tracking proposals going through the [Proposal Process](https://go.dev/s/proposal-process).
    
    For asking questions, see:
    
    * [The golang-nuts mailing list](https://groups.google.com/d/forum/golang-nuts)
    
    * [The Go Forum](https://forum.golangbridge.org/), a web-based forum
    
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 29 22:00:27 GMT 2023
    - 692 bytes
    - Viewed (0)
  2. README.md

    ### Contributing
    
    Go is the work of thousands of contributors. We appreciate your help!
    
    To contribute, please read the contribution guidelines at https://go.dev/doc/contribute.
    
    Note that the Go project uses the issue tracker for bug reports and
    proposals only. See https://go.dev/wiki/Questions for a list of
    places to ask questions about the Go language.
    
    [rf]: https://reneefrench.blogspot.com/
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 02 20:14:56 GMT 2022
    - 1.4K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const NOTE_REVOKE ideal-int
    pkg syscall (netbsd-arm64-cgo), const NOTE_TRACK = 1
    pkg syscall (netbsd-arm64-cgo), const NOTE_TRACKERR = 2
    pkg syscall (netbsd-arm64-cgo), const NOTE_TRACKERR ideal-int
    pkg syscall (netbsd-arm64-cgo), const NOTE_TRACK ideal-int
    pkg syscall (netbsd-arm64-cgo), const NOTE_WRITE = 2
    pkg syscall (netbsd-arm64-cgo), const NOTE_WRITE ideal-int
    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)
  4. CONTRIBUTING.md

    list](https://groups.google.com/forum/#!forum/golang-nuts) or [other forums](https://golang.org/help/) first. If
    the behavior you are seeing is confirmed as a bug or issue, it can easily be re-raised in the issue tracker.
    
    ## Filing issues
    
    Sensitive security-related issues should be reported to [******@****.***](mailto:******@****.***).
    See the [security policy](https://golang.org/security) for details.
    
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 29 22:00:27 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/archive/tar/writer.go

    // then this returns an error.
    func (tw *Writer) Close() error {
    	if tw.err == ErrWriteAfterClose {
    		return nil
    	}
    	if tw.err != nil {
    		return tw.err
    	}
    
    	// Trailer: two zero blocks.
    	err := tw.Flush()
    	for i := 0; i < 2 && err == nil; i++ {
    		_, err = tw.w.Write(zeroBlock[:])
    	}
    
    	// Ensure all future actions are invalid.
    	tw.err = ErrWriteAfterClose
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 19.6K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/parse.go

    //
    // Given asm line:
    //
    //	VP4DPWSSDS Z5, [Z10-Z13], (AX)
    //
    // zmm2 is Z10, and Z13 is the only valid value for it (Z10+3).
    // Only simple ranges are accepted, like [Z0-Z3].
    //
    // The opening bracket has been consumed.
    func (p *Parser) registerList(a *obj.Addr) {
    	if p.arch.InFamily(sys.I386, sys.AMD64) {
    		p.registerListX86(a)
    	} else {
    		p.registerListARM(a)
    	}
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg syscall (darwin-386), const NOTE_REVOKE = 64
    pkg syscall (darwin-386), const NOTE_SECONDS = 1
    pkg syscall (darwin-386), const NOTE_SIGNAL = 134217728
    pkg syscall (darwin-386), const NOTE_TRACK = 1
    pkg syscall (darwin-386), const NOTE_TRACKERR = 2
    pkg syscall (darwin-386), const NOTE_TRIGGER = 16777216
    pkg syscall (darwin-386), const NOTE_USECONDS = 2
    pkg syscall (darwin-386), const NOTE_VM_ERROR = 268435456
    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)
  8. src/archive/tar/format.go

    		return FormatUnknown
    	}
    
    	// Guess the magic values.
    	magic := string(b.toUSTAR().magic())
    	version := string(b.toUSTAR().version())
    	trailer := string(b.toSTAR().trailer())
    	switch {
    	case magic == magicUSTAR && trailer == trailerSTAR:
    		return formatSTAR
    	case magic == magicUSTAR:
    		return FormatUSTAR | FormatPAX
    	case magic == magicGNU && version == versionGNU:
    		return FormatGNU
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/archive/tar/fuzz_test.go

    		}
    		if err := w.Close(); err != nil {
    			t.Fatalf("Unable to write archive: %s", err)
    		}
    
    		// TODO: We may want to check if the archive roundtrips. This would require
    		// taking into account addition of the two zero trailer blocks that Writer.Close
    		// appends.
    	})
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 13 18:06:33 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  10. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const NOTE_RENAME ideal-int
    pkg syscall (freebsd-386-cgo), const NOTE_REVOKE ideal-int
    pkg syscall (freebsd-386-cgo), const NOTE_TRACK ideal-int
    pkg syscall (freebsd-386-cgo), const NOTE_TRACKERR ideal-int
    pkg syscall (freebsd-386-cgo), const NOTE_TRIGGER ideal-int
    pkg syscall (freebsd-386-cgo), const NOTE_WRITE ideal-int
    pkg syscall (freebsd-386-cgo), const OCRNL 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)
Back to top