Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for ONCE (0.43 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    // Code generated by 'go generate'; DO NOT EDIT.
    
    package windows
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ unsafe.Pointer
    
    // Do the interface allocations only once for common
    // Errno values.
    const (
    	errnoERROR_IO_PENDING = 997
    )
    
    var (
    	errERROR_IO_PENDING error = syscall.Errno(errnoERROR_IO_PENDING)
    	errERROR_EINVAL     error = syscall.EINVAL
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    				if !ok || s.IsTerminationRequested() || s.IsTerminationStarted() || s.IsFinished() || s.IsWorking() || s.IsDeleted() {
    					t.Fatalf("unexpected requested pod termination: %#v", s)
    				}
    
    				// pod was synced once
    				if actual, expected := records[uid], []syncPodRecord{
    					{name: "pod1", updateType: kubetypes.SyncPodCreate},
    				}; !reflect.DeepEqual(expected, actual) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	    (for example, -benchtime 100x).
    //
    //	-count n
    //	    Run each test, benchmark, and fuzz seed n times (default 1).
    //	    If -cpu is set, run n times for each GOMAXPROCS value.
    //	    Examples are always run once. -count does not apply to
    //	    fuzz tests matched by -fuzz.
    //
    //	-cover
    //	    Enable coverage analysis.
    //	    Note that because coverage works by annotating the source
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top