Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 198 for partials (0.16 seconds)

  1. tests/test_callable_endpoint.py

    from functools import partial
    
    from fastapi import FastAPI
    from fastapi.testclient import TestClient
    
    
    def main(some_arg, q: str | None = None):
        return {"some_arg": some_arg, "q": q}
    
    
    endpoint = partial(main, "foo")
    
    app = FastAPI()
    
    app.get("/")(endpoint)
    
    
    client = TestClient(app)
    
    
    def test_partial():
        response = client.get("/?q=bar")
        data = response.json()
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 426 bytes
    - Click Count (0)
  2. src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java

            d.readBytesWireFormat(buf, 0);
    
            // Flags should not be set for partial read
            assertFalse(d.getParametersDone(), "parametersDone should be false for partial read");
            assertFalse(d.getDataDone(), "dataDone should be false for partial read");
            assertTrue(d.getHasMore(), "hasMore should remain true for partial read");
        }
    
        /**
         * Test scenario with no data to read
         */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 12K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/util/QueryResponseList.java

         */
        public FacetResponse getFacetResponse() {
            return facetResponse;
        }
    
        /**
         * Checks whether the search results are partial (not complete).
         *
         * @return true if the results are partial, false if complete
         */
        public boolean isPartialResults() {
            return partialResults;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 14.5K bytes
    - Click Count (0)
  4. docs/ko/docs/tutorial/body-updates.md

        "price": 3,
        "description": None,
    }
    ```
    
    이미 저장된 속성 `"tax": 20.2`가 포함되어 있지 않기 때문에, 입력 모델은 `"tax": 10.5`라는 기본값을 사용하게 됩니다.
    
    그리고 데이터는 그 “새로운” `tax` 값 `10.5`로 저장됩니다.
    
    ## `PATCH`로 부분 업데이트하기 { #partial-updates-with-patch }
    
    [HTTP `PATCH`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH) 작업을 사용해 데이터를 *부분적으로* 업데이트할 수도 있습니다.
    
    이는 업데이트하려는 데이터만 보내고, 나머지는 그대로 두는 것을 의미합니다.
    
    /// note | 참고
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  5. docs/de/docs/tutorial/body-updates.md

    Und die Daten würden mit diesem „neuen“ `tax` von `10.5` gespeichert werden.
    
    ## Teil-Aktualisierungen mit `PATCH` { #partial-updates-with-patch }
    
    Sie können auch die [HTTP `PATCH`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH) Operation verwenden, um Daten *teilweise* zu ersetzen.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 5K bytes
    - Click Count (0)
  6. docs/tr/docs/tutorial/body-updates.md

    zaten kayıtlı olan `"tax": 20.2` alanını içermediği için, input model `"tax": 10.5` varsayılan değerini kullanacaktır.
    
    Ve veri, bu "yeni" `tax` değeri olan `10.5` ile kaydedilecektir.
    
    ## `PATCH` ile kısmi güncellemeler { #partial-updates-with-patch }
    
    Veriyi *kısmen* güncellemek için [HTTP `PATCH`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH) operasyonunu da kullanabilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  7. docs/fr/docs/tutorial/body-updates.md

    Et les données seraient enregistrées avec cette « nouvelle » « tax » de 10.5.
    
    ## Effectuer des mises à jour partielles avec `PATCH` { #partial-updates-with-patch }
    
    Vous pouvez également utiliser l’opération [HTTP `PATCH`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH) pour mettre à jour des données de manière partielle.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/Result.java

     * <ol>
     * <li>success - in which case only the model field is set
     * <li>success with warnings - model field + non-error model problems
     * <li>error - no model, but diagnostics
     * <li>error - (partial) model and diagnostics
     * </ol>
     * Could encode these variants as subclasses, but kept in one for now
     *
     * @param <T> the model type
     * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead
     */
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Mar 26 19:31:34 GMT 2025
    - 6.9K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/body-updates.md

    ```Python
    {
        "name": "Barz",
        "price": 3,
        "description": None,
    }
    ```
    
    由於這裡沒有包含已儲存的屬性 `"tax": 20.2`,輸入的模型會採用預設值 `"tax": 10.5`。
    
    最終資料會以這個「新的」 `tax` 值 `10.5` 被儲存。
    
    ## 使用 `PATCH` 進行部分更新 { #partial-updates-with-patch }
    
    你也可以使用 [HTTP `PATCH`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH) 操作來進行*部分*更新。
    
    這表示你只需傳送想要更新的資料,其餘保持不變。
    
    /// note | 注意
    
    `PATCH` 相較於 `PUT` 較少被使用、也較不為人知。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  10. cmd/object-lambda-handlers_test.go

    	testCases := []struct {
    		name         string
    		statusCode   int
    		body         string
    		contentType  string
    		expectStatus int
    	}{
    		{
    			name:         "Success 206 Partial Content",
    			statusCode:   206,
    			body:         "partial-object-data",
    			contentType:  "text/plain",
    			expectStatus: 206,
    		},
    		{
    			name:         "Success 200 OK",
    			statusCode:   200,
    			body:         "full-object-data",
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Jul 18 21:56:31 GMT 2025
    - 5.2K bytes
    - Click Count (0)
Back to Top