Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 316 for Langen (0.2 sec)

  1. cmd/s3-zip-handlers.go

    	}
    
    	defer rc.Close()
    
    	if err = setObjectHeaders(w, fileObjInfo, nil, opts); err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    	// s3zip does not allow ranges
    	w.Header().Del(xhttp.AcceptRanges)
    
    	setHeadGetRespHeaders(w, r.Form)
    
    	httpWriter := xioutil.WriteOnClose(w)
    
    	// Write object content to response body
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 09 10:41:25 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  2. cmd/warm-backend.go

    	"errors"
    	"fmt"
    	"io"
    	"strings"
    
    	"github.com/minio/madmin-go/v3"
    	xhttp "github.com/minio/minio/internal/http"
    )
    
    // WarmBackendGetOpts is used to express byte ranges within an object. The zero
    // value represents the entire byte range of an object.
    type WarmBackendGetOpts struct {
    	startOffset int64
    	length      int64
    }
    
    // WarmBackend provides interface to be implemented by remote tier backends
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  3. docs/en/docs/how-to/custom-request-and-route.md

    In particular, this may be a good alternative to logic in a middleware.
    
    For example, if you want to read or manipulate the request body before it is processed by your application.
    
    !!! danger
        This is an "advanced" feature.
    
        If you are just starting with **FastAPI** you might want to skip this section.
    
    ## Use cases
    
    Some use cases include:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Mar 31 23:52:53 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  4. docs/em/docs/how-to/custom-request-and-route.md

    # ๐Ÿ›ƒ ๐Ÿ“จ & APIRoute ๐ŸŽ“
    
    ๐Ÿ’ผ, ๐Ÿ‘† 5๏ธโƒฃ๐Ÿ“† ๐Ÿ’š ๐Ÿ” โš› โš™๏ธ `Request` & `APIRoute` ๐ŸŽ“.
    
    ๐ŸŽฏ, ๐Ÿ‘‰ 5๏ธโƒฃ๐Ÿ“† ๐Ÿ‘ ๐ŸŽ› โš› ๐Ÿ› ๏ธ.
    
    ๐Ÿ–ผ, ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ’š โœ โš–๏ธ ๐Ÿ”ฌ ๐Ÿ“จ ๐Ÿ’ช โญ โšซ๏ธ ๐Ÿ› ๏ธ ๐Ÿ‘† ๐Ÿˆธ.
    
    !!! danger
        ๐Ÿ‘‰ "๐Ÿง" โš’.
    
        ๐Ÿšฅ ๐Ÿ‘† โ–ถ๏ธ โฎ๏ธ **FastAPI** ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ’š ๐Ÿšถ ๐Ÿ‘‰ ๐Ÿ“„.
    
    ## โš™๏ธ ๐Ÿ’ผ
    
    โš™๏ธ ๐Ÿ’ผ ๐Ÿ”Œ:
    
    * ๐Ÿญ ๐Ÿšซ-๐ŸŽป ๐Ÿ“จ ๐Ÿ’ช ๐ŸŽป (โœ… <a href="https://msgpack.org/index.html" class="external-link" target="_blank">`msgpack`</a>).
    * ๐Ÿ—œ ๐Ÿ—œ-๐Ÿ—œ ๐Ÿ“จ ๐Ÿ’ช.
    * ๐Ÿ” ๐Ÿšจ ๐ŸŒ ๐Ÿ“จ ๐Ÿ’ช.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/platform/OpenJSSEPlatform.kt

     */
    class OpenJSSEPlatform private constructor() : Platform() {
      private val provider: Provider = org.openjsse.net.ssl.OpenJSSE()
    
      // Selects TLSv1.3 so we are specific about our intended version ranges (not just 1.3)
      // and because it's a common pattern for VMs to have differences between supported and
      // defaulted versions for TLS based on what is requested.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/openapi-webhooks.md

    ```Python hl_lines="9-13  36-53"
    {!../../../docs_src/openapi_webhooks/tutorial001.py!}
    ```
    
    Die von Ihnen definierten Webhooks landen im **OpenAPI**-Schema und der automatischen **Dokumentations-Oberflรคche**.
    
    !!! info
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Jan 23 13:06:03 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  7. internal/http/lambda-headers.go

    	AmzFwdHeaderAcceptRanges       = "x-amz-fwd-header-accept-ranges"
    	AmzFwdHeaderCacheControl       = "x-amz-fwd-header-Cache-Control"
    	AmzFwdHeaderContentDisposition = "x-amz-fwd-header-Content-Disposition"
    	AmzFwdHeaderContentEncoding    = "x-amz-fwd-header-Content-Encoding"
    	AmzFwdHeaderContentLanguage    = "x-amz-fwd-header-Content-Language"
    	AmzFwdHeaderContentRange       = "x-amz-fwd-header-Content-Range"
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Mar 07 16:12:41 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/query-params-str-validations.md

        Der Teil mit `Union[str, None]` erlaubt es Ihrem Editor, Sie besser zu unterstรผtzen, aber er sagt FastAPI nicht, dass dieser Parameter optional ist.
    
    Jetzt kรถnnen wir `Query` weitere Parameter รผbergeben. Fangen wir mit dem `max_length` Parameter an, der auf Strings angewendet wird:
    
    ```Python
    q: Union[str, None] = Query(default=None, max_length=50)
    ```
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 17:58:59 GMT 2024
    - 27.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/package-info.java

     *   <dt>{@link ClassToInstanceMap}
     *   <dd>An extension of {@link java.util.Map} that associates a raw type with an instance of that
     *       type.
     * </dl>
     *
     * <h2>Ranges</h2>
     *
     * <ul>
     *   <li>{@link Range}
     *   <li>{@link RangeMap}
     *   <li>{@link RangeSet}
     *   <li>{@link DiscreteDomain}
     *   <li>{@link ContiguousSet}
     * </ul>
     *
     * <h2>Classes of static utility methods</h2>
     *
     * <ul>
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Jul 06 16:29:45 GMT 2023
    - 5K bytes
    - Viewed (0)
  10. docs/logging/README.md

        "X-Amz-Date": "20211008T004636Z",
        "X-Amz-Decoded-Content-Length": "207",
        "X-Amz-Server-Side-Encryption": "aws:kms"
      },
      "responseHeader": {
        "Accept-Ranges": "bytes",
        "Content-Length": "0",
        "ETag": "4939450d1beec11e10a91ee7700bb593",
        "Server": "MinIO",
        "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
        "Vary": "Origin,Accept-Encoding",
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Aug 15 23:04:20 GMT 2023
    - 9.9K bytes
    - Viewed (0)
Back to top