Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 385 for updateIPs (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  10. pkg/controlplane/reconcilers/helpers_test.go

    		}
    	}
    
    	if len(updates) != len(expectedUpdates) {
    		errors = append(errors, fmt.Errorf("expected %d updates got %d", len(expectedUpdates), len(updates)))
    	}
    	for i := 0; i < len(updates) || i < len(expectedUpdates); i++ {
    		var expected, actual runtime.Object
    		if i < len(updates) {
    			actual = updates[i].GetObject()
    		}
    		if i < len(expectedUpdates) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:23 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top