Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for orphaned (0.15 sec)

  1. pkg/volume/csi/csi_block.go

    		klog.V(4).Infof("Failed to clean up block volume directory %s", err)
    	}
    
    	return nil
    }
    
    // Clean up any orphan files / directories when a block volume is being unstaged.
    // At this point we can be sure that there is no pod using the volume and all
    // files are indeed orphaned.
    func (m *csiBlockMapper) cleanupOrphanDeviceFiles() error {
    	// Remove artifacts of NodePublish.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. pkg/controller/deployment/deployment_controller.go

    		dc.enqueueDeployment(d)
    		return
    	}
    
    	// Otherwise, it's an orphan. Get a list of all matching Deployments and sync
    	// them to see if anyone wants to adopt it.
    	ds := dc.getDeploymentsForReplicaSet(logger, rs)
    	if len(ds) == 0 {
    		return
    	}
    	logger.V(4).Info("Orphan ReplicaSet added", "replicaSet", klog.KObj(rs))
    	for _, d := range ds {
    		dc.enqueueDeployment(d)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters_test.go

    								},
    								{
    									Instance: &resourceapi.NamedResourcesInstance{Name: "Y"},
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    
    		"orphaned-allocations": {
    			claims: claimList{
    				&resourceapi.ResourceClaim{
    					Status: resourceapi.ResourceClaimStatus{
    						DriverName: "meta-driver",
    						Allocation: &resourceapi.AllocationResult{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/compile.go

    	{name: "zero arg cse", fn: zcse, required: true},     // required to merge OpSB values
    	{name: "opt deadcode", fn: deadcode, required: true}, // remove any blocks orphaned during opt
    	{name: "generic cse", fn: cse},
    	{name: "phiopt", fn: phiopt},
    	{name: "gcse deadcode", fn: deadcode, required: true}, // clean out after cse and phiopt
    	{name: "nilcheckelim", fn: nilcheckelim},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/dwarf.go

    			if doffset.dclIdx == f.dclidx {
    				f.refsym.R[f.relidx].Add += int64(doffset.offset)
    				dfound = true
    				break
    			}
    		}
    		if !dfound {
    			ft.ctxt.Diag("internal error: DwarfFixupTable has orphaned fixup on %v targeting %v relidx=%d dclidx=%d", f.refsym, s, f.relidx, f.dclidx)
    		}
    	}
    }
    
    // return the LSym corresponding to the 'abstract subprogram' DWARF
    // info entry for a function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set.go

    		rsc.queue.Add(rsKey)
    		return
    	}
    
    	// Otherwise, it's an orphan. Get a list of all matching ReplicaSets and sync
    	// them to see if anyone wants to adopt it.
    	// DO NOT observe creation because no controller should be waiting for an
    	// orphan.
    	rss := rsc.getPodReplicaSets(pod)
    	if len(rss) == 0 {
    		return
    	}
    	logger.V(4).Info("Orphan Pod created", "pod", klog.KObj(pod), "detail", pod)
    	for _, rs := range rss {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. src/os/exec/exec.go

    	// similar methods will return ErrWaitDelay instead of nil.
    	//
    	// If WaitDelay is zero (the default), I/O pipes will be read until EOF,
    	// which might not occur until orphaned subprocesses of the command have
    	// also closed their descriptors for the pipes.
    	WaitDelay time.Duration
    
    	// childIOFiles holds closers for any of the child process's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/garbagecollector.go

    // graph changes, the dependencyGraphBuilder enqueues objects that can
    // potentially be garbage-collected to the `attemptToDelete` queue, and enqueues
    // objects whose dependents need to be orphaned to the `attemptToOrphan` queue.
    // The GarbageCollector has workers who consume these two queues, send requests
    // to the API server to delete/update the objects accordingly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. pkg/controller/deployment/deployment_controller_test.go

    	_, ctx := ktesting.NewTestContext(t)
    
    	f := newFixture(t)
    
    	d := newDeployment("foo", 1, nil, nil, nil, map[string]string{"foo": "bar"})
    
    	// RS with matching labels, but orphaned. Should be adopted and returned.
    	rsAdopt := newReplicaSet(d, "rsAdopt", 1)
    	rsAdopt.OwnerReferences = nil
    	// RS with matching ControllerRef, but wrong labels. Should be released.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_utils.go

    		return false
    	}
    	for _, ownerRef := range claim.GetOwnerReferences() {
    		if matchesRef(&ownerRef, set, controllerKind) {
    			if ownerRef.UID != set.GetUID() {
    				// A UID mismatch means that pods were incorrectly orphaned. Treating this as an unexpected
    				// controller means we won't touch the PVCs (eg, leave it to the garbage collector to clean
    				// up if appropriate).
    				return true
    			}
    			continue // This is us.
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top