Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Confirm (0.29 sec)

  1. src/bytes/buffer_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if i != 0 {
    		t.Fatalf("unexpected return from bytes.ReadFrom (1): got: %d, want %d", i, 0)
    	}
    	check(t, "TestReadFromPanicReader (1)", &buf, "")
    
    	// Confirm that when Reader panics, the empty buffer remains empty
    	var buf2 Buffer
    	defer func() {
    		recover()
    		check(t, "TestReadFromPanicReader (2)", &buf2, "")
    	}()
    	buf2.ReadFrom(panicReader{panic: true})
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 13:31:36 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue1435.go

    //   pthread_mutex_unlock(&mu);
    //   for (i = 0; i < nts; i++) {
    //     pthread_join(t[i], NULL);
    //   }
    //   pthread_mutex_destroy(&mu);
    //   free(t);
    // }
    import "C"
    
    // compareStatus is used to confirm the contents of the thread
    // specific status files match expectations.
    func compareStatus(filter, expect string) error {
    	expected := filter + expect
    	pid := syscall.Getpid()
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jul 28 21:31:41 GMT 2023
    - 7.5K bytes
    - Viewed (0)
  3. doc/asm.html

    on the <code>TEXT</code> instruction.
    The pointer information can also be omitted if the
    function contains no call instructions.
    Otherwise, the local stack frame must not contain pointers,
    and the assembly must confirm this fact by executing the
    pseudo-instruction <code>NO_LOCAL_POINTERS</code>.
    Because stack resizing is implemented by moving the stack,
    the stack pointer may change during any function call:
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (linux-386), const MNT_EXPIRE ideal-int
    pkg syscall (linux-386), const MNT_FORCE ideal-int
    pkg syscall (linux-386), const MSG_CMSG_CLOEXEC ideal-int
    pkg syscall (linux-386), const MSG_CONFIRM ideal-int
    pkg syscall (linux-386), const MSG_CTRUNC ideal-int
    pkg syscall (linux-386), const MSG_DONTROUTE ideal-int
    pkg syscall (linux-386), const MSG_DONTWAIT 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 (2)
  5. src/cmd/cgo/gcc.go

    //
    // The compiler command line is split into arguments on whitespace. Quotes
    // are understood, so arguments may contain whitespace.
    //
    // checkGCCBaseCmd confirms that the compiler exists in PATH, returning
    // an error if it does not.
    func checkGCCBaseCmd() ([]string, error) {
    	// Use $CC if set, since that's what the build uses.
    	value := os.Getenv("CC")
    	if value == "" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (linux-386), const MNT_EXPIRE = 4
    pkg syscall (linux-386), const MNT_FORCE = 1
    pkg syscall (linux-386), const MSG_CMSG_CLOEXEC = 1073741824
    pkg syscall (linux-386), const MSG_CONFIRM = 2048
    pkg syscall (linux-386), const MSG_CTRUNC = 8
    pkg syscall (linux-386), const MSG_DONTROUTE = 4
    pkg syscall (linux-386), const MSG_DONTWAIT = 64
    pkg syscall (linux-386), const MSG_EOR = 128
    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 (1)
  7. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const MNT_EXPIRE ideal-int
    pkg syscall (linux-arm-cgo), const MNT_FORCE ideal-int
    pkg syscall (linux-arm-cgo), const MSG_CMSG_CLOEXEC ideal-int
    pkg syscall (linux-arm-cgo), const MSG_CONFIRM ideal-int
    pkg syscall (linux-arm-cgo), const MSG_CTRUNC ideal-int
    pkg syscall (linux-arm-cgo), const MSG_DONTROUTE ideal-int
    pkg syscall (linux-arm-cgo), const MSG_DONTWAIT 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