Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for orphaned (0.13 sec)

  1. pkg/controller/endpoint/endpoints_controller.go

    // reboots).
    func (e *Controller) checkLeftoverEndpoints() {
    	list, err := e.endpointsLister.List(labels.Everything())
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Unable to list endpoints (%v); orphaned endpoints will not be cleaned up. (They're pretty harmless, but you can restart this component if you want another attempt made.)", err))
    		return
    	}
    	for _, ep := range list {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control.go

    	// error is nil, the returns slice of ControllerRevisions is valid.
    	ListRevisions(set *apps.StatefulSet) ([]*apps.ControllerRevision, error)
    	// AdoptOrphanRevisions adopts any orphaned ControllerRevisions that match set's Selector. If all adoptions are
    	// successful the returned error is nil.
    	AdoptOrphanRevisions(set *apps.StatefulSet, revisions []*apps.ControllerRevision) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. pkg/controller/resourceclaim/controller.go

    		}
    	}
    
    	templateName := podClaim.Source.ResourceClaimTemplateName
    	if templateName == nil {
    		// Nothing to do.
    		return nil
    	}
    
    	// Before we create a new ResourceClaim, check if there is an orphaned one.
    	// This covers the case that the controller has created it, but then fails
    	// before it can update the pod status.
    	claim, err := ec.findPodResourceClaim(pod, podClaim)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. pkg/kubelet/status/status_manager.go

    	var updatedStatuses []podSync
    	podToMirror, mirrorToPod := m.podManager.GetUIDTranslations()
    	func() { // Critical section
    		m.podStatusesLock.RLock()
    		defer m.podStatusesLock.RUnlock()
    
    		// Clean up orphaned versions.
    		if all {
    			for uid := range m.apiStatusVersions {
    				_, hasPod := m.podStatuses[types.UID(uid)]
    				_, hasMirror := mirrorToPod[uid]
    				if !hasPod && !hasMirror {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf_test.go

    	// Now read the line table for the 'main' compilation unit.
    	mainIdx := ex.IdxFromOffset(maindie.Offset)
    	cuentry := ex.Parent(mainIdx)
    	if cuentry == nil {
    		t.Fatalf("main.main DIE appears orphaned")
    	}
    	lnrdr, lerr := dw.LineReader(cuentry)
    	if lerr != nil {
    		t.Fatalf("error creating DWARF line reader: %v", err)
    	}
    	if lnrdr == nil {
    		t.Fatalf("no line table for main.main compilation unit")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  6. src/os/exec/exec_test.go

    	exitOnInterrupt := fs.Bool("interrupt", false, "if true, commands should exit 0 on os.Interrupt")
    	subsleep := fs.Duration("subsleep", 0, "amount of time for the 'hang' helper to leave an orphaned subprocess sleeping with stderr open")
    	probe := fs.Duration("probe", 0, "if nonzero, the 'hang' helper should write to stderr at this interval, and exit nonzero if a write fails")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  7. pkg/registry/core/namespace/storage/storage_test.go

    			},
    		},
    		{
    			name: "propagation-orphan-with-orphan",
    			deleteOptions: &metav1.DeleteOptions{
    				PropagationPolicy: &propagationOrphan,
    			},
    			existingFinalizers: []string{
    				metav1.FinalizerOrphanDependents,
    			},
    			remainingFinalizers: map[string]bool{
    				metav1.FinalizerOrphanDependents: true,
    			},
    		},
    		{
    			name: "propagation-orphan-with-delete",
    			deleteOptions: &metav1.DeleteOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 05:13:34 UTC 2022
    - 19.8K bytes
    - Viewed (0)
  8. pkg/registry/batch/job/storage/storage_test.go

    		},
    		{
    			description:   "deletion: orphan dependents, no warnings",
    			expectWarning: false,
    			deleteOptions: &metav1.DeleteOptions{OrphanDependents: &orphanDependents},
    			requestInfo:   &genericapirequest.RequestInfo{APIGroup: "batch", APIVersion: "v1"},
    		},
    		{
    			description:   "deletion: orphan deletion, no warnings",
    			expectWarning: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/base/StringsTest.java

        // Two differing invalid pairs.
        assertEquals("abc\uD8AB", Strings.commonPrefix("abc\uD8AB\uD8ABdef", "abc\uD8AB\uD8ACxyz"));
        // One orphan high surrogate.
        assertEquals("", Strings.commonPrefix("\uD8AB\uDCAB", "\uD8AB"));
        // Two orphan high surrogates.
        assertEquals("\uD8AB", Strings.commonPrefix("\uD8AB", "\uD8AB"));
      }
    
      public void testCommonSuffix() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pkg/controller/servicecidrs/servicecidrs_controller.go

    		return err
    	}
    
    	return nil
    }
    
    // canDeleteCIDR checks that the ServiceCIDR can be safely deleted and not leave orphan IPAddresses
    func (c *Controller) canDeleteCIDR(ctx context.Context, serviceCIDR *networkingapiv1alpha1.ServiceCIDR) (bool, error) {
    	// TODO(aojea) Revisit the lock usage and if we need to keep it only for the tree operations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top