Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for errchk (0.18 sec)

  1. pkg/scheduler/schedule_one_test.go

    	}
    	scheduler, bindingChan, errChan := setupTestSchedulerWithOnePodOnNode(ctx, t, queuedPodStore, scache, pod, &node, fns...)
    
    	waitPodExpireChan := make(chan struct{})
    	timeout := make(chan struct{})
    	go func() {
    		for {
    			select {
    			case <-timeout:
    				return
    			default:
    			}
    			pods, err := scache.PodCount()
    			if err != nil {
    				errChan <- fmt.Errorf("cache.List failed: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    	go func() {
    		conn, err := net.Dial("tcp", server.Listener.Addr().String())
    		if err != nil {
    			errCh <- err
    			return
    		}
    		defer conn.Close()
    		_, err = conn.Write([]byte("POST / HTTP/1.1\r\nConnection: close\r\nHost: foo\r\nContent-Length: 100000\r\n\r\n"))
    		if err != nil {
    			errCh <- err
    			return
    		}
    		// And now just block, making the server block on our
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	tr := c.Transport.(*Transport)
    	tr.MaxConnsPerHost = 1
    
    	errCh := make(chan error, 300)
    	doReq := func() {
    		resp, err := c.Get(ts.URL)
    		if err != nil {
    			errCh <- fmt.Errorf("request failed: %v", err)
    			return
    		}
    		defer resp.Body.Close()
    		_, err = io.ReadAll(resp.Body)
    		if err != nil {
    			errCh <- fmt.Errorf("read body failed: %v", err)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. go.sum

    github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
    github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=
    github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00=
    github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	ENXIO       = syscall.Errno(0x6)
    	EPERM       = syscall.Errno(0x1)
    	EPIPE       = syscall.Errno(0x20)
    	ERANGE      = syscall.Errno(0x22)
    	EROFS       = syscall.Errno(0x1e)
    	ESPIPE      = syscall.Errno(0x1d)
    	ESRCH       = syscall.Errno(0x3)
    	ETXTBSY     = syscall.Errno(0x1a)
    	EWOULDBLOCK = syscall.Errno(0xb)
    	EXDEV       = syscall.Errno(0x12)
    )
    
    // Signals
    const (
    	SIGABRT = syscall.Signal(0x6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, e1 := syscall.Syscall15(procCreateServiceW.Addr(), 13, uintptr(mgr), uintptr(unsafe.Pointer(serviceName)), uintptr(unsafe.Pointer(displayName)), uintptr(access), uintptr(srvType), uintptr(startType), uintptr(errCtl), uintptr(unsafe.Pointer(pathName)), uintptr(unsafe....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top