Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for model_copy (0.17 sec)

  1. docs/de/docs/tutorial/body-updates.md

    ### Pydantics `update`-Parameter verwenden
    
    Jetzt können Sie eine Kopie des existierenden Modells mittels `.model_copy()` erstellen, wobei Sie dem `update`-Parameter ein `dict` mit den zu ändernden Daten übergeben.
    
    !!! info
        In Pydantic v1 hieß diese Methode `.copy()`, in Pydantic v2 wurde sie deprecated (aber immer noch unterstützt) und in `.model_copy()` umbenannt.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 20:26:37 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/body-updates.md

    Now, you can create a copy of the existing model using `.model_copy()`, and pass the `update` parameter with a `dict` containing the data to update.
    
    !!! info
        In Pydantic v1 the method was called `.copy()`, it was deprecated (but still supported) in Pydantic v2, and renamed to `.model_copy()`.
    
        The examples here use `.copy()` for compatibility with Pydantic v1, but you should use `.model_copy()` instead if you can use Pydantic v2.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  3. cmd/batch-expire.go

    						failed++
    						if attempts == retryAttempts { // all retry attempts failed, record failure
    							if oi, ok := oiCache.Get(toDelCopy[i]); ok {
    								ri.trackCurrentBucketObject(r.Bucket, *oi, false)
    							}
    						} else {
    							toDel = append(toDel, toDelCopy[i])
    						}
    					} else {
    						stopFn(toDelCopy[i], nil)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 21K bytes
    - Viewed (1)
Back to top