Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 168 for orphaned (0.13 sec)

  1. pkg/kubelet/kubelet_volumes.go

    			}
    		}
    
    		// Rmdir the pod dir, which should be empty if everything above was successful
    		klog.V(3).InfoS("Orphaned pod found, removing", "podUID", uid)
    		if err := syscall.Rmdir(podDir); err != nil {
    			cleanupFailed = true
    			klog.ErrorS(err, "Failed to remove orphaned pod dir", "podUID", uid)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pkg/kubelet/pod/pod_manager_test.go

    	}
    
    	expectedOrphanedMirrorPodName := mirrorPod.Name + "_" + mirrorPod.Namespace
    	if orphanedMirrorPodNames[0] != expectedOrphanedMirrorPodName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCache.java

                Map<ClassLoaderId, CachedClassLoader> orphaned = new HashMap<>();
                for (Map.Entry<ClassLoaderId, CachedClassLoader> entry : byId.entrySet()) {
                    if (!bySpec.containsKey(entry.getValue().spec)) {
                        orphaned.put(entry.getKey(), entry.getValue());
                    }
                }
    
                if (!orphaned.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. pkg/controller/podgc/gc_controller.go

    		}(terminatedPods[i])
    	}
    	wait.Wait()
    }
    
    // gcOrphaned deletes pods that are bound to nodes that don't exist.
    func (gcc *PodGCController) gcOrphaned(ctx context.Context, pods []*v1.Pod, nodes []*v1.Node) {
    	logger := klog.FromContext(ctx)
    	logger.V(4).Info("GC'ing orphaned")
    	existingNodeNames := sets.NewString()
    	for _, node := range nodes {
    		existingNodeNames.Insert(node.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/controller/podgc/metrics/metrics.go

    	// is not ready and has `node.kubernetes.io/out-of-service` taint.
    	PodGCReasonTerminatingOutOfService = "out-of-service"
    	// PodGCReasonOrphaned is used when the pod is orphaned which means the corresponding node
    	// has been deleted.
    	PodGCReasonOrphaned = "orphaned"
    	// PodGCReasonUnscheduled is used when the pod is terminating and unscheduled.
    	PodGCReasonTerminatingUnscheduled = "unscheduled"
    )
    
    var registerMetrics sync.Once
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 18:06:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers_test.go

    			},
    			orphan:  true,
    			removed: false,
    		},
    		{
    			desc: "orphaned terminating worker with no activeUpdate",
    			podSyncStatus: &podSyncStatus{
    				startedAt:     time.Unix(1, 0),
    				terminatingAt: time.Unix(2, 0),
    				finished:      false,
    				fullname:      "fake-fullname",
    			},
    			orphan:  true,
    			removed: false,
    		},
    		{
    			desc: "orphaned terminating worker",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  7. src/os/signal/signal_cgo_test.go

    	//
    	// These steps are complicated by the rules around foreground process
    	// groups. A process group cannot be foreground if it is "orphaned",
    	// unless it masks SIGTTOU.  i.e., to be foreground the process group
    	// must have a parent process group in the same session or mask SIGTTOU
    	// (which we do). An orphaned process group cannot receive
    	// terminal-generated SIGTSTP at all.
    	//
    	// Achieving this requires three processes total:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. pkg/kubelet/metrics/metrics.go

    	WorkingPodCount = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           WorkingPodCountKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  9. src/internal/coverage/pods/pods.go

    // (e.g. avoids looking at things that are not meta-data files or
    // counter-data files). CollectPods also skips over 'orphaned' counter
    // data files (e.g. counter data files for which we can't find the
    // corresponding meta-data file). If "warn" is true, CollectPods will
    // issue warnings to stderr when it encounters non-fatal problems (for
    // orphans or a directory with no meta-data files).
    func CollectPods(dirs []string, warn bool) ([]Pod, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. build/pause/CHANGELOG.md

    * The pause container is built with the correct "Architecture" metadata. ([#87954](https://prs.k8s.io/87954), [@BenTheElder](https://github.com/BenTheElder))
    
    # 3.1
    
    * The pause container gains a signal handler to clean up orphaned zombie processes. ([#36853](https://prs.k8s.io/36853), [@verb](https://github.com/verb))
    * `pause -v` will return build information for the pause binary. ([#56762](https://prs.k8s.io/56762), [@verb](https://github.com/verb))
    
    # 3.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top