Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for IncludeObjectPolicy (0.69 sec)

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

    )
    
    // Convert_Slice_string_To_v1beta1_IncludeObjectPolicy allows converting a URL query parameter value
    func Convert_Slice_string_To_v1beta1_IncludeObjectPolicy(in *[]string, out *IncludeObjectPolicy, s conversion.Scope) error {
    	if len(*in) > 0 {
    		*out = IncludeObjectPolicy((*in)[0])
    	}
    	return nil
    }
    
    // Convert_v1beta1_PartialObjectMetadataList_To_v1_PartialObjectMetadataList allows converting PartialObjectMetadataList between versions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 07 15:19:00 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/types.go

    // +protobuf=false
    type TableRowCondition = v1.TableRowCondition
    
    type RowConditionType = v1.RowConditionType
    
    type ConditionStatus = v1.ConditionStatus
    
    type IncludeObjectPolicy = v1.IncludeObjectPolicy
    
    // TableOptions are used when a Table is requested by the caller.
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type TableOptions = v1.TableOptions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 29 00:35:16 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/conversion.go

    }
    
    // Convert_Slice_string_To_v1_IncludeObjectPolicy allows converting a URL query parameter value
    func Convert_Slice_string_To_v1_IncludeObjectPolicy(in *[]string, out *IncludeObjectPolicy, s conversion.Scope) error {
    	if len(*in) > 0 {
    		*out = IncludeObjectPolicy((*in)[0])
    	}
    	return nil
    }
    
    // Convert_url_Values_To_v1_DeleteOptions allows converting a URL to DeleteOptions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 26 03:49:57 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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