Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Erling (0.24 sec)

  1. src/archive/zip/fuzz_test.go

    			files = append(files, file{header: &f.FileHeader, content: content})
    			if _, err := r.Open(f.Name); err != nil {
    				continue
    			}
    		}
    
    		// If we were unable to read anything out of the archive don't
    		// bother trying to roundtrip it.
    		if len(files) == 0 {
    			return
    		}
    
    		w := NewWriter(io.Discard)
    		for _, f := range files {
    			ww, err := w.CreateHeader(f.header)
    			if err != nil {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jan 13 18:06:33 GMT 2022
    - 1.7K bytes
    - Viewed (0)
  2. src/archive/tar/fuzz_test.go

    			if _, err := io.Copy(buf, r); err != nil {
    				continue
    			}
    			files = append(files, file{header: hdr, content: buf.Bytes()})
    		}
    
    		// If we were unable to read anything out of the archive don't
    		// bother trying to roundtrip it.
    		if len(files) == 0 {
    			return
    		}
    
    		out := bytes.NewBuffer(nil)
    		w := NewWriter(out)
    		for _, f := range files {
    			if err := w.WriteHeader(f.header); err != nil {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jan 13 18:06:33 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg container/ring, func New(int) *Ring
    pkg container/ring, method (*Ring) Do(func(interface{}))
    pkg container/ring, method (*Ring) Len() int
    pkg container/ring, method (*Ring) Link(*Ring) *Ring
    pkg container/ring, method (*Ring) Move(int) *Ring
    pkg container/ring, method (*Ring) Next() *Ring
    pkg container/ring, method (*Ring) Prev() *Ring
    pkg container/ring, method (*Ring) Unlink(int) *Ring
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  4. src/cmd/cgo/gcc.go

    	for _, n := range f.Name {
    		if n.Kind == "func" {
    			functions[n.Go] = false
    		}
    	}
    
    	// Now that we have all the name types filled in,
    	// scan through the Refs to identify the ones that
    	// are trying to do a ,err call. Also check that
    	// functions are only used in calls.
    	for _, r := range f.Ref {
    		if r.Name.IsConst() && r.Name.Const == "" {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg syscall (linux-386), const PACKET_OTHERHOST = 3
    pkg syscall (linux-386), const PACKET_OUTGOING = 4
    pkg syscall (linux-386), const PACKET_RECV_OUTPUT = 3
    pkg syscall (linux-386), const PACKET_RX_RING = 5
    pkg syscall (linux-386), const PACKET_STATISTICS = 6
    pkg syscall (linux-386), const PARENB = 256
    pkg syscall (linux-386), const PARMRK = 8
    pkg syscall (linux-386), const PARODD = 512
    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)
  6. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const PACKET_OUTGOING ideal-int
    pkg syscall (linux-arm-cgo), const PACKET_RECV_OUTPUT ideal-int
    pkg syscall (linux-arm-cgo), const PACKET_RX_RING ideal-int
    pkg syscall (linux-arm-cgo), const PACKET_STATISTICS ideal-int
    pkg syscall (linux-arm-cgo), const PARENB ideal-int
    pkg syscall (linux-arm-cgo), const PARMRK ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  7. CONTRIBUTING.md

    ## Before filing an issue
    
    If you are unsure whether you have found a bug, please consider asking in the [golang-nuts mailing
    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
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Mar 29 22:00:27 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  8. doc/godebug.md

    (such as [`os.ModeDir`](/pkg/os#ModeDir)) do not have the `ModeIrregular` bit set.
    
    Go 1.23 changed [`os.Readlink`](/pkg/os#Readlink) and [`filepath.EvalSymlinks`](/pkg/path/filepath#EvalSymlinks)
    to avoid trying to normalize volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  9. src/archive/tar/tar_test.go

    		for _, v := range vectors {
    			b.Run(v.label, func(b *testing.B) {
    				b.ReportAllocs()
    				for i := 0; i < b.N; i++ {
    					// Writing to io.Discard because we want to
    					// test purely the writer code and not bring in disk performance into this.
    					tw := NewWriter(io.Discard)
    					for _, file := range v.files {
    						if err := tw.WriteHeader(file.hdr); err != nil {
    							b.Errorf("unexpected WriteHeader error: %v", err)
    						}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24K bytes
    - Viewed (0)
  10. doc/go1.22.html

      The trace viewer also now displays the full duration of all system calls.
      <br />
      These improvements only apply for viewing traces produced by programs built with
      Go 1.22 or newer.
      A future release will bring some of these improvements to traces produced by older
      version of Go.
    </p>
    
    <h3 id="vet">Vet</h3>
    
    <h4 id="vet-loopclosure">References to loop variables</h4>
    
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
Back to top