Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 149 for orphaned (0.21 sec)

  1. pkg/kubelet/kubelet_pods.go

    	kl.probeManager.CleanupPods(possiblyRunningPods)
    
    	// Remove orphaned pod statuses not in the total list of known config pods
    	klog.V(3).InfoS("Clean up orphaned pod statuses")
    	kl.removeOrphanedPodStatuses(allPods, mirrorPods)
    
    	// Remove orphaned pod user namespace allocations (if any).
    	klog.V(3).InfoS("Clean up orphaned pod user namespace allocations")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_timeout_stdin.txt

    [short] skip 'runs a test that hangs until its WaitDelay expires'
    
    ! go test -v -timeout=1m .
    
    	# After the test process itself prints PASS and exits,
    	# the kernel closes its stdin pipe to to the orphaned subprocess.
    	# At that point, we expect the subprocess to print 'stdin closed'
    	# and periodically log to stderr until the WaitDelay expires.
    	#
    	# Once the WaitDelay expires, the copying goroutine for 'go test' stops and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 20:23:27 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    				kubelet_working_pods{config="orphan",lifecycle="sync",static=""} 0
    				kubelet_working_pods{config="orphan",lifecycle="sync",static="true"} 0
    				kubelet_working_pods{config="orphan",lifecycle="terminated",static=""} 0
    				kubelet_working_pods{config="orphan",lifecycle="terminated",static="true"} 0
    				kubelet_working_pods{config="orphan",lifecycle="terminating",static=""} 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. pkg/kubelet/userns/userns_manager.go

    			continue
    		}
    
    		klog.V(5).InfoS("Clean up orphaned pod user namespace possible allocation", "podUID", podUID)
    		m.releaseWithLock(podUID)
    	}
    
    	// Lets remove any existing allocation for a pod that is not "found".
    	for podUID := range m.usedBy {
    		if allFound.Has(string(podUID)) {
    			continue
    		}
    
    		klog.V(5).InfoS("Clean up orphaned pod user namespace possible allocation", "podUID", podUID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/DefaultMavenPomMetadataSource.java

        }
    
        /**
         * Checks if the POM looks valid to use as a metadata source.
         * In general this will true for all discovered POM files, but in `mavenLocal()` we ignore 'orphaned' POM files that
         * do not have a corresponding artifact.
         */
        public interface MavenMetadataValidator {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers.go

    		_, knownPod := known[uid]
    		orphan := !knownPod
    		if status.restartRequested || orphan {
    			if p.removeTerminatedWorker(uid, status, orphan) {
    				// no worker running, we won't return it
    				continue
    			}
    		}
    
    		sync := PodWorkerSync{
    			State:  status.WorkType(),
    			Orphan: orphan,
    		}
    		switch {
    		case status.activeUpdate != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonLifecycleTest.groovy

            // Sends a kill -9 to the daemon process only
            daemons.daemon.killDaemonOnly()
    
            then:
            children.length == 0
    
            cleanup:
            // In the event this fails, clean up any orphaned children
            children.each { child ->
                new ProcessFixture(child as Long).kill(true)
            }
        }
    
        void newSnapshot() {
            logSnapshot = daemons.daemon.log
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. pkg/kubelet/pod/pod_manager.go

    // fact that the kubelet reports the pod status using the pod full name, the
    // status of the mirror pod always reflects the actual status of the static
    // pod. When a static pod gets deleted, the associated orphaned mirror pod
    // will also be removed.
    type Manager interface {
    	// GetPodByFullName returns the (non-mirror) pod that matches full name, as well as
    	// whether the pod was found.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    		}
    	}
    
    	// Clean up orphaned policies by replacing the old cache of compiled policies
    	// (the map of used policies is updated by `compilePolicy`)
    	for policyKey := range s.compiledPolicies {
    		if _, wasSeen := policiesToBindings[policyKey]; !wasSeen {
    			delete(s.compiledPolicies, policyKey)
    		}
    	}
    
    	// Clean up orphaned param informers
    	for paramKind, info := range s.paramsCRDControllers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    			// We can't reconstruct the volume. Remember to check DSW after it's fully populated and force unmount the volume when it's orphaned.
    			rc.volumesFailedReconstruction = append(rc.volumesFailedReconstruction, volume)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top