Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 322 for handling (0.17 sec)

  1. docs/em/docs/how-to/custom-request-and-route.md

    âŪïļ 👈, 🌐 🏭 ⚛ 🎏.
    
    ✋ïļ â†Đïļ 👆 🔀 `GzipRequest.body`, ðŸ“Ļ 💊 🔜 🔁 🗜 🕐❔ âšŦïļ 📐 **FastAPI** 🕐❔ 💊.
    
    ## 🔐 ðŸ“Ļ 💊 ⚠ 🐕‍ðŸĶš
    
    !!! tip
        ❎ 👉 🎏 ⚠, âšŦïļ ðŸŽē 📚 âĐ ⚙ïļ `body` 🛃 🐕‍ðŸĶš `RequestValidationError` ([🚚 ❌](../tutorial/handling-errors.md#requestvalidationerror){.internal-link target=_blank}).
    
        ✋ïļ 👉 🖞 ☑ & âšŦïļ ðŸŽĶ ❔ 🔗 âŪïļ 🔗 ðŸĶē.
    
    ðŸ‘Ĩ 💊 ⚙ïļ 👉 🎏 ðŸŽŊ 🔐 ðŸ“Ļ 💊 ⚠ 🐕‍ðŸĶš.
    
    🌐 ðŸ‘Ĩ 💊 ðŸĩ ðŸ“Ļ 🔘 `try`/`except` ðŸŦ:
    
    ```Python hl_lines="13  15"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  2. internal/http/server.go

    	// DefaultMaxHeaderBytes - default maximum HTTP header size in bytes.
    	DefaultMaxHeaderBytes = 1 * humanize.MiByte
    )
    
    // Server - extended http.Server supports multiple addresses to serve and enhanced connection handling.
    type Server struct {
    	http.Server
    	Addrs           []string      // addresses on which the server listens for new connection.
    	TCPOptions      TCPOptions    // all the configurable TCP conn specific configurable options.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Feb 09 21:25:16 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

            * [Install custom exception handlers](https://fastapi.tiangolo.com/tutorial/handling-errors/#install-custom-exception-handlers).
            * [Override the default exception handlers](https://fastapi.tiangolo.com/tutorial/handling-errors/#override-the-default-exception-handlers).
            * [Re-use **FastAPI's** exception handlers](https://fastapi.tiangolo.com/tutorial/handling-errors/#re-use-fastapis-exception-handlers).
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
  4. tensorflow/c/eager/gradients.h

      AbstractTensorHandle* GetHandle() const;
    
     private:
      AbstractTensorHandle* handle_;
    };
    
    // A tracing/immediate-execution agnostic tape.
    //
    // Gradient functions defined for this tape must support handling null incoming
    // gradients.
    class Tape : protected eager::GradientTape<AbstractTensorHandle,
                                               GradientFunction, TapeTensor> {
     public:
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 26 10:27:05 GMT 2022
    - 6.9K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/concepts.md

    The main constraint to consider is that there has to be a **single** component handling the **port** in the **public IP**. And then it has to have a way to **transmit** the communication to the replicated **processes/workers**.
    
    Here are some possible combinations and strategies:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 18K bytes
    - Viewed (0)
  6. tests/embedded_struct_test.go

    	}
    }
    
    type Content struct {
    	Content interface{} `gorm:"type:String"`
    }
    
    func (c Content) Value() (driver.Value, error) {
    	// mssql driver with issue on handling null bytes https://github.com/denisenkom/go-mssqldb/issues/530,
    	b, err := json.Marshal(c)
    	return string(b[:]), err
    }
    
    func (c *Content) Scan(src interface{}) error {
    	var value Content
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Thu Oct 26 03:58:13 GMT 2023
    - 7.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

            return new File(getRepositoryPath());
        }
    
        // ===================================================================================
        //                                                                      Handling Parts
        //                                                                      ==============
        protected void prepareElementsHash() {
            elementsText = new Hashtable<>();
            elementsFile = new Hashtable<>();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  8. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java

            checkVersionParsing("RELEASE", 0, 0, 0, 0, "RELEASE");
            checkVersionParsing("2.0-1", 2, 0, 0, 1, null);
    
            // 0 at the beginning of a number has a special handling
            checkVersionParsing("02", 0, 0, 0, 0, "02");
            checkVersionParsing("0.09", 0, 0, 0, 0, "0.09");
            checkVersionParsing("0.2.09", 0, 0, 0, 0, "0.2.09");
            checkVersionParsing("2.0-01", 2, 0, 0, 0, "01");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 9.5K bytes
    - Viewed (0)
  9. internal/grid/README.md

    The MinIO Grid is a package that provides two-way communication between servers.
    It uses a single two-way connection to send and receive messages between servers.
    
    It includes built in muxing of concurrent requests as well as congestion handling for streams.
    
    Requests can be "Single Payload" or "Streamed".
    
    Use the MinIO Grid for:
    
    * Small, frequent requests with low latency requirements.
    * Long-running requests with small/medium payloads.
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/PercentEscaper.java

       * escaped.
       */
      private final boolean[] safeOctets;
    
      /**
       * Constructs a percent escaper with the specified safe characters and optional handling of the
       * space character.
       *
       * <p>Not that it is allowed, but not necessarily desirable to specify {@code %} as a safe
       * character. This has the effect of creating an escaper which has no well-defined inverse but it
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 8.7K bytes
    - Viewed (0)
Back to top