Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Tandon (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

    		}
    
    		// While not recommended, it is valid to append to a shifted buffer.
    		// This forces Write to copy the input.
    		if rn.Intn(8) == 0 && cap(b) > 0 {
    			b = b[1:1:cap(b)]
    		}
    
    		// Append a random integer of varying width.
    		n := int64(rn.Intn(1 << rn.Intn(30)))
    		want = append(strconv.AppendInt(want, n, 10), ' ')
    		b = append(strconv.AppendInt(b, n, 10), ' ')
    		w.Write(b)
    	}
    	w.Flush()
    
    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_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
    pkg syscall (freebsd-386), const MADV_WILLNEED ideal-int
    pkg syscall (freebsd-386), const MAP_ANON = 4096
    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. src/cmd/asm/internal/asm/testdata/riscv64.s

    	SLLIUW		$31, X17, X18			// 1b99f809
    	SLLIUW		$63, X17			// 9b98f80b
    	SLLIUW		$63, X17, X18			// 1b99f80b
    	SLLIUW		$1, X18, X19			// 9b191908
    
    	// 1.2: Basic Bit Manipulation (Zbb)
    	ANDN	X19, X20, X21				// b37a3a41
    	ANDN	X19, X20				// 337a3a41
    	CLZ	X20, X21				// 931a0a60
    	CLZW	X21, X22				// 1b9b0a60
    	CPOP	X22, X23				// 931b2b60
    	CPOPW	X23, X24				// 1b9c2b60
    	CTZ	X24, X25				// 931c1c60
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  9. api/go1.2.txt

    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
    pkg syscall (freebsd-386-cgo), const MAP_ANONYMOUS ideal-int
    pkg syscall (freebsd-386-cgo), const MAP_COPY 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)
  10. doc/godebug.md

    preserving the behavior of earlier versions of Go.
    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)
Back to top