Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 341 for statusB (0.35 sec)

  1. pkg/volume/csi/csi_attacher_test.go

    				t.Fatal(err)
    			}
    			if len(tc.attachedSpecs) != len(stats) {
    				t.Errorf("expecting %d attachment status, got %d", len(tc.attachedSpecs), len(stats))
    			}
    
    			// compare attachment status for each spec
    			for _, attached := range tc.attachedSpecs {
    				stat, ok := stats[attached.spec]
    				if attached.attached && !ok {
    					t.Error("failed to retrieve attached status for:", attached.spec)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set_test.go

    			name: "doesn't remove anything",
    
    			status:   status(),
    			condType: imagePullBackOff,
    
    			expectedStatus: status(),
    		},
    	}
    
    	for _, test := range tests {
    		RemoveCondition(test.status, test.condType)
    		if !reflect.DeepEqual(test.status, test.expectedStatus) {
    			t.Errorf("%s: expected status: %v, got: %v", test.name, test.expectedStatus, test.status)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers_test.go

    		t.Fatalf("unexpected actual state: %s", cmp.Diff(e, a))
    	}
    	// 3-static is still in the config, it should still be in our status
    	if status, ok := podWorkers.podSyncStatuses["3-static"]; !ok || status.terminatedAt.IsZero() || !status.finished || status.working {
    		t.Fatalf("unexpected post termination status: %#v", status)
    	}
    
    	// initiate a sync with 3-static removed
    	state = podWorkers.SyncKnownPods([]*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  4. plugin/pkg/admission/resourcequota/admission_test.go

    	resourceQuota := &corev1.ResourceQuota{}
    	resourceQuota.Name = "quota"
    	resourceQuota.Namespace = "test"
    	resourceQuota.Status = corev1.ResourceQuotaStatus{
    		Hard: corev1.ResourceList{},
    		Used: corev1.ResourceList{},
    	}
    	resourceQuota.Status.Hard[corev1.ResourceMemory] = resource.MustParse("2Gi")
    	resourceQuota.Status.Used[corev1.ResourceMemory] = resource.MustParse("1Gi")
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/strategy_test.go

    			expectMatch:   false,
    		},
    		{
    			in: &api.Pod{
    				Status: api.PodStatus{Phase: api.PodRunning},
    			},
    			fieldSelector: fields.ParseSelectorOrDie("status.phase=Running"),
    			expectMatch:   true,
    		},
    		{
    			in: &api.Pod{
    				Status: api.PodStatus{Phase: api.PodRunning},
    			},
    			fieldSelector: fields.ParseSelectorOrDie("status.phase=Pending"),
    			expectMatch:   false,
    		},
    		{
    			in: &api.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. pkg/apis/apps/v1beta2/zz_generated.conversion.go

    		return err
    	}
    	return nil
    }
    
    func autoConvert_v1beta2_DaemonSetCondition_To_apps_DaemonSetCondition(in *v1beta2.DaemonSetCondition, out *apps.DaemonSetCondition, s conversion.Scope) error {
    	out.Type = apps.DaemonSetConditionType(in.Type)
    	out.Status = core.ConditionStatus(in.Status)
    	out.LastTransitionTime = in.LastTransitionTime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 74.2K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    	tests := []struct {
    		pod                 *v1.Pod
    		pods                []*v1.Pod
    		node                *v1.Node
    		name                string
    		wantPreFilterStatus *framework.Status
    		wantFilterStatus    *framework.Status
    	}{
    		{
    			name:                "A pod that has no required pod affinity scheduling rules can schedule onto a node with no existing pods",
    			pod:                 new(v1.Pod),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// +optional
    	Status string `json:"status,omitempty" protobuf:"bytes,2,opt,name=status"`
    	// A human-readable description of the status of this operation.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,3,opt,name=message"`
    	// A machine-readable description of why this operation is in the
    	// "Failure" status. If this value is empty there
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		// override status subresource values
    		// shallow copy
    		statusScope := *requestScopes[v.Name]
    		statusScope.Subresource = "status"
    		statusScope.Namer = handlers.ContextBasedNaming{
    			Namer:         meta.NewAccessor(),
    			ClusterScoped: clusterScoped,
    		}
    
    		if subresources != nil && subresources.Status != nil {
    			resetFields := storages[v.Name].Status.GetResetFields()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. pkg/apis/apps/v1/zz_generated.conversion.go

    	if err := Convert_apps_DaemonSetStatus_To_v1_DaemonSetStatus(&in.Status, &out.Status, s); err != nil {
    		return err
    	}
    	return nil
    }
    
    func autoConvert_v1_DaemonSetCondition_To_apps_DaemonSetCondition(in *v1.DaemonSetCondition, out *apps.DaemonSetCondition, s conversion.Scope) error {
    	out.Type = apps.DaemonSetConditionType(in.Type)
    	out.Status = core.ConditionStatus(in.Status)
    	out.LastTransitionTime = in.LastTransitionTime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 66.7K bytes
    - Viewed (0)
Back to top