Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 334 for DELETING (0.11 sec)

  1. pkg/proxy/conntrack/conntrack.go

    		// These stale udp connection will keep black hole traffic. Making this a best effort operation for now, since it
    		// is expensive to baby-sit all udp connections to kubernetes services.
    		return fmt.Errorf("error deleting connection tracking state for UDP service IP: %s, error: %v", ip, err)
    	}
    	return nil
    }
    
    // ClearEntriesForPort is part of Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. pkg/kubelet/images/types.go

    )
    
    // ImageManager provides an interface to manage the lifecycle of images.
    // Implementations of this interface are expected to deal with pulling (downloading),
    // managing, and deleting container images.
    // Implementations are expected to abstract the underlying runtimes.
    // Implementations are expected to be thread safe.
    type ImageManager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. releasenotes/notes/40578.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    
    issue:
      - 40577
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 16:15:08 UTC 2022
    - 226 bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/graceful_termination.go

    				klog.V(5).InfoS("Skip deleting real server till all connection have expired", "realServer", rsToDelete, "activeConnection", rs.ActiveConn, "inactiveConnection", rs.InactiveConn)
    				return false, nil
    			}
    			klog.V(5).InfoS("Deleting real server", "realServer", rsToDelete)
    			err := m.ipvs.DeleteRealServer(rsToDelete.VirtualServer, rs)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/dump.go

    	if v.missingFromGraph {
    		missing = "(missing)"
    	}
    	deleting := ""
    	if v.beingDeleted {
    		deleting = "(deleting)"
    	}
    	deletingDependents := ""
    	if v.deletingDependents {
    		deleting = "(deletingDependents)"
    	}
    	virtual := ""
    	if v.virtual {
    		virtual = "(virtual)"
    	}
    	return fmt.Sprintf(`%s/%s[%s]-%v%s%s%s%s`, kind, v.name, v.namespace, v.uid, missing, deleting, deletingDependents, virtual)
    }
    
    type attribute struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 17:12:33 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  6. releasenotes/notes/47539.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 06:11:44 UTC 2023
    - 197 bytes
    - Viewed (0)
  7. releasenotes/notes/50221.yaml

    issue:
      - 49915
      - 50173
    releaseNotes:
    - |
      **Added** Allow user to name their waypoint through istioctl via --name flag on the waypoint cmd.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:52 UTC 2024
    - 344 bytes
    - Viewed (0)
  8. plugin/pkg/admission/storage/storageobjectinuseprotection/admission.go

    )
    
    // Admit sets finalizer on all PVCs(PVs). The finalizer is removed by
    // PVCProtectionController(PVProtectionController) when it's not referenced.
    //
    // This prevents users from deleting a PVC that's used by a running pod.
    // This also prevents admin from deleting a PV that's bound by a PVC
    func (c *storageProtectionPlugin) Admit(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) error {
    	switch a.GetResource().GroupResource() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 02 21:13:50 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  9. releasenotes/notes/43853.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 43853
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 13:54:23 UTC 2023
    - 272 bytes
    - Viewed (0)
  10. tests/associations_has_many_test.go

    		t.Errorf("no error should happened when deleting pet, but got %v", err)
    	}
    
    	AssertAssociationCount(t, users, "Pets", 4, "after delete")
    
    	if err := DB.Model(&users).Association("Pets").Delete(users[0].Pets[0], users[1].Pets[1]); err != nil {
    		t.Errorf("no error should happened when deleting pet, but got %v", err)
    	}
    
    	AssertAssociationCount(t, users, "Pets", 2, "after delete")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top