Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 168 for errorCh (0.15 sec)

  1. src/go/types/badlinkname.go

    // See go.dev/issue/67401.
    //
    //go:linkname badlinkname_Checker_infer go/types.(*Checker).infer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 702 bytes
    - Viewed (0)
  2. pkg/kubelet/cm/util/cdi/cdi_test.go

    		},
    	}
    
    	as := assert.New(t)
    	for _, tc := range testCases {
    		t.Run(tc.description, func(t *testing.T) {
    			annotations, err := GenerateAnnotations("test-claim-uid", "test-driver-name", tc.deviceIDs)
    			as.ErrorIs(err, tc.expecteError)
    			as.Equal(tc.expectedAnnotations, annotations)
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:47:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/metadata_decoder.go

    	decoder runtime.Decoder
    }
    
    func (m *metadataValidatingDecoder) Decode(data []byte, defaults *schema.GroupVersionKind, into runtime.Object) (runtime.Object, *schema.GroupVersionKind, error) {
    	obj, gvk, err := m.decoder.Decode(data, defaults, into)
    
    	// if we already errored, return
    	if err != nil {
    		return obj, gvk, err
    	}
    
    	// if we're not unstructured, return
    	if _, isUnstructured := obj.(runtime.Unstructured); !isUnstructured {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 16:49:23 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. releasenotes/notes/istioctl-install-errors.yaml

    John Howard <******@****.***> 1629181835 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 17 06:30:35 UTC 2021
    - 165 bytes
    - Viewed (0)
  5. src/cmd/vet/testdata/print/print.go

    	Errorf(1, "%d", 3)    // OK
    	Errorf(1, "%d", "hi") // ERROR "Errorf format %d has arg \x22hi\x22 of wrong type string"
    
    	// Multiple string arguments before variadic args
    	errorf("WARNING", "foobar")            // OK
    	errorf("INFO", "s=%s, n=%d", "foo", 1) // OK
    	errorf("ERROR", "%d")                  // ERROR "errorf format %d reads arg #1, but call has 0 args"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/error_test.go

    // This file implements a regression test harness for syntax errors.
    // The files in the testdata directory are parsed and the reported
    // errors are compared against the errors declared in those files.
    //
    // Errors are declared in place in the form of "error comments",
    // just before (or on the same line as) the offending token.
    //
    // Error comments must be of the form // ERROR rx or /* ERROR rx */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/logger.go

    	klog.WarningDepth(klogWrapperDepth, fmt.Sprintf(format, args...))
    }
    
    func (klogWrapper) Error(args ...interface{}) {
    	klog.ErrorDepth(klogWrapperDepth, args...)
    }
    
    func (klogWrapper) Errorln(args ...interface{}) {
    	klog.ErrorDepth(klogWrapperDepth, fmt.Sprintln(args...))
    }
    
    func (klogWrapper) Errorf(format string, args ...interface{}) {
    	klog.ErrorDepth(klogWrapperDepth, fmt.Sprintf(format, args...))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. docs/bucket/replication/sio-error.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. cmd/xl-storage-errors.go

    func isSysErrCrossDevice(err error) bool {
    	return errors.Is(err, syscall.EXDEV)
    }
    
    // Check if given error corresponds to too many open files
    func isSysErrTooManyFiles(err error) bool {
    	return errors.Is(err, syscall.ENFILE) || errors.Is(err, syscall.EMFILE)
    }
    
    func osIsNotExist(err error) bool {
    	return errors.Is(err, os.ErrNotExist)
    }
    
    func osIsPermission(err error) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/provision_test.go

    				{Verb: "create", Resource: "persistentvolumes", Error: errors.New("Mock creation error5")},
    			},
    			test: wrapTestWithPluginCalls(
    				nil, // recycle calls
    				[]error{ // delete calls
    					errors.New("Mock deletion error1"),
    					errors.New("Mock deletion error2"),
    					errors.New("Mock deletion error3"),
    					errors.New("Mock deletion error4"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top