Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NamespaceConditionType (0.39 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	NamespaceTerminatingCause metav1.CauseType = "NamespaceTerminating"
    )
    
    type NamespaceConditionType string
    
    // These are built-in conditions of a namespace.
    const (
    	// NamespaceDeletionDiscoveryFailure contains information about namespace deleter errors during resource discovery.
    	NamespaceDeletionDiscoveryFailure NamespaceConditionType = "NamespaceDeletionDiscoveryFailure"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    )
    
    // NamespaceConditionType defines constants reporting on status during namespace lifetime and deletion progress
    type NamespaceConditionType string
    
    // These are valid conditions of a namespace.
    const (
    	NamespaceDeletionDiscoveryFailure NamespaceConditionType = "NamespaceDeletionDiscoveryFailure"
    	NamespaceDeletionContentFailure   NamespaceConditionType = "NamespaceDeletionContentFailure"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_NamespaceCondition_To_core_NamespaceCondition(in *v1.NamespaceCondition, out *core.NamespaceCondition, s conversion.Scope) error {
    	out.Type = core.NamespaceConditionType(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: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.pb.go

    			}
    			postIndex := iNdEx + intStringLen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Type = NamespaceConditionType(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: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top