Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for VolumeError (0.89 sec)

  1. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

      // operation, i.e. the external-attacher.
      // +optional
      optional VolumeError attachError = 3;
    
      // detachError represents the last error encountered during detach operation, if any.
      // This field must only be set by the entity completing the detach
      // operation, i.e. the external-attacher.
      // +optional
      optional VolumeError detachError = 4;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/generated.pb.go

    func (m *VolumeError) Reset()      { *m = VolumeError{} }
    func (*VolumeError) ProtoMessage() {}
    func (*VolumeError) Descriptor() ([]byte, []int) {
    	return fileDescriptor_662262cc70094b41, []int{17}
    }
    func (m *VolumeError) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *VolumeError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.8K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    		Status: storage.VolumeAttachmentStatus{
    			Attached: true,
    			AttachmentMetadata: map[string]string{
    				"foo": "bar",
    			},
    			AttachError: &storage.VolumeError{
    				Time:    metav1.Time{},
    				Message: "hello world",
    			},
    			DetachError: &storage.VolumeError{
    				Time:    metav1.Time{},
    				Message: "hello world",
    			},
    		},
    	}, {
    		ObjectMeta: metav1.ObjectMeta{Name: "foo-with-inlinespec-and-status"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1beta1/generated.pb.go

    func (m *VolumeError) Reset()      { *m = VolumeError{} }
    func (*VolumeError) ProtoMessage() {}
    func (*VolumeError) Descriptor() ([]byte, []int) {
    	return fileDescriptor_73e4f72503e71065, []int{17}
    }
    func (m *VolumeError) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *VolumeError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// +optional
    	AttachError *VolumeError `json:"attachError,omitempty" protobuf:"bytes,3,opt,name=attachError,casttype=VolumeError"`
    
    	// detachError represents the last error encountered during detach operation, if any.
    	// This field must only be set by the entity completing the detach
    	// operation, i.e. the external-attacher.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1/types.go

    	// +optional
    	AttachError *VolumeError `json:"attachError,omitempty" protobuf:"bytes,3,opt,name=attachError,casttype=VolumeError"`
    
    	// detachError represents the last error encountered during detach operation, if any.
    	// This field must only be set by the entity completing the detach
    	// operation, i.e. the external-attacher.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1/generated.proto

      // +optional
      optional VolumeError attachError = 3;
    
      // detachError represents the last error encountered during detach operation, if any.
      // This field must only be set by the entity completing the detach
      // operation, i.e. the external-attacher.
      // +optional
      optional VolumeError detachError = 4;
    }
    
    // VolumeError captures an error encountered during a volume operation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // +optional
      optional VolumeError attachError = 3;
    
      // detachError represents the last error encountered during detach operation, if any.
      // This field must only be set by the entity completing the detach
      // operation, i.e. the external-attacher.
      // +optional
      optional VolumeError detachError = 4;
    }
    
    // VolumeError captures an error encountered during a volume operation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    }
    
    var map_VolumeError = map[string]string{
    	"":        "VolumeError captures an error encountered during a volume operation.",
    	"time":    "time represents the time the error was encountered.",
    	"message": "message represents the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.",
    }
    
    func (VolumeError) SwaggerDoc() map[string]string {
    	return map_VolumeError
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_attacher_test.go

    	testCases := []struct {
    		name                 string
    		initAttached         bool
    		finalAttached        bool
    		trigerWatchEventTime time.Duration
    		initAttachErr        *storage.VolumeError
    		finalAttachErr       *storage.VolumeError
    		timeout              time.Duration
    		shouldFail           bool
    		watchTimeout         time.Duration
    	}{
    		{
    			name:         "attach success at get",
    			initAttached: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
Back to top