Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 157 for deleteRS (0.3 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			as := convertServices(*tt.current)
    			bs := convertServices(*tt.new)
    			added, deleted, updated, unchanged := servicesDiff(as, bs)
    			for i, item := range []struct {
    				hostnames []host.Name
    				services  []*model.Service
    			}{
    				{tt.added, added},
    				{tt.deleted, deleted},
    				{tt.updated, updated},
    				{tt.unchanged, unchanged},
    			} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/types.go

    // deleted or scaled down.
    type PersistentVolumeClaimRetentionPolicyType string
    
    const (
    	// RetainPersistentVolumeClaimRetentionPolicyType is the default
    	// PersistentVolumeClaimRetentionPolicy and specifies that
    	// PersistentVolumeClaims associated with StatefulSet VolumeClaimTemplates
    	// will not be deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  3. cmd/peer-rest-server.go

    	globalEventNotifier.RemoveNotification(bucketName)
    	globalBucketConnStats.delete(bucketName)
    	globalBucketHTTPStats.delete(bucketName)
    	if localMetacacheMgr != nil {
    		localMetacacheMgr.deleteBucketCache(bucketName)
    	}
    	return
    }
    
    // GetAllBucketStatsHandler - fetches bucket replication stats for all buckets from this peer.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    // Destroy an options object. Graph will be deleted once no more
    // TFSession's are referencing it.
    TF_CAPI_EXPORT extern void TF_DeleteGraph(TF_Graph*);
    
    // Operation being built. The underlying graph must outlive this.
    typedef struct TF_OperationDescription TF_OperationDescription;
    
    // Operation that has been added to the graph. Valid until the graph is
    // deleted -- in particular adding a new operation to the graph does not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  5. api/discovery/aggregated_v2beta1.json

                        "get",
                        "patch",
                        "update"
                      ]
                    }
                  ],
                  "verbs": [
                    "create",
                    "delete",
                    "deletecollection",
                    "get",
                    "list",
                    "patch",
                    "update",
                    "watch"
                  ]
                }
              ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  7. api/discovery/aggregated_v2.json

                        "get",
                        "patch",
                        "update"
                      ]
                    }
                  ],
                  "verbs": [
                    "create",
                    "delete",
                    "deletecollection",
                    "get",
                    "list",
                    "patch",
                    "update",
                    "watch"
                  ]
                }
              ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// have it in our informer cache yet. Let's try to delete, just to be
    	// on the safe side.
    	logger := klog.FromContext(ctx)
    	err = pl.clientset.ResourceV1alpha2().PodSchedulingContexts(pod.Namespace).Delete(ctx, pod.Name, metav1.DeleteOptions{})
    	switch {
    	case apierrors.IsNotFound(err):
    		logger.V(5).Info("no PodSchedulingContext object to delete")
    	case err != nil:
    		logger.Error(err, "delete PodSchedulingContext")
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		nc.markNodeAsReachable(ctx, added[i])
    	}
    
    	for i := range deleted {
    		logger.V(1).Info("Controller observed a Node deletion", "node", klog.KRef("", deleted[i].Name))
    		controllerutil.RecordNodeEvent(ctx, nc.recorder, deleted[i].Name, string(deleted[i].UID), v1.EventTypeNormal, "RemovingNode", fmt.Sprintf("Removing Node %v from Controller", deleted[i].Name))
    		delete(nc.knownNodeSet, deleted[i].Name)
    	}
    
    	var zoneToNodeConditionsLock sync.Mutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    	// of the kubelet to assume that no other containers may be started.
    	startedTerminating bool
    	// deleted is true if the pod has been marked for deletion on the apiserver
    	// or has no configuration represented (was deleted before).
    	deleted bool
    	// evicted is true if the kill indicated this was an eviction (an evicted
    	// pod can be more aggressively cleaned up).
    	evicted bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top