Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for deleteRS (0.23 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "format": "int32",
                "type": "integer"
              }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    		t.Errorf("expected service map length 1, got %v", fp.svcPortMap)
    	}
    
    	// All services but one were deleted. While you'd expect only the ClusterIPs
    	// from the three deleted services here, we still have the ClusterIP for
    	// the not-deleted service, because one of it's ServicePorts was deleted.
    	expectedStaleUDPServices := []string{"172.30.55.10", "172.30.55.4", "172.30.55.11", "172.30.55.12"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

                  resource.
                properties:
                  cidr:
                    type: string
                  deleted:
                    description: Deleted indicates that this block affinity is being deleted.
                      This field is a string for compatibility with older releases that
                      mistakenly treat this field as a string.
                    type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. pkg/registry/core/service/storage/storage_test.go

    	// Try to delete it, but it should be blocked by the finalizer.
    	obj, deleted, err := storage.Delete(ctx, svcName, rest.ValidateAllObjectFunc, &metav1.DeleteOptions{})
    	if err != nil {
    		t.Fatalf("unexpected error deleting service: %v", err)
    	}
    	if deleted {
    		t.Fatalf("expected service to not be deleted")
    	}
    	deletedSvc := obj.(*api.Service)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    - Give terminal phase correctly to all pods that will not be restarted. 
    
      In particular, assign Failed phase to pods which are deleted while pending. Also, assign a terminal 
      phase (Succeeded or Failed, depending on the exit statuses of the pod containers) to pods which
      are deleted while running.
      
      This fixes the issue for jobs using pod failure policy (with JobPodFailurePolicy and PodDisruptionConditions 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    tring().replace(`.${w}`,"&")),ee}});return p}}function $d(i,e){!i.classCache.has(e)||(i.notClassCache.add(e),i.classCache.delete(e),i.applyClassCache.delete(e),i.candidateRuleMap.delete(e),i.candidateRuleCache.delete(e),i.stylesheetCache=null)}function TC(i,e){let t=e.raws.tailwind.candidate;if(!!t){for(let r of i.ruleCache)r[1].raws.tailwind.candidate===t&&i.ruleCache.delete(r);$d(i,t)}}function co(i,e=[],t=z.root()){let r={disposables:[],ruleCache:new Set,candidateRuleCache:new Map,classCache:new...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.30.md

    - Kube-scheduler now retries scheduling Pods rejected by the PodTopologySpread plugin when related Pods are created, deleted, updated, or when a node matches the specified topologyKey. ([#122195](https://github.com/kubernetes/kubernetes/pull/122195),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    		vv, ok := p.conns[key]
    		if !ok {
    			continue
    		}
    		newList := http2filterOutClientConn(vv, cc)
    		if len(newList) > 0 {
    			p.conns[key] = newList
    		} else {
    			delete(p.conns, key)
    		}
    	}
    	delete(p.keys, cc)
    }
    
    func (p *http2clientConnPool) closeIdleConnections() {
    	p.mu.Lock()
    	defer p.mu.Unlock()
    	// TODO: don't close a cc if it was just added to the pool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// used for PersistentVolumes where the bound PersistentVolumeClaim was deleted
    	// released volumes must be recycled before becoming available again
    	// this phase is used by the persistent volume claim binder to signal to another process to reclaim the resource
    	VolumeReleased PersistentVolumePhase = "Released"
    	// used for PersistentVolumes that failed to be correctly recycled or deleted after being released from a claim
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	// used for PersistentVolumes where the bound PersistentVolumeClaim was deleted
    	// released volumes must be recycled before becoming available again
    	// this phase is used by the persistent volume claim binder to signal to another process to reclaim the resource
    	VolumeReleased PersistentVolumePhase = "Released"
    	// used for PersistentVolumes that failed to be correctly recycled or deleted after being released from a claim
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top