Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 365 for DELETING (0.3 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. cluster/gce/delete-stranded-load-balancers.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # A utility for deleting target pools and forwarding rules that are unattached to VMs
    PROJECT=${PROJECT:-kubernetes-jenkins}
    REGION=${REGION:-us-central1}
    
    LIST=$(gcloud --project="${PROJECT}" compute target-pools list --format='value(name)')
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 18 05:42:46 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. test/fixedbugs/gcc61258.go

    // run
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // PR61258: gccgo crashed when deleting a zero-sized key from a map.
    
    package main
    
    func main() {
    	delete(make(map[[0]bool]int), [0]bool{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 310 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top