Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isErrCode (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/errors.go

    func IsNotFound(err error) bool {
    	return isErrCode(err, ErrCodeKeyNotFound)
    }
    
    // IsExist returns true if and only if err is "key" already exists error.
    func IsExist(err error) bool {
    	return isErrCode(err, ErrCodeKeyExists)
    }
    
    // IsUnreachable returns true if and only if err indicates the server could not be reached.
    func IsUnreachable(err error) bool {
    	return isErrCode(err, ErrCodeUnreachable)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:39:10 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top