Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for albers (0.28 sec)

  1. .github/ISSUE_TEMPLATE/04-vuln.yml

    name: Go vulnerability management - bugs and feature requests
    description: Issues or feature requests about Go vulnerability management
    title: "x/vuln: issue title"
    labels: ["vulncheck or vulndb"]
    body:
      - type: markdown
        attributes:
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/parse.go

    	pc            int64 // virtual PC; count of Progs; doesn't advance for GLOBL or DATA.
    	input         []lex.Token
    	inputPos      int
    	pendingLabels []string // Labels to attach to next instruction.
    	labels        map[string]*obj.Prog
    	toPatch       []Patch
    	addr          []obj.Addr
    	arch          *arch.Arch
    	ctxt          *obj.Link
    	firstProg     *obj.Prog
    	lastProg      *obj.Prog
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  3. doc/go_spec.html

    <h3 id="Label_scopes">Label scopes</h3>
    
    <p>
    Labels are declared by <a href="#Labeled_statements">labeled statements</a> and are
    used in the <a href="#Break_statements">"break"</a>,
    <a href="#Continue_statements">"continue"</a>, and
    <a href="#Goto_statements">"goto"</a> statements.
    It is illegal to define a label that is never used.
    In contrast to other identifiers, labels are not block scoped and do
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg log, const Ldate = 1
    pkg log, const Llongfile = 8
    pkg log, const Lmicroseconds = 4
    pkg log, const Lshortfile = 16
    pkg log, const LstdFlags = 3
    pkg log, const Ltime = 2
    pkg log/syslog (darwin-386), const LOG_ALERT = 1
    pkg log/syslog (darwin-386), const LOG_AUTH = 32
    pkg log/syslog (darwin-386), const LOG_AUTH Priority
    pkg log/syslog (darwin-386), const LOG_AUTHPRIV = 80
    pkg log/syslog (darwin-386), const LOG_AUTHPRIV Priority
    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)
  5. .github/ISSUE_TEMPLATE/12-telemetry.yml

    name: Go Telemetry Proposals
    description: New telemetry counter or update on an existing one
    title: "x/telemetry/config: proposal title"
    labels: ["Telemetry-Proposal"]
    projects: ["golang/29"]
    body:
    - type: textarea
      attributes:
        label: Counter names
        description: Names of counters to add or update.
      validations:
        required: true
    - type: textarea
      attributes:
        label: Description
        description: What do these counters measure?
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Nov 27 17:23:51 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  6. api/go1.9.txt

    pkg runtime/pprof, func ForLabels(context.Context, func(string, string) bool)
    pkg runtime/pprof, func Label(context.Context, string) (string, bool)
    pkg runtime/pprof, func Labels(...string) LabelSet
    pkg runtime/pprof, func SetGoroutineLabels(context.Context)
    pkg runtime/pprof, func WithLabels(context.Context, LabelSet) context.Context
    pkg runtime/pprof, type LabelSet struct
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Oct 04 20:20:20 GMT 2021
    - 10.7K bytes
    - Viewed (0)
  7. src/archive/zip/struct.go

    // the file it describes, it may be necessary to modify the Name field
    // of the returned header to provide the full path name of the file.
    // If compression is desired, callers should set the FileHeader.Method
    // field; it is unset by default.
    func FileInfoHeader(fi fs.FileInfo) (*FileHeader, error) {
    	size := fi.Size()
    	fh := &FileHeader{
    		Name:               fi.Name(),
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  8. src/archive/zip/reader.go

    func (rc *ReadCloser) Close() error {
    	return rc.f.Close()
    }
    
    // DataOffset returns the offset of the file's possibly-compressed
    // data, relative to the beginning of the zip file.
    //
    // Most callers should instead use [File.Open], which transparently
    // decompresses data and verifies checksums.
    func (f *File) DataOffset() (offset int64, err error) {
    	bodyOffset, err := f.findBodyOffset()
    	if err != nil {
    		return
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  9. doc/asm.html

    <code>SP</code> and <code>PC</code> are accessible as
    <code>R13</code> and <code>R15</code>.
    </p>
    
    <p>
    Branches and direct jumps are always written as offsets to the PC, or as
    jumps to labels:
    </p>
    
    <pre>
    label:
    	MOVW $0, R1
    	JMP label
    </pre>
    
    <p>
    Each label is visible only within the function in which it is defined.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  10. api/go1.20.txt

    pkg time, method (Time) Compare(Time) int #50770
    pkg unicode/utf16, func AppendRune([]uint16, int32) []uint16 #51896
    # freebsd riscv64 port
    pkg log/syslog (freebsd-riscv64), const LOG_ALERT = 1 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_ALERT Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_AUTH = 32 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_AUTH Priority #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)
Back to top