Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,035 for updateIPs (0.22 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. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/capmanagers.go

    // such that the number of entries from updates does not exceed f.maxUpdateManagers.
    func (f *capManagersManager) capUpdateManagers(managed Managed) (newManaged Managed, err error) {
    	// Gather all entries from updates
    	updaters := []string{}
    	for manager, fields := range managed.Fields() {
    		if !fields.Applied() {
    			updaters = append(updaters, manager)
    		}
    	}
    	if len(updaters) <= f.maxUpdateManagers {
    		return managed, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 4.6K 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/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)
  7. releasenotes/notes/we-updates.yaml

    John Howard <******@****.***> 1600130247 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 15 00:37:27 UTC 2020
    - 208 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top