Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IncludeObjectPolicy (0.46 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddConversionFunc((*[]string)(nil), (*IncludeObjectPolicy)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_Slice_string_To_v1_IncludeObjectPolicy(a.(*[]string), b.(*IncludeObjectPolicy), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	ConditionUnknown ConditionStatus = "Unknown"
    )
    
    // IncludeObjectPolicy controls which portion of the object is returned with a Table.
    type IncludeObjectPolicy string
    
    const (
    	// IncludeNone returns no object.
    	IncludeNone IncludeObjectPolicy = "None"
    	// IncludeMetadata serializes the object containing only its metadata field.
    	IncludeMetadata IncludeObjectPolicy = "Metadata"
    	// IncludeObject contains the full object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		return "string"
    	case "v1.DeletionPropagation", "*v1.DeletionPropagation":
    		return "string"
    	case "v1.ResourceVersionMatch", "*v1.ResourceVersionMatch":
    		return "string"
    	case "v1.IncludeObjectPolicy", "*v1.IncludeObjectPolicy":
    		return "string"
    
    	// TODO: Fix these when go-restful supports a way to specify an array query param:
    	// https://github.com/emicklei/go-restful/issues/225
    	case "[]string", "[]*string":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    			postIndex := iNdEx + intStringLen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.IncludeObject = IncludeObjectPolicy(dAtA[iNdEx:postIndex])
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    			skippy, err := skipGenerated(dAtA[iNdEx:])
    			if err != nil {
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 281.4K bytes
    - Viewed (0)
Back to top