Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,593 for perror (0.08 sec)

  1. src/syscall/zsyscall_windows.go

    // Errno values.
    const (
    	errnoERROR_IO_PENDING = 997
    )
    
    var (
    	errERROR_IO_PENDING error = Errno(errnoERROR_IO_PENDING)
    	errERROR_EINVAL     error = EINVAL
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    // allocations at runtime.
    func errnoErr(e Errno) error {
    	switch e {
    	case 0:
    		return errERROR_EINVAL
    	case errnoERROR_IO_PENDING:
    		return errERROR_IO_PENDING
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (1)
  2. cni/pkg/ipset/ipset.go

    	deleteIP(name string, ip netip.Addr, ipProto uint8) error
    	flush(name string) error
    	clearEntriesWithComment(name string, comment string) error
    	clearEntriesWithIP(name string, ip netip.Addr) error
    	listEntriesByIP(name string) ([]netip.Addr, error)
    }
    
    // TODO this should actually create v6 and v6 subsets of type `hash:ip`, add them both to a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    	if err := s.AddGeneratedConversionFunc((*CustomResourceColumnDefinition)(nil), (*apiextensions.CustomResourceColumnDefinition)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
  4. src/os/file_plan9.go

    func (c *rawConn) Control(f func(uintptr)) error {
    	return syscall.EPLAN9
    }
    
    func (c *rawConn) Read(f func(uintptr) bool) error {
    	return syscall.EPLAN9
    }
    
    func (c *rawConn) Write(f func(uintptr) bool) error {
    	return syscall.EPLAN9
    }
    
    func newRawConn(file *File) (*rawConn, error) {
    	return nil, syscall.EPLAN9
    }
    
    func ignoringEINTR(fn func() error) error {
    	return fn()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/instrumented_services.go

    }
    
    // recordError records error for metric if an error occurred.
    func recordError(operation string, err error) {
    	if err != nil {
    		metrics.RuntimeOperationsErrors.WithLabelValues(operation).Inc()
    	}
    }
    
    func (in instrumentedRuntimeService) Version(ctx context.Context, apiVersion string) (*runtimeapi.VersionResponse, error) {
    	const operation = "version"
    	defer recordOperation(operation, time.Now())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomTest.kt

                    error(UnsupportedSyntax(DanglingExpr)[251..251]
                    error(UnsupportedSyntax(ElementWithExplicitReceiver)[259..261]
                    error(UnsupportedSyntax(AssignmentWithExplicitReceiver)[267..273]
                    error(UnsupportedSyntax(LocalVal)[279..287]
                    error(SyntaxError(Parsing failure, unexpected tokenType in expression: POSTFIX_EXPRESSION)[307..319]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    	if err := s.AddGeneratedConversionFunc((*CustomResourceColumnDefinition)(nil), (*apiextensions.CustomResourceColumnDefinition)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  8. pkg/config/schema/kubeclient/resources.gen.go

    	var w func(options metav1.ListOptions) (watch.Interface, error)
    
    	switch g {
    	case gvr.AuthorizationPolicy:
    		l = func(options metav1.ListOptions) (runtime.Object, error) {
    			return c.Istio().SecurityV1beta1().AuthorizationPolicies(opts.Namespace).List(context.Background(), options)
    		}
    		w = func(options metav1.ListOptions) (watch.Interface, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/typeinst0.go

    var x int
    type _ x /* ERROR "not a type" */ [int]
    
    type _ int /* ERROR "not a generic type" */ [] // ERROR "expected type argument list"
    type _ myInt /* ERROR "not a generic type" */ [] // ERROR "expected type argument list"
    
    // TODO(gri) better error messages
    type _ T1[] // ERROR "expected type argument list"
    type _ T1[x /* ERROR "not a type" */ ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    			err := mgr.CleanupDirs()
    			if err != nil {
    				t.Errorf("unexpected error cleaning up: %v", err)
    			}
    
    			if _, err := os.Stat(tempManifestDir); !os.IsNotExist(err) {
    				t.Errorf("%q should not have existed", tempManifestDir)
    			}
    			_, err = os.Stat(backupManifestDir)
    			if test.keepManifest {
    				if err != nil {
    					t.Errorf("unexpected error getting backup manifest dir")
    				}
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top