Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for DaemonSetConditionType (0.4 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/daemonsetcondition.go

    )
    
    // DaemonSetConditionApplyConfiguration represents an declarative configuration of the DaemonSetCondition type for use
    // with apply.
    type DaemonSetConditionApplyConfiguration struct {
    	Type               *v1.DaemonSetConditionType `json:"type,omitempty"`
    	Status             *corev1.ConditionStatus    `json:"status,omitempty"`
    	LastTransitionTime *metav1.Time               `json:"lastTransitionTime,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/daemonsetcondition.go

    )
    
    // DaemonSetConditionApplyConfiguration represents an declarative configuration of the DaemonSetCondition type for use
    // with apply.
    type DaemonSetConditionApplyConfiguration struct {
    	Type               *v1beta2.DaemonSetConditionType `json:"type,omitempty"`
    	Status             *v1.ConditionStatus             `json:"status,omitempty"`
    	LastTransitionTime *metav1.Time                    `json:"lastTransitionTime,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  3. pkg/apis/apps/types.go

    	Conditions []DaemonSetCondition
    }
    
    // DaemonSetConditionType defines a daemon set condition.
    type DaemonSetConditionType string
    
    // TODO: Add valid condition types of a DaemonSet.
    
    // DaemonSetCondition describes the state of a DaemonSet at a certain point.
    type DaemonSetCondition struct {
    	// Type of DaemonSet condition.
    	Type DaemonSetConditionType
    	// Status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types.go

    }
    
    type DaemonSetConditionType string
    
    // TODO: Add valid condition types of a DaemonSet.
    
    // DaemonSetCondition describes the state of a DaemonSet at a certain point.
    type DaemonSetCondition struct {
    	// Type of DaemonSet condition.
    	Type DaemonSetConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=DaemonSetConditionType"`
    	// Status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    type DaemonSetConditionType string
    
    // TODO: Add valid condition types of a DaemonSet.
    
    // DaemonSetCondition describes the state of a DaemonSet at a certain point.
    type DaemonSetCondition struct {
    	// Type of DaemonSet condition.
    	Type DaemonSetConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=DaemonSetConditionType"`
    	// Status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/types.go

    }
    
    type DaemonSetConditionType string
    
    // TODO: Add valid condition types of a DaemonSet.
    
    // DaemonSetCondition describes the state of a DaemonSet at a certain point.
    type DaemonSetCondition struct {
    	// Type of DaemonSet condition.
    	Type DaemonSetConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=DaemonSetConditionType"`
    	// Status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1/zz_generated.conversion.go

    		return err
    	}
    	return nil
    }
    
    func autoConvert_v1_DaemonSetCondition_To_apps_DaemonSetCondition(in *v1.DaemonSetCondition, out *apps.DaemonSetCondition, s conversion.Scope) error {
    	out.Type = apps.DaemonSetConditionType(in.Type)
    	out.Status = core.ConditionStatus(in.Status)
    	out.LastTransitionTime = in.LastTransitionTime
    	out.Reason = in.Reason
    	out.Message = in.Message
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 66.7K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1beta2/zz_generated.conversion.go

    		return err
    	}
    	return nil
    }
    
    func autoConvert_v1beta2_DaemonSetCondition_To_apps_DaemonSetCondition(in *v1beta2.DaemonSetCondition, out *apps.DaemonSetCondition, s conversion.Scope) error {
    	out.Type = apps.DaemonSetConditionType(in.Type)
    	out.Status = core.ConditionStatus(in.Status)
    	out.LastTransitionTime = in.LastTransitionTime
    	out.Reason = in.Reason
    	out.Message = in.Message
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 74.2K bytes
    - Viewed (0)
  9. pkg/apis/extensions/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_DaemonSetCondition_To_apps_DaemonSetCondition(in *v1beta1.DaemonSetCondition, out *apps.DaemonSetCondition, s conversion.Scope) error {
    	out.Type = apps.DaemonSetConditionType(in.Type)
    	out.Status = core.ConditionStatus(in.Status)
    	out.LastTransitionTime = in.LastTransitionTime
    	out.Reason = in.Reason
    	out.Message = in.Message
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 95.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/generated.pb.go

    			}
    			postIndex := iNdEx + intStringLen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Type = DaemonSetConditionType(dAtA[iNdEx:postIndex])
    			iNdEx = postIndex
    		case 2:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType)
    			}
    			var stringLen uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 217.1K bytes
    - Viewed (0)
Back to top