Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/archive/tar/writer.go

    //
    // If the current file is sparse and r is an io.ReadSeeker,
    // then readFrom uses Seek to skip past holes defined in Header.SparseHoles,
    // assuming that skipped regions are all NULs.
    // This always reads the last byte to ensure r is the right size.
    //
    // TODO(dsnet): Re-export this when adding sparse file support.
    // See https://golang.org/issue/22735
    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)
  2. doc/go1.17_spec.html

    are evaluated left-to-right and top-to-bottom; the first one that equals the
    switch expression
    triggers execution of the statements of the associated case;
    the other cases are skipped.
    If no case matches and there is a "default" case,
    its statements are executed.
    There can be at most one default case and it may appear anywhere in the
    "switch" statement.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. api/README

    Files in this directory are data for Go's API checker ("go tool api", in src/cmd/api).
    
    Each file is a list of API features, one per line.
    
    go1.txt (and similarly named files) are frozen once a version has been
    shipped. Each file adds new lines but does not remove any.
    
    except.txt lists features that may disappear without breaking true
    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 31 19:22:50 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  4. doc/go_spec.html

    are evaluated left-to-right and top-to-bottom; the first one that equals the
    switch expression
    triggers execution of the statements of the associated case;
    the other cases are skipped.
    If no case matches and there is a "default" case,
    its statements are executed.
    There can be at most one default case and it may appear anywhere in the
    "switch" statement.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  5. src/builtin/builtin.go

    // invocation of F then behaves like a call to panic, terminating G's
    // execution and running any deferred functions. This continues until all
    // functions in the executing goroutine have stopped, in reverse order. At
    // that point, the program is terminated with a non-zero exit code. This
    // termination sequence is called panicking and can be controlled by the
    // built-in function recover.
    //
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg testing, method (*B) SkipNow()
    pkg testing, method (*B) Skipf(string, ...interface{})
    pkg testing, method (*B) Skipped() bool
    pkg testing, method (*T) Skip(...interface{})
    pkg testing, method (*T) SkipNow()
    pkg testing, method (*T) Skipf(string, ...interface{})
    pkg testing, method (*T) Skipped() bool
    pkg testing, method (BenchmarkResult) AllocedBytesPerOp() int64
    pkg testing, method (BenchmarkResult) AllocsPerOp() int64
    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)
  7. src/cmd/asm/internal/lex/lex.go

    	Col() int
    	// Close does any teardown required.
    	Close()
    }
    
    // A Token is a scan token plus its string value.
    // A macro is stored as a sequence of Tokens with spaces stripped.
    type Token struct {
    	ScanToken
    	text string
    }
    
    // Make returns a Token with the given rune (ScanToken) and text representation.
    func Make(token ScanToken, text string) Token {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  8. api/go1.2.txt

    pkg testing, type TB interface, Skip(...interface{})
    pkg testing, type TB interface, SkipNow()
    pkg testing, type TB interface, Skipf(string, ...interface{})
    pkg testing, type TB interface, Skipped() bool
    pkg testing, type TB interface, unexported methods
    pkg text/template, method (Template) Copy() *parse.Tree
    pkg text/template/parse, method (*Tree) Copy() *Tree
    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)
  9. api/go1.18.txt

    pkg testing, method (*F) Setenv(string, string)
    pkg testing, method (*F) Skip(...interface{})
    pkg testing, method (*F) SkipNow()
    pkg testing, method (*F) Skipf(string, ...interface{})
    pkg testing, method (*F) Skipped() bool
    pkg testing, method (*F) TempDir() string
    pkg testing, type F struct
    pkg testing, type InternalFuzzTarget struct
    pkg testing, type InternalFuzzTarget struct, Fn func(*F)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 13K bytes
    - Viewed (0)
  10. src/archive/zip/reader.go

    	f.CompressedSize64 = uint64(f.CompressedSize)
    	f.UncompressedSize64 = uint64(f.UncompressedSize)
    	filenameLen := int(b.uint16())
    	extraLen := int(b.uint16())
    	commentLen := int(b.uint16())
    	b = b[4:] // skipped start disk number and internal attributes (2x uint16)
    	f.ExternalAttrs = b.uint32()
    	f.headerOffset = int64(b.uint32())
    	d := make([]byte, filenameLen+extraLen+commentLen)
    	if _, err := io.ReadFull(r, d); err != nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
Back to top