Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for orphaned (0.42 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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/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)
  9. pkg/controller/job/backoff_utils.go

    // 4. fallback to pod's creation time
    //
    // Pods owned by Kubelet are marked with Ready=False condition when
    // transitioning to terminal phase, thus being handled by (1.) or (2.).
    // Orphaned pods are deleted by PodGC, thus being handled by (3.).
    func getFinishedTime(p *v1.Pod) time.Time {
    	if finishTime := getFinishTimeFromContainers(p); finishTime != nil {
    		return *finishTime
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/VirtualPlatformState.java

         * is no longer valid and we can attach the target revision.
         *
         * @param edge the orphan edge
         */
        void addOrphanEdge(EdgeState edge) {
            orphanEdges.add(edge);
        }
    
        void attachOrphanEdges() {
            for (EdgeState orphanEdge : orphanEdges) {
                orphanEdge.attachToTargetConfigurations();
            }
            orphanEdges.clear();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top