Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 607 for updateIPs (0.13 sec)

  1. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    			ic.deleteService(mcsService)
    			return nil
    		}
    
    		// The service already existed. Treat it as an update.
    		event = model.EventUpdate
    		mcsService = mcsService.DeepCopy()
    		if ic.updateIPs(mcsService, ips) {
    			needsFullPush = true
    		}
    	}
    
    	// Always force a rebuild of the endpoint cache in case this import caused
    	// a change to the discoverability policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/storage_test.go

    			}
    
    			beforeIPs := tc.before.Spec.ClusterIPs
    			updateIPs := update.Spec.ClusterIPs
    			if tc.expectSameClusterIPs {
    				if !cmp.Equal(beforeIPs, updateIPs) {
    					t.Errorf("expected clusterIPs to be patched: %q != %q", beforeIPs, updateIPs)
    				}
    			} else if tc.expectReducedClusterIPs {
    				if len(updateIPs) != 1 || beforeIPs[0] != updateIPs[0] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/body-updates.md

        And many teams use only `PUT`, even for partial updates.
    
        You are **free** to use them however you want, **FastAPI** doesn't impose any restrictions.
    
        But this guide shows you, more or less, how they are intended to be used.
    
    ### Using Pydantic's `exclude_unset` parameter
    
    If you want to receive partial updates, it's very useful to use the parameter `exclude_unset` in Pydantic's model's `.model_dump()`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. docs/ja/docs/tutorial/body-updates.md

    Nils Lindemann <******@****.***> 1713469999 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/body-updates.md

    Nils Lindemann <******@****.***> 1711830397 +0100
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/body-updates.md

    Nils Lindemann <******@****.***> 1713469999 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. docs/zh/docs/tutorial/body-updates.md

    Nils Lindemann <******@****.***> 1713469999 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. docs/ru/docs/tutorial/body-updates.md

    Aleksandr Andrukhov <******@****.***> 1706018132 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 13:55:32 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set.go

    	if manageReplicasErr == nil && updatedRS.Spec.MinReadySeconds > 0 &&
    		updatedRS.Status.ReadyReplicas == *(updatedRS.Spec.Replicas) &&
    		updatedRS.Status.AvailableReplicas != *(updatedRS.Spec.Replicas) {
    		rsc.queue.AddAfter(key, time.Duration(updatedRS.Spec.MinReadySeconds)*time.Second)
    	}
    	return manageReplicasErr
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    	if se == nil {
    		return nil
    	}
    
    	switch event {
    	case model.EventAdd, model.EventDelete:
    		ec.updateXDS(se)
    	default:
    		// Don't care about updates.
    	}
    	return nil
    }
    
    func (ec *serviceExportCacheImpl) updateXDS(se metav1.Object) {
    	for _, svc := range ec.servicesForNamespacedName(config.NamespacedName(se)) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top