Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Morote (0.2 sec)

  1. src/bufio/bufio_test.go

    		t.Errorf("w.Flush() = %v, want nil", err)
    	}
    
    	if got, want := rfw.writeBytes, bufsize; got != want {
    		t.Errorf("wrote %v bytes with Write, want %v", got, want)
    	}
    	if got, want := rfw.readFromBytes, len(input)-bufsize; got != want {
    		t.Errorf("wrote %v bytes with ReadFrom, want %v", got, want)
    	}
    }
    
    func TestReadZero(t *testing.T) {
    	for _, size := range []int{100, 2} {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  2. src/archive/zip/reader_test.go

    				Name:     "readonly",
    				Content:  []byte("important \r\n"),
    				Modified: time.Date(2011, 12, 8, 10, 6, 8, 0, timeZone(0)),
    				Mode:     0444,
    			},
    		},
    	},
    	{
    		// created by Go, before we wrote the "optional" data
    		// descriptor signatures (which are required by macOS).
    		// Use obscured file to avoid Appleā€™s notarization service
    		// rejecting the toolchain due to an inability to unzip this archive.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const AF_NATM ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_NS = 6
    pkg syscall (netbsd-arm64-cgo), const AF_NS ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_OROUTE = 17
    pkg syscall (netbsd-arm64-cgo), const AF_OROUTE ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_OSI = 7
    pkg syscall (netbsd-arm64-cgo), const AF_OSI ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_PUP = 4
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. src/archive/zip/zip_test.go

    	}
    	for len(p) > 0 {
    		n := copy(ss.buf[ss.start:], p)
    		p = p[n:]
    		ss.start += n
    		if ss.start == ss.keep {
    			ss.start = 0
    		}
    	}
    	return
    }
    
    // generatesZip64 reports whether f wrote a zip64 file.
    // f is also responsible for closing w.
    func generatesZip64(t *testing.T, f func(w *Writer)) bool {
    	ss := &suffixSaver{keep: 10 << 20}
    	w := NewWriter(ss)
    	f(w)
    	return suffixIsZip64(t, ss)
    }
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg syscall (netbsd-386), const AF_MAX = 35
    pkg syscall (netbsd-386), const AF_MPLS = 33
    pkg syscall (netbsd-386), const AF_NATM = 27
    pkg syscall (netbsd-386), const AF_NS = 6
    pkg syscall (netbsd-386), const AF_OROUTE = 17
    pkg syscall (netbsd-386), const AF_OSI = 7
    pkg syscall (netbsd-386), const AF_PUP = 4
    pkg syscall (netbsd-386), const AF_ROUTE = 34
    pkg syscall (netbsd-386), const AF_SNA = 11
    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 (netbsd-386), const AF_MPLS ideal-int
    pkg syscall (netbsd-386), const AF_NATM ideal-int
    pkg syscall (netbsd-386), const AF_NS ideal-int
    pkg syscall (netbsd-386), const AF_OROUTE ideal-int
    pkg syscall (netbsd-386), const AF_OSI ideal-int
    pkg syscall (netbsd-386), const AF_PUP ideal-int
    pkg syscall (netbsd-386), const AF_ROUTE ideal-int
    pkg syscall (netbsd-386), const AF_SNA 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)
Back to top