Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 123 for orphaned (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. plugin/pkg/auth/authorizer/node/graph.go

    		g.removeEdgeFromDestinationIndex_locked(edge)
    	}
    }
    
    // must be called under write lock
    // deletes edges from a given vertex type to a specific vertex
    // will delete each orphaned "from" vertex, but will never delete the "to" vertex
    func (g *Graph) deleteEdges_locked(fromType, toType vertexType, toNamespace, toName string) {
    	// get the "to" side
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K 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/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultWorkerLeaseService.java

            if (!allLockedByCurrentThread(locks)) {
                throw new IllegalStateException("Not all of the locks specified are currently held by the current thread.  This could lead to orphaned locks.");
            }
        }
    
        @Override
        public <T> T withReplacedLocks(Collection<? extends ResourceLock> currentLocks, ResourceLock newLock, Factory<T> factory) {
            if (currentLocks.contains(newLock)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top