Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 978 for kProtobuf (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	ID          string        `json:"id,omitempty" protobuf:"bytes,1,opt,name=id"`
    	Schema      JSONSchemaURL `json:"$schema,omitempty" protobuf:"bytes,2,opt,name=schema"`
    	Ref         *string       `json:"$ref,omitempty" protobuf:"bytes,3,opt,name=ref"`
    	Description string        `json:"description,omitempty" protobuf:"bytes,4,opt,name=description"`
    	Type        string        `json:"type,omitempty" protobuf:"bytes,5,opt,name=type"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/coordination/v1beta1/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// spec contains the specification of the Lease.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
    	// +optional
    	Spec LeaseSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
    }
    
    // LeaseSpec is a specification of a Lease.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 16:45:58 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types.go

    	Type JobConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=JobConditionType"`
    	// Status of the condition, one of True, False, Unknown.
    	Status corev1.ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=k8s.io/api/core/v1.ConditionStatus"`
    	// Last time the condition was checked.
    	// +optional
    	LastProbeTime metav1.Time `json:"lastProbeTime,omitempty" protobuf:"bytes,3,opt,name=lastProbeTime"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. pkg/config/model.go

    	"fmt"
    	"reflect"
    	"time"
    
    	gogojsonpb "github.com/gogo/protobuf/jsonpb" // nolint: depguard
    	gogoproto "github.com/gogo/protobuf/proto"   // nolint: depguard
    	gogotypes "github.com/gogo/protobuf/types"   // nolint: depguard
    	"google.golang.org/protobuf/proto"
    	"google.golang.org/protobuf/reflect/protoreflect"
    	"google.golang.org/protobuf/types/known/anypb"
    	"google.golang.org/protobuf/types/known/structpb"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/types.go

    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// provisioner indicates the type of the provisioner.
    	Provisioner string `json:"provisioner" protobuf:"bytes,2,opt,name=provisioner"`
    
    	// parameters holds the parameters for the provisioner that should
    	// create volumes of this storage class.
    	// +optional
    	Parameters map[string]string `json:"parameters,omitempty" protobuf:"bytes,3,rep,name=parameters"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1beta1/types.go

    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// provisioner indicates the type of the provisioner.
    	Provisioner string `json:"provisioner" protobuf:"bytes,2,opt,name=provisioner"`
    
    	// parameters holds the parameters for the provisioner that should
    	// create volumes of this storage class.
    	// +optional
    	Parameters map[string]string `json:"parameters,omitempty" protobuf:"bytes,3,rep,name=parameters"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/types.go

    // your own with the same fields.
    //
    // +k8s:deepcopy-gen=false
    // +protobuf=true
    // +k8s:openapi-gen=true
    type TypeMeta struct {
    	// +optional
    	APIVersion string `json:"apiVersion,omitempty" yaml:"apiVersion,omitempty" protobuf:"bytes,1,opt,name=apiVersion"`
    	// +optional
    	Kind string `json:"kind,omitempty" yaml:"kind,omitempty" protobuf:"bytes,2,opt,name=kind"`
    }
    
    const (
    	ContentTypeJSON     string = "application/json"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:58 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// Required
    	// +unionDiscriminator
    	Kind SubjectKind `json:"kind" protobuf:"bytes,1,opt,name=kind"`
    	// `user` matches based on username.
    	// +optional
    	User *UserSubject `json:"user,omitempty" protobuf:"bytes,2,opt,name=user"`
    	// `group` matches based on user group name.
    	// +optional
    	Group *GroupSubject `json:"group,omitempty" protobuf:"bytes,3,opt,name=group"`
    	// `serviceAccount` matches ServiceAccounts.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/types.go

    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +protobuf=false
    type Table = v1.Table
    
    // TableColumnDefinition contains information about a column returned in the Table.
    // +protobuf=false
    type TableColumnDefinition = v1.TableColumnDefinition
    
    // TableRow is an individual row in a table.
    // +protobuf=false
    type TableRow = v1.TableRow
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 29 00:35:16 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/discovery/v1beta1/types.go

    	// * FQDN: Represents a Fully Qualified Domain Name.
    	AddressType AddressType `json:"addressType" protobuf:"bytes,4,rep,name=addressType"`
    
    	// endpoints is a list of unique endpoints in this slice. Each slice may
    	// include a maximum of 1000 endpoints.
    	// +listType=atomic
    	Endpoints []Endpoint `json:"endpoints" protobuf:"bytes,2,rep,name=endpoints"`
    
    	// ports specifies the list of network ports exposed by each endpoint in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top