Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for countError (0.15 sec)

  1. src/net/http/h2_bundle.go

    type http2Framer struct {
    	r         io.Reader
    	lastFrame http2Frame
    	errDetail error
    
    	// countError is a non-nil func that's called on a frame parse
    	// error with some unique error path token. It's initialized
    	// from Transport.CountError or Server.CountError.
    	countError func(errToken string)
    
    	// lastHeaderStream is non-zero if the last frame was an
    	// unfinished HEADERS/CONTINUATION.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. pkg/volume/util/types/types.go

    // IsFilesystemMismatchError checks if mount failed because requested filesystem
    // on PVC and actual filesystem on disk did not match
    func IsFilesystemMismatchError(err error) bool {
    	mountError := mount.MountError{}
    	return errors.As(err, &mountError) && mountError.Type == mount.FilesystemMismatch
    }
    
    // IsUncertainProgressError checks if given error is of type that indicates
    // operation might be in-progress in background.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    	}
    }
    
    func (og *operationGenerator) checkForFailedMount(volumeToMount VolumeToMount, mountError error) {
    	pv := volumeToMount.VolumeSpec.PersistentVolume
    	if pv == nil {
    		return
    	}
    
    	if volumetypes.IsFilesystemMismatchError(mountError) {
    		simpleMsg, _ := volumeToMount.GenerateMsg("MountVolume failed", mountError.Error())
    		og.recorder.Eventf(pv, v1.EventTypeWarning, kevents.FailedMountOnFilesystemMismatch, simpleMsg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top