Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for updateIPs (0.2 sec)

  1. pilot/pkg/model/endpointshards.go

    // clusters when a push for the specific cluster is needed.
    type EndpointShards struct {
    	// mutex protecting below map.
    	sync.RWMutex
    
    	// Shards is used to track the shards. EDS updates are grouped by shard.
    	// Current implementation uses the registry name as key - in multicluster this is the
    	// name of the k8s cluster, derived from the config (secret).
    	Shards map[ShardKey][]*IstioEndpoint
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pkg/revisions/tag_watcher.go

    	if !kube.WaitForCacheSync("tag watcher", stopCh, p.webhooks.HasSynced) {
    		return
    	}
    	// Notify handlers of initial state
    	p.notifyHandlers()
    	p.queue.Run(stopCh)
    }
    
    // AddHandler registers a new handler for updates to tag changes.
    func (p *tagWatcher) AddHandler(handler TagHandler) {
    	p.handlers = append(p.handlers, handler)
    }
    
    func (p *tagWatcher) HasSynced() bool {
    	return p.queue.HasSynced()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	podManager kubepod.Manager
    
    	// podWorkers is responsible for driving the lifecycle state machine of each pod. The worker is
    	// notified of config changes, updates, periodic reconciliation, container runtime updates, and
    	// evictions of all desired pods and will invoke reconciliation methods per pod in separate
    	// goroutines. The podWorkers are authoritative in the kubelet for what pods are actually being
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    		Namespace(c.ns).
    		Resource("examples").
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(example).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // Update takes the representation of a example and updates it. Returns the server's representation of the example, and an error, if there is any.
    func (c *examples) Update(ctx context.Context, example *v1.Example, opts metav1.UpdateOptions) (result *v1.Example, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // Update takes the representation of a customResourceDefinition and updates it. Returns the server's representation of the customResourceDefinition, and an error, if there is any.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // Update takes the representation of a customResourceDefinition and updates it. Returns the server's representation of the customResourceDefinition, and an error, if there is any.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. pilot/pkg/xds/delta.go

    	if pushRequest.Full {
    		// Update Proxy with current information.
    		s.computeProxyState(con.proxy, pushRequest)
    	}
    
    	if !s.ProxyNeedsPush(con.proxy, pushRequest) {
    		deltaLog.Debugf("Skipping push to %v, no updates required", con.ID())
    		if pushRequest.Full {
    			// Only report for full versions, incremental pushes do not have a new version
    			reportAllEventsForProxyNoPush(con, s.StatusReporter, pushRequest.Push.LedgerVersion)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    // of this call is the minimum latency for static pods to be restarted if they
    // are updated with a fixed UID (most should use a dynamic UID), and no config
    // updates are delivered to the pod workers while this method is running.
    func (kl *Kubelet) HandlePodCleanups(ctx context.Context) error {
    	// The kubelet lacks checkpointing, so we need to introspect the set of pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. docs/en/docs/release-notes.md

        * Update documentation: [Response Model](https://fastapi.tiangolo.com/tutorial/response-model/#response_model_include-and-response_model_exclude).
        * Add docs for: [Body - updates](https://fastapi.tiangolo.com/tutorial/body-updates/), using Pydantic's `skip_defaults`.
        * Add method consistency tests.
        * PR [#264](https://github.com/tiangolo/fastapi/pull/264).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    	gwMap := map[parentKey][]*parentInfo{}
    	// namespaceLabelReferences keeps track of all namespace label keys referenced by Gateways. This is
    	// used to ensure we handle namespace updates for those keys.
    	namespaceLabelReferences := sets.New[string]()
    	classes := getGatewayClasses(r.GatewayResources, gatewaySupportedFeatures)
    	for _, obj := range r.Gateway {
    		obj := obj
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top