Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for orphaned (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. build/pause/Makefile

    	touch $@
    
    # Useful for testing, not automatically included in container image
    orphan: bin/orphan-linux-$(ARCH)
    bin/orphan-linux-$(ARCH): linux/orphan.c
    	mkdir -p bin
    	docker run --rm -u $$(id -u):$$(id -g) -v $$(pwd):/build \
    		$(KUBE_CROSS_IMAGE):$(KUBE_CROSS_VERSION) \
    		/bin/bash -c "\
    			cd /build && \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconciler.go

    	// that is still needed, but it did not reach DSW yet.
    	if readyToUnmount {
    		// Ensure devices that should be detached/unmounted are detached/unmounted.
    		rc.unmountDetachDevices()
    
    		// Clean up any orphan volumes that failed reconstruction.
    		rc.cleanOrphanVolumes()
    	}
    
    	if len(rc.volumesNeedUpdateFromNodeStatus) != 0 {
    		rc.updateReconstructedFromNodeStatus()
    	}
    	if len(rc.volumesNeedUpdateFromNodeStatus) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/certs/certlist_test.go

    		"leaf1":       leaf1,
    		"self-signed": selfSigned,
    	}
    
    	orphanCertMap := CertificateMap{
    		"leaf0": leaf0,
    	}
    
    	if _, err := orphanCertMap.CertTree(); err == nil {
    		t.Error("expected orphan cert map to error, but got nil")
    	}
    
    	certTree, err := certMap.CertTree()
    	t.Logf("cert tree: %v", certTree)
    	if err != nil {
    		t.Errorf("expected no error, but got %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top