Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 565 for storing (0.27 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	return c.storage.Delete(ctx, key, out, preconditions, validateDeletion, nil)
    }
    
    type namespacedName struct {
    	namespace string
    	name      string
    }
    
    // Watch implements storage.Interface.
    func (c *Cacher) Watch(ctx context.Context, key string, opts storage.ListOptions) (watch.Interface, error) {
    	pred := opts.Predicate
    	// if the watch-list feature wasn't set and the resourceVersion is unset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    		Namespace: "not-default",
    		Labels: map[string]string{
    			"istio": "ingressgateway",
    		},
    	}
    	virtualServiceSpec = &networking.VirtualService{
    		Hosts:    []string{"test.com"},
    		Gateways: []string{"mesh"},
    		Tcp: []*networking.TCPRoute{
    			{
    				Match: []*networking.L4MatchAttributes{
    					{
    						DestinationSubnets: []string{"10.10.0.0/24"},
    						Port:               8080,
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Note that this requirement makes it unsupported to write tasks that configure other tasks at execution time.
    
    [[config_cache:requirements:shared_objects]]
    === Sharing mutable objects
    When storing a task to the configuration cache, all objects directly or indirectly referenced through the task's fields are serialized.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    //
    // The M will track this by storing a pointer to the lock; lock/unlock pairs for
    // runtime-internal locks are always on the same M.
    //
    // Together, that demands several steps for recording contention. First, when
    // finally acquiring a contended lock, the M decides whether it should plan to
    // profile that event by storing a pointer to the lock in its "to be profiled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	claim      func(*resourcev1alpha2.ResourceClaim) *resourcev1alpha2.ResourceClaim
    }
    type perNodeResult map[string]result
    
    func (p perNodeResult) forNode(nodeName string) result {
    	if p == nil {
    		return result{}
    	}
    	return p[nodeName]
    }
    
    type want struct {
    	preenqueue       result
    	preFilterResult  *framework.PreFilterResult
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller.go

    func getUnscheduledPodsWithoutNode(runningNodesList []*v1.Node, nodeToDaemonPods map[string][]*v1.Pod) []string {
    	var results []string
    	isNodeRunning := make(map[string]bool, len(runningNodesList))
    	for _, node := range runningNodesList {
    		isNodeRunning[node.Name] = true
    	}
    
    	for n, pods := range nodeToDaemonPods {
    		if isNodeRunning[n] {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		nodeNameKeyIndex: func(obj interface{}) ([]string, error) {
    			pod, ok := obj.(*v1.Pod)
    			if !ok {
    				return []string{}, nil
    			}
    			if len(pod.Spec.NodeName) == 0 {
    				return []string{}, nil
    			}
    			return []string{pod.Spec.NodeName}, nil
    		},
    	})
    
    	podIndexer := podInformer.Informer().GetIndexer()
    	nc.getPodsAssignedToNode = func(nodeName string) ([]*v1.Pod, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		return nil, err
    	}
    
    	// Scope/Storages per version.
    	requestScopes := map[string]*handlers.RequestScope{}
    	storages := map[string]customresource.CustomResourceStorage{}
    	statusScopes := map[string]*handlers.RequestScope{}
    	scaleScopes := map[string]*handlers.RequestScope{}
    	deprecated := map[string]bool{}
    	warnings := map[string][]string{}
    
    	equivalentResourceRegistry := runtime.NewEquivalentResourceRegistry()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/filesystem_interface.h

    typedef struct TF_Filesystem_Option_Value {
      int type_tag;    // type of values in the values union
      int num_values;  // number of values
      TF_Filesystem_Option_Value_Union*
          values;  // owned (plugins must make a copy if storing this)
    } TF_Filesystem_Option_Value;
    
    typedef enum TF_Filesystem_Option_Type {
      TF_Filesystem_Option_Type_Int = 0,
      TF_Filesystem_Option_Type_Real,
      TF_Filesystem_Option_Type_Buffer,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework.go

    type orderedSet struct {
    	set         map[string]int
    	list        []string
    	deletionCnt int
    }
    
    func newOrderedSet() *orderedSet {
    	return &orderedSet{set: make(map[string]int)}
    }
    
    func (os *orderedSet) insert(s string) {
    	if os.has(s) {
    		return
    	}
    	os.set[s] = len(os.list)
    	os.list = append(os.list, s)
    }
    
    func (os *orderedSet) has(s string) bool {
    	_, found := os.set[s]
    	return found
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top