Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for prove (0.17 sec)

  1. src/bufio/bufio_test.go

    	}
    
    	// The Reader should have buffered all the content from the io.Reader.
    	if n := len(eofR.buf); n != 0 {
    		t.Fatalf("got %d bytes left in bufio.Reader source; want 0 bytes", n)
    	}
    	// To prove the point, check that there are still 5 bytes available to read.
    	if n := r.Buffered(); n != 5 {
    		t.Fatalf("got %d bytes buffered in bufio.Reader; want 5 bytes", n)
    	}
    
    	// This is the second read of 0 bytes.
    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)
  2. doc/go_mem.html

    <p>
    If <code>list</code> pointed to a cyclic list,
    then the original program would never access <code>*p</code> or <code>*q</code>,
    but the rewritten program would.
    (Moving `*p` ahead would be safe if the compiler can prove `*p` will not panic;
    moving `*q` ahead would also require the compiler proving that no other
    goroutine can access `*q`.)
    </p>
    
    <p>
    Not introducing data races also means not assuming that called functions
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg syscall (windows-386), const PROV_INTEL_SEC ideal-int
    pkg syscall (windows-386), const PROV_MS_EXCHANGE ideal-int
    pkg syscall (windows-386), const PROV_REPLACE_OWF ideal-int
    pkg syscall (windows-386), const PROV_RNG ideal-int
    pkg syscall (windows-386), const PROV_RSA_AES ideal-int
    pkg syscall (windows-386), const PROV_RSA_FULL ideal-int
    pkg syscall (windows-386), const PROV_RSA_SCHANNEL ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  4. api/go1.1.txt

    pkg syscall (windows-amd64), const PROV_INTEL_SEC = 22
    pkg syscall (windows-amd64), const PROV_MS_EXCHANGE = 5
    pkg syscall (windows-amd64), const PROV_REPLACE_OWF = 23
    pkg syscall (windows-amd64), const PROV_RNG = 21
    pkg syscall (windows-amd64), const PROV_RSA_AES = 24
    pkg syscall (windows-amd64), const PROV_RSA_FULL = 1
    pkg syscall (windows-amd64), const PROV_RSA_SCHANNEL = 12
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  5. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_DO ideal-int
    pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_DONT ideal-int
    pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_PROBE ideal-int
    pkg syscall (linux-arm-cgo), const IPV6_PMTUDISC_WANT ideal-int
    pkg syscall (linux-arm-cgo), const IPV6_RECVDSTOPTS ideal-int
    pkg syscall (linux-arm-cgo), const IPV6_RECVERR ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top