Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for pstatus (0.28 sec)

  1. src/internal/trace/testdata/tests/go122-gc-stress.test

    GoStatus dt=4 g=35 m=18446744073709551615 gstatus=4
    GoStatus dt=3 g=13 m=18446744073709551615 gstatus=4
    GoStatus dt=3 g=21 m=18446744073709551615 gstatus=4
    GoStatus dt=3 g=36 m=18446744073709551615 gstatus=4
    GoStatus dt=3 g=49 m=18446744073709551615 gstatus=4
    GoStatus dt=3 g=50 m=18446744073709551615 gstatus=4
    GoStatus dt=3 g=15 m=18446744073709551615 gstatus=4
    GoStatus dt=4 g=65 m=18446744073709551615 gstatus=4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    	}
    	latestPeerName = info.Sites[latestID].Name
    	// heal policy of peers if peer does not have it.
    	for dID, pStatus := range us {
    		if dID == globalDeploymentID() {
    			continue
    		}
    		if !pStatus.PolicyMismatch && pStatus.HasPolicyMapping {
    			continue
    		}
    		if isPolicyMappingEqual(pStatus.userPolicy, latestUserStat.userPolicy) {
    			continue
    		}
    		peerName := info.Sites[dID].Name
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. src/cmd/trace/testdata/go122.test

    ProcStatus dt=56 p=0 pstatus=1
    GoStatus dt=4 g=1 m=1709038 gstatus=2
    ProcsChange dt=184 procs_value=8 stack=1
    STWBegin dt=81 kind_string=21 stack=2
    HeapGoal dt=5 heapgoal_value=4194304
    ProcStatus dt=2 p=1 pstatus=2
    ProcStatus dt=1 p=2 pstatus=2
    ProcStatus dt=1 p=3 pstatus=2
    ProcStatus dt=1 p=4 pstatus=2
    ProcStatus dt=1 p=5 pstatus=2
    ProcStatus dt=1 p=6 pstatus=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/kubelet_test.go

    		},
    	}
    	pods := []*v1.Pod{pod}
    	kl.podManager.SetPods(pods)
    	podStatus := &kubecontainer.PodStatus{ID: pod.UID}
    	gracePeriodOverride := int64(0)
    	err := kl.SyncTerminatingPod(context.Background(), pod, podStatus, &gracePeriodOverride, func(podStatus *v1.PodStatus) {
    		podStatus.Phase = v1.PodFailed
    		podStatus.Reason = "reason"
    		podStatus.Message = "message"
    	})
    	require.NoError(t, err)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. 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)
  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/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)
  9. 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)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

        |----------------------------|--------------|-----------|
        | org.gradle.category        | library      |           |
        | org.gradle.libraryelements | jar          |           |
        | org.gradle.status          | release      |           |
        | org.gradle.usage           | java-runtime |           |
    
    org:leaf2:1.0
    +--- org:middle:1.0
    |    \\--- org:top:1.0
    |         \\--- conf
    \\--- org:top:1.0 (*)
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top