Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for random (0.29 sec)

  1. api/go1.3.txt

    pkg syscall (netbsd-386), const MADV_FREE ideal-int
    pkg syscall (netbsd-386), const MADV_NORMAL = 0
    pkg syscall (netbsd-386), const MADV_NORMAL ideal-int
    pkg syscall (netbsd-386), const MADV_RANDOM = 1
    pkg syscall (netbsd-386), const MADV_RANDOM ideal-int
    pkg syscall (netbsd-386), const MADV_SEQUENTIAL = 2
    pkg syscall (netbsd-386), const MADV_SEQUENTIAL ideal-int
    pkg syscall (netbsd-386), const MADV_SPACEAVAIL = 5
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  2. src/bufio/bufio_test.go

    					t.Errorf("have=%q", written)
    				}
    			}
    		}
    	}
    }
    
    func TestWriterAppend(t *testing.T) {
    	got := new(bytes.Buffer)
    	var want []byte
    	rn := rand.New(rand.NewSource(0))
    	w := NewWriterSize(got, 64)
    	for i := 0; i < 100; i++ {
    		// Obtain a buffer to append to.
    		b := w.AvailableBuffer()
    		if w.Available() != cap(b) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const MADV_NORMAL = 0
    pkg syscall (netbsd-arm64-cgo), const MADV_NORMAL ideal-int
    pkg syscall (netbsd-arm64-cgo), const MADV_RANDOM = 1
    pkg syscall (netbsd-arm64-cgo), const MADV_RANDOM ideal-int
    pkg syscall (netbsd-arm64-cgo), const MADV_SEQUENTIAL = 2
    pkg syscall (netbsd-arm64-cgo), const MADV_SEQUENTIAL ideal-int
    pkg syscall (netbsd-arm64-cgo), const MADV_SPACEAVAIL = 5
    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. doc/go1.17_spec.html

    or assignment are not yet evaluated.
    </li>
    
    <li>
    If one or more of the communications can proceed,
    a single one that can proceed is chosen via a uniform pseudo-random selection.
    Otherwise, if there is a default case, that case is chosen.
    If there is no default case, the "select" statement blocks until
    at least one of the communications can proceed.
    </li>
    
    <li>
    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)
  5. src/archive/zip/zip_test.go

    }
    
    type repeatedByte struct {
    	off int64
    	b   byte
    	n   int64
    }
    
    // rleBuffer is a run-length-encoded byte buffer.
    // It's an io.Writer (like a bytes.Buffer) and also an io.ReaderAt,
    // allowing random-access reads.
    type rleBuffer struct {
    	buf []repeatedByte
    }
    
    func (r *rleBuffer) Size() int64 {
    	if len(r.buf) == 0 {
    		return 0
    	}
    	last := &r.buf[len(r.buf)-1]
    	return last.off + last.n
    }
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (freebsd-386), const MADV_NOSYNC ideal-int
    pkg syscall (freebsd-386), const MADV_PROTECT = 10
    pkg syscall (freebsd-386), const MADV_PROTECT ideal-int
    pkg syscall (freebsd-386), const MADV_RANDOM = 1
    pkg syscall (freebsd-386), const MADV_RANDOM ideal-int
    pkg syscall (freebsd-386), const MADV_SEQUENTIAL = 2
    pkg syscall (freebsd-386), const MADV_SEQUENTIAL ideal-int
    pkg syscall (freebsd-386), const MADV_WILLNEED = 3
    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. doc/go_spec.html

    or assignment are not yet evaluated.
    </li>
    
    <li>
    If one or more of the communications can proceed,
    a single one that can proceed is chosen via a uniform pseudo-random selection.
    Otherwise, if there is a default case, that case is chosen.
    If there is no default case, the "select" statement blocks until
    at least one of the communications can proceed.
    </li>
    
    <li>
    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)
  8. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const MADV_NORMAL ideal-int
    pkg syscall (freebsd-386-cgo), const MADV_NOSYNC ideal-int
    pkg syscall (freebsd-386-cgo), const MADV_PROTECT ideal-int
    pkg syscall (freebsd-386-cgo), const MADV_RANDOM ideal-int
    pkg syscall (freebsd-386-cgo), const MADV_SEQUENTIAL ideal-int
    pkg syscall (freebsd-386-cgo), const MADV_WILLNEED ideal-int
    pkg syscall (freebsd-386-cgo), const MAP_ANON 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)
  9. doc/godebug.md

    A future version of Go may change the defaults to
    `tarinsecurepath=0` and `zipinsecurepath=0`.
    
    Go 1.20 introduced automatic seeding of the
    [`math/rand`](/pkg/math/rand) global random number generator,
    controlled by the [`randautoseed` setting](/pkg/math/rand/#Seed).
    
    Go 1.20 introduced the concept of fallback roots for use during certificate verification,
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    	const (
    		notType = 1 << iota
    		notIntConst
    		notNumConst
    		notStrLiteral
    		notDeclared
    	)
    	sawUnmatchedErrors := false
    	for _, line := range strings.Split(stderr, "\n") {
    		// Ignore warnings and random comments, with one
    		// exception: newer GCC versions will sometimes emit
    		// an error on a macro #define with a note referring
    		// to where the expansion occurs. We care about where
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top