Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for VStatus (0.1 sec)

  1. cmd/site-replication.go

    		optsMap["versioningEnabled"] = "true"
    		opts.VersioningEnabled = true
    		opts.CreatedAt = bStatus.CreatedAt
    		optsMap["createdAt"] = bStatus.CreatedAt.UTC().Format(time.RFC3339Nano)
    
    		if bStatus.ObjectLockConfig != nil {
    			config, err := base64.StdEncoding.DecodeString(*bStatus.ObjectLockConfig)
    			if err != nil {
    				return err
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    		}
    		status := convertContainerStatus(cStatus, oldStatusPtr)
    		if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    			if status.State.Running != nil {
    				status.Resources = convertContainerStatusResources(cName, status, cStatus, oldStatuses)
    			}
    		}
    		if utilfeature.DefaultFeatureGate.Enabled(features.SupplementalGroupsPolicy) {
    			status.User = convertContainerStatusUser(cStatus)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/tests/go122-gc-stress.test

    GoBlock dt=65 reason_string=15 stack=5
    GoStart dt=26 g=130 g_seq=1
    ProcStatus dt=380 p=38 pstatus=2
    ProcStatus dt=4 p=39 pstatus=2
    ProcStatus dt=4 p=40 pstatus=2
    ProcStatus dt=3 p=41 pstatus=2
    ProcStatus dt=5 p=42 pstatus=2
    ProcStatus dt=5 p=43 pstatus=2
    ProcStatus dt=2 p=44 pstatus=2
    ProcStatus dt=3 p=45 pstatus=2
    ProcStatus dt=4 p=46 pstatus=2
    GoStop dt=1488 reason_string=16 stack=15
    GoUnblock dt=17 g=51 g_seq=45 stack=0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    func checkPodStatus(t *testing.T, kl *Kubelet, pod *v1.Pod, phase v1.PodPhase) {
    	t.Helper()
    	status, found := kl.statusManager.GetPodStatus(pod.UID)
    	require.True(t, found, "Status of pod %q is not found in the status map", pod.UID)
    	require.Equal(t, phase, status.Phase)
    }
    
    // Tests that we handle port conflicts correctly by setting the failed status in status map.
    func TestHandlePortConflicts(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/registry/batch/job/strategy_test.go

    			},
    			newJob: &batch.Job{
    				ObjectMeta: validObjectMeta,
    				Status: batch.JobStatus{
    					StartTime:      &now,
    					CompletionTime: &now,
    					Conditions: []batch.JobCondition{
    						{
    							Type:   batch.JobComplete,
    							Status: api.ConditionTrue,
    						},
    						{
    							Type:   batch.JobFailed,
    							Status: api.ConditionTrue,
    						},
    					},
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_node_status_test.go

    		{
    			name:           "Node status does not change with default status.",
    			originalStatus: &v1.NodeStatus{},
    			status:         &v1.NodeStatus{},
    			expectChange:   false,
    		},
    		{
    			name:           "Node status changes with nil and default status.",
    			originalStatus: nil,
    			status:         &v1.NodeStatus{},
    			expectChange:   true,
    		},
    		{
    			name:           "Node status changes with nil and status.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework_test.go

    			state.SkipScorePlugins = tt.skippedPlugins
    			res, status := f.RunScorePlugins(ctx, state, pod, BuildNodeInfos(nodes))
    
    			if tt.err {
    				if status.IsSuccess() {
    					t.Errorf("Expected status to be non-success. got: %v", status.Code().String())
    				}
    				return
    			}
    
    			if !status.IsSuccess() {
    				t.Errorf("Expected status to be success.")
    			}
    			if !reflect.DeepEqual(res, tt.want) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    	case obj.Status.StartTime == nil:
    	case obj.Status.CompletionTime == nil:
    		jobDuration = duration.HumanDuration(time.Since(obj.Status.StartTime.Time))
    	default:
    		jobDuration = duration.HumanDuration(obj.Status.CompletionTime.Sub(obj.Status.StartTime.Time))
    	}
    	var status string
    	if hasJobCondition(obj.Status.Conditions, batch.JobComplete) {
    		status = "Complete"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    		if updated == nil {
    			t.Fatalf("Failed to get updated status")
    		}
    		if got, want := updated.Status.DesiredNumberScheduled, int32(podControl.FakePodControl.CreateLimit)*10; got != want {
    			t.Errorf("Status.DesiredNumberScheduled = %v, want %v", got, want)
    		}
    		if got, want := updated.Status.CurrentNumberScheduled, int32(podControl.FakePodControl.CreateLimit); got != want {
    			t.Errorf("Status.CurrentNumberScheduled = %v, want %v", got, want)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_control_test.go

    		t.Error(err)
    	}
    	if set.Status.CurrentReplicas != 3 {
    		t.Fatalf("Failed pod deletion should not update CurrentReplicas: want 3, got %d", set.Status.CurrentReplicas)
    	}
    	if set.Status.CurrentRevision == set.Status.UpdateRevision {
    		t.Error("Failed to create new revision")
    	}
    
    	// delete works
    	om.SetDeleteStatefulPodError(nil, 0)
    	status, err := ssc.UpdateStatefulSet(context.TODO(), set, pods)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
Back to top