Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for Carp (0.09 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // If not specified, the carp will be dispatched by default scheduler.
      // +optional
      optional string schedulername = 19;
    }
    
    // CarpStatus represents information about the status of a carp. Status may trail the actual
    // state of a system.
    message CarpStatus {
      // Current condition of the carp.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-phase
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/zz_generated.conversion.go

    func RegisterConversions(s *runtime.Scheme) error {
    	if err := s.AddGeneratedConversionFunc((*Carp)(nil), (*testapigroup.Carp)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_Carp_To_testapigroup_Carp(a.(*Carp), b.(*testapigroup.Carp), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*testapigroup.Carp)(nil), (*Carp)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 11.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // If not specified, the carp will be dispatched by default scheduler.
      // +optional
      optional string schedulername = 19;
    }
    
    // CarpStatus represents information about the status of a carp. Status may trail the actual
    // state of a system.
    message CarpStatus {
      // Current condition of the carp.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-phase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/types.go

    	// The carp will be allowed to use secrets referenced by the ServiceAccount
    	ServiceAccountName string
    
    	// NodeName is a request to schedule this carp onto a specific node.  If it is non-empty,
    	// the scheduler simply schedules this carp onto that node, assuming that it fits resource
    	// requirements.
    	// +optional
    	NodeName string
    	// Specifies the hostname of the Carp.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/test/api_meta_help_test.go

    		if e, a := list[i].(*testapigroup.Carp).Name, pl.Items[i].Name; e != a {
    			t.Fatalf("Expected %v, got %v", e, a)
    		}
    	}
    }
    
    func TestSetListToRuntimeObjectArray(t *testing.T) {
    	pl := &List{}
    	list := []runtime.Object{
    		&testapigroup.Carp{ObjectMeta: metav1.ObjectMeta{Name: "1"}},
    		&testapigroup.Carp{ObjectMeta: metav1.ObjectMeta{Name: "2"}},
    		&testapigroup.Carp{ObjectMeta: metav1.ObjectMeta{Name: "3"}},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_conversion_test.go

    			unstructuredToConvert: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"apiVersion": "v1",
    					"kind":       "Carp",
    				},
    			},
    			convertingObject:        &testapigroupv1.Carp{},
    			expectedConvertedObject: &testapigroupv1.Carp{},
    		},
    		{
    			name: "convert empty unstructured w/o gvk to versioned object should fail",
    			unstructuredToConvert: &unstructured.Unstructured{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 07 15:19:26 UTC 2020
    - 16.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    }
    
    // CarpStatus represents information about the status of a carp. Status may trail the actual
    // state of a system.
    type CarpStatus struct {
    	// Current condition of the carp.
    	// More info: http://kubernetes.io/docs/user-guide/carp-states#carp-phase
    	// +optional
    	Phase CarpPhase `json:"phase,omitempty" protobuf:"bytes,1,opt,name=phase,casttype=CarpPhase"`
    	// Current service state of carp.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/test/runtime_helper_test.go

    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    func TestDecodeList(t *testing.T) {
    	pl := List{
    		Items: []runtime.Object{
    			&testapigroup.Carp{ObjectMeta: metav1.ObjectMeta{Name: "1"}},
    			&runtime.Unknown{
    				TypeMeta:    runtime.TypeMeta{Kind: "Carp", APIVersion: "v1"},
    				Raw:         []byte(`{"kind":"Carp","apiVersion":"` + "v1" + `","metadata":{"name":"test"}}`),
    				ContentType: runtime.ContentTypeJSON,
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 01 19:31:12 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/zz_generated.deepcopy.go

    func (in *Carp) DeepCopyInto(out *Carp) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Carp.
    func (in *Carp) DeepCopy() *Carp {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/zz_generated.deepcopy.go

    func (in *Carp) DeepCopyInto(out *Carp) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Carp.
    func (in *Carp) DeepCopy() *Carp {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4.5K bytes
    - Viewed (0)
Back to top