Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for certphase (0.78 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            if (deprecated != null) {
                mojo.setDeprecated(deprecated.getValue());
            }
    
            String phase = c.getChild("phase").getValue();
    
            if (phase != null) {
                mojo.setPhase(phase);
            }
    
            String executePhase = c.getChild("executePhase").getValue();
    
            if (executePhase != null) {
                mojo.setExecutePhase(executePhase);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    					},
    				},
    			},
    			false,
    			v1.PodRunning,
    			"backoff crashloop container with restart always",
    		},
    	}
    	for _, test := range tests {
    		status := getPhase(test.pod, test.pod.Status.ContainerStatuses, test.podIsTerminal)
    		assert.Equal(t, test.status, status, "[test %s]", test.test)
    	}
    }
    
    func TestPodPhaseWithRestartAlwaysInitContainers(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller.go

    	logger := klog.FromContext(ctx)
    	logger.V(4).Info("Updating PersistentVolumeClaim status", "PVC", klog.KObj(claim), "setPhase", phase)
    
    	dirty := false
    
    	claimClone := claim.DeepCopy()
    	if claim.Status.Phase != phase {
    		claimClone.Status.Phase = phase
    		dirty = true
    	}
    
    	if volume == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    		return err
    	}
    
    	return kl.containerRuntime.GetContainerLogs(ctx, pod, containerID, logOptions, stdout, stderr)
    }
    
    // getPhase returns the phase of a pod given its container info.
    func getPhase(pod *v1.Pod, info []v1.ContainerStatus, podIsTerminal bool) v1.PodPhase {
    	spec := pod.Spec
    	pendingInitialization := 0
    	failedInitialization := 0
    
    	// regular init containers
    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. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go

    			}
    			postIndex := iNdEx + intStringLen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Phase = CarpPhase(dAtA[iNdEx:postIndex])
    			iNdEx = postIndex
    		case 2:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Conditions", wireType)
    			}
    			var msglen int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 57K bytes
    - Viewed (0)
Back to top