Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for errList (0.26 sec)

  1. pkg/apis/core/validation/validation_test.go

    	// The same ip will now have a different nodeName.
    	errList := ValidateEndpoints(updatedEndpoint)
    	errList = append(errList, ValidateEndpointsUpdate(updatedEndpoint, oldEndpoint)...)
    	if len(errList) != 0 {
    		t.Error("Endpoint should allow changing of Subset.Addresses.NodeName on update")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. operator/pkg/controller/istiocontrolplane/errdict.go

    John Howard <******@****.***> 1714485406 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/runtime/runtime_test.go

    		{
    			name: "invalid: new runtime service fails",
    			prepare: func(mock *fakeImpl) {
    				mock.NewRemoteRuntimeServiceReturns(nil, errTest)
    			},
    			shouldError: true,
    		},
    		{
    			name: "invalid: new image service fails",
    			prepare: func(mock *fakeImpl) {
    				mock.NewRemoteImageServiceReturns(nil, errTest)
    			},
    			shouldError: true,
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/os/error_test.go

    	{&os.SyscallError{Err: fs.ErrExist}, true, false},
    	{nil, false, false},
    }
    
    func TestIsExist(t *testing.T) {
    	for _, tt := range isExistTests {
    		if is := os.IsExist(tt.err); is != tt.is {
    			t.Errorf("os.IsExist(%T %v) = %v, want %v", tt.err, tt.err, is, tt.is)
    		}
    		if is := errors.Is(tt.err, fs.ErrExist); is != tt.is {
    			t.Errorf("errors.Is(%T %v, fs.ErrExist) = %v, want %v", tt.err, tt.err, is, tt.is)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 00:41:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/pseudo_test.go

    	}
    	for _, o := range strings.Split(s, ",") {
    		res = append(res, lex.Tokenize(o))
    	}
    	return res
    }
    
    func TestErroneous(t *testing.T) {
    
    	type errtest struct {
    		pseudo   string
    		operands string
    		expected string
    	}
    
    	nonRuntimeTests := []errtest{
    		{"TEXT", "", "expect two or three operands for TEXT"},
    		{"TEXT", "%", "expect two or three operands for TEXT"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/errors/errors.go

    // matches the second. It reports whether it finds a match. It should be
    // used in preference to simple equality checks:
    //
    //	if errors.Is(err, fs.ErrExist)
    //
    // is preferable to
    //
    //	if err == fs.ErrExist
    //
    // because the former will succeed if err wraps [io/fs.ErrExist].
    //
    // [As] examines the tree of its first argument looking for an error that can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 19:45:41 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. src/os/error.go

    // that a file or directory already exists. It is satisfied by [ErrExist] as
    // well as some syscall errors.
    //
    // This function predates [errors.Is]. It only supports errors returned by
    // the os package. New code should use errors.Is(err, fs.ErrExist).
    func IsExist(err error) bool {
    	return underlyingErrorIs(err, ErrExist)
    }
    
    // IsNotExist returns a boolean indicating whether the error is known to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/internal/oserror/errors.go

    package oserror
    
    import "errors"
    
    var (
    	ErrInvalid    = errors.New("invalid argument")
    	ErrPermission = errors.New("permission denied")
    	ErrExist      = errors.New("file already exists")
    	ErrNotExist   = errors.New("file does not exist")
    	ErrClosed     = errors.New("file already closed")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 02 17:57:18 UTC 2019
    - 601 bytes
    - Viewed (0)
  9. src/os/tempfile.go

    		f, err := OpenFile(name, O_RDWR|O_CREATE|O_EXCL, 0600)
    		if IsExist(err) {
    			if try++; try < 10000 {
    				continue
    			}
    			return nil, &PathError{Op: "createtemp", Path: prefix + "*" + suffix, Err: ErrExist}
    		}
    		return f, err
    	}
    }
    
    var errPatternHasSeparator = errors.New("pattern contains path separator")
    
    // prefixAndSuffix splits pattern by the last wildcard "*", if applicable,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 18:04:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/io/fs/fs.go

    	ErrExist      = errExist()      // "file already exists"
    	ErrNotExist   = errNotExist()   // "file does not exist"
    	ErrClosed     = errClosed()     // "file already closed"
    )
    
    func errInvalid() error    { return oserror.ErrInvalid }
    func errPermission() error { return oserror.ErrPermission }
    func errExist() error      { return oserror.ErrExist }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top