Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for perror (0.2 sec)

  1. src/net/http/transport_test.go

    			if err != nil {
    				uerr, ok := err.(*url.Error)
    				if !ok {
    					t.Errorf("error is not a url.Error; got: %#v", err)
    					continue
    				}
    				nerr, ok := uerr.Err.(net.Error)
    				if !ok {
    					t.Errorf("error does not satisfy net.Error interface; got: %#v", err)
    					continue
    				}
    				if !nerr.Timeout() {
    					t.Errorf("want timeout error; got: %q", nerr)
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    	if err := s.AddGeneratedConversionFunc((*v1alpha2.AllocationResult)(nil), (*resource.AllocationResult)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha2_AllocationResult_To_resource_AllocationResult(a.(*v1alpha2.AllocationResult), b.(*resource.AllocationResult), scope)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    			}
    		}
    	}
    
    	attachableVolumePluginName := unknownAttachableVolumePlugin
    
    	// Get attacher plugin
    	attachableVolumePlugin, err :=
    		og.volumePluginMgr.FindAttachablePluginBySpec(volumeToAttach.VolumeSpec)
    	// It's ok to ignore the error, returning error is not expected from this function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    }
    
    func ClearCommBreak(handle Handle) (err error) {
    	r1, _, e1 := syscall.Syscall(procClearCommBreak.Addr(), 1, uintptr(handle), 0, 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func ClearCommError(handle Handle, lpErrors *uint32, lpStat *ComStat) (err error) {
    	r1, _, e1 := syscall.Syscall(procClearCommError.Addr(), 3, uintptr(handle), uintptr(unsafe.Pointer(lpErrors)), uintptr(unsafe.Pointer(lpStat)))
    	if r1 == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework_test.go

    		},
    		{
    			name:               "Reserve - Error",
    			action:             func(f framework.Framework) { f.RunReservePluginsReserve(context.Background(), state, pod, "") },
    			inject:             injectedResult{ReserveStatus: int(framework.Error)},
    			wantExtensionPoint: "Reserve",
    			wantStatus:         framework.Error,
    		},
    		{
    			name:               "PreBind - Error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_control_test.go

    		t.Error(err)
    	}
    	pods, err := om.podsLister.Pods(set.Namespace).List(selector)
    	if err != nil {
    		t.Error(err)
    	}
    	if _, err := ssc.UpdateStatefulSet(context.TODO(), set, pods); err != nil {
    		t.Errorf("Error updating StatefulSet %s", err)
    	}
    	if err := invariants(set, om); err != nil {
    		t.Error(err)
    	}
    	pods, err = om.podsLister.Pods(set.Namespace).List(selector)
    	if err != nil {
    		t.Error(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    // query errors without calling [Row.Scan].
    // Err returns the error, if any, that was encountered while running the query.
    // If this error is not nil, this error will also be returned from [Row.Scan].
    func (r *Row) Err() error {
    	return r.err
    }
    
    // A Result summarizes an executed SQL command.
    type Result interface {
    	// LastInsertId returns the integer generated by the database
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    				if err != nil {
    					t.Errorf("Unexpected error: %v", err)
    				}
    			}()
    		}
    		wg.Wait()
    
    		if _, err := registry.Get(testContext, podA.Name, &metav1.GetOptions{}); !errors.IsNotFound(err) {
    			t.Errorf("Unexpected error: %v", err)
    		}
    		if _, err := registry.Get(testContext, podB.Name, &metav1.GetOptions{}); !errors.IsNotFound(err) {
    			t.Errorf("Unexpected error: %v", err)
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    	c := ts.Client()
    
    	err := func() error {
    		res, err := c.Get(ts.URL)
    		if err != nil {
    			return err
    		}
    		_, err = io.Copy(io.Discard, res.Body)
    		res.Body.Close()
    		return err
    	}()
    	if err == nil {
    		t.Errorf("expected an error copying body from Get request")
    	}
    
    	if err := <-afterTimeoutErrc; err == nil {
    		t.Error("expected write error after timeout")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. src/net/http/server.go

    // be plain text without user info or other embedded errors.
    func badRequestError(e string) error { return statusError{StatusBadRequest, e} }
    
    // statusError is an error used to respond to a request with an HTTP status.
    // The text should be plain text without user info or other embedded errors.
    type statusError struct {
    	code int
    	text string
    }
    
    func (e statusError) Error() string { return StatusText(e.code) + ": " + e.text }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top