Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for wieder (0.23 sec)

  1. pkg/scheduler/schedule_one_test.go

    		wantBinderID int
    		name         string
    	}{
    		{
    			name:    "the extender is not a binder",
    			podName: "pod0",
    			extenders: []framework.Extender{
    				&fakeExtender{isBinder: false, interestedPodName: "pod0"},
    			},
    			wantBinderID: -1, // default binding.
    		},
    		{
    			name:    "one of the extenders is a binder and interested in pod",
    			podName: "pod0",
    			extenders: []framework.Extender{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    						SecretRef: &api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.CephFS.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					Cinder: &api.CinderVolumeSource{
    						SecretRef: &api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.Cinder.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					FlexVolume: &api.FlexVolumeSource{
    						SecretRef: &api.LocalObjectReference{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	if in.FlexVolume != nil {
    		in, out := &in.FlexVolume, &out.FlexVolume
    		*out = new(FlexPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Cinder != nil {
    		in, out := &in.Cinder, &out.Cinder
    		*out = new(CinderPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.CephFS != nil {
    		in, out := &in.CephFS, &out.CephFS
    		*out = new(CephFSPersistentVolumeSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		(*in).DeepCopyInto(*out)
    	}
    	if in.ISCSI != nil {
    		in, out := &in.ISCSI, &out.ISCSI
    		*out = new(ISCSIPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Cinder != nil {
    		in, out := &in.Cinder, &out.Cinder
    		*out = new(CinderPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.CephFS != nil {
    		in, out := &in.CephFS, &out.CephFS
    		*out = new(CephFSPersistentVolumeSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework_test.go

    			injects:    []framework.Code{framework.Skip, framework.Success, framework.Error},
    			wantStatus: framework.Success,
    		},
    		{
    			name:       "no bind plugin, returns default binder",
    			injects:    []framework.Code{},
    			wantStatus: framework.Success,
    		},
    		{
    			name:       "invalid status",
    			injects:    []framework.Code{framework.Unschedulable},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
Back to top