Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 400 for hardlink (0.23 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/en/docs/advanced/websockets.md

    ///
    
    With that you can connect the WebSocket and then send and receive messages:
    
    <img src="/img/tutorial/websockets/image05.png">
    
    ## Handling disconnections and multiple clients { #handling-disconnections-and-multiple-clients }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  2. docs/zh/docs/how-to/custom-request-and-route.md

    如果你刚开始使用 **FastAPI**,可以先跳过本节。
    
    ///
    
    ## 使用场景 { #use-cases }
    
    一些使用场景包括:
    
    * 将非 JSON 的请求体转换为 JSON(例如 [`msgpack`](https://msgpack.org/index.html))。
    * 解压缩使用 gzip 压缩的请求体。
    * 自动记录所有请求体日志。
    
    ## 处理自定义请求体编码 { #handling-custom-request-body-encodings }
    
    来看如何用自定义的 `Request` 子类来解压 gzip 请求。
    
    以及一个 `APIRoute` 子类来使用该自定义请求类。
    
    ### 创建自定义 `GzipRequest` 类 { #create-a-custom-gziprequest-class }
    
    /// tip | 提示
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  3. src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java

    import java.io.IOException;
    import java.net.SocketException;
    import java.net.SocketTimeoutException;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * RDMA error handling and recovery logic.
     *
     * This class provides centralized error handling for RDMA operations,
     * including retry logic and fallback mechanisms.
     */
    public class RdmaErrorHandler {
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  4. docs/uk/docs/how-to/custom-request-and-route.md

    - Розпакування тіл запитів, стиснених gzip.
    - Автоматичне логування всіх тіл запитів.
    
    ## Обробка користувацьких кодувань тіла запиту { #handling-custom-request-body-encodings }
    
    Розгляньмо, як використати користувацький підклас `Request` для розпакування gzip-запитів.
    
    А також підклас `APIRoute`, щоб застосувати цей користувацький клас запиту.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  5. docs/tr/docs/how-to/custom-request-and-route.md

    * gzip ile sıkıştırılmış request body'leri açmak (decompress).
    * Tüm request body'lerini otomatik olarak loglamak.
    
    ## Özel request body encoding'lerini ele alma { #handling-custom-request-body-encodings }
    
    Gzip request'lerini açmak için özel bir `Request` alt sınıfını nasıl kullanabileceğimize bakalım.
    
    Ayrıca, o özel request sınıfını kullanmak için bir `APIRoute` alt sınıfı da oluşturacağız.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/core/timer/TimeoutTarget.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.timer;
    
    /**
     * This is an interface for handling timeouts.
     *
     * @author higa
     *
     */
    @FunctionalInterface
    public interface TimeoutTarget {
    
        /**
         * Describes the processing for a timeout.
         */
        void expired();
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat May 10 01:32:17 GMT 2025
    - 872 bytes
    - Click Count (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/BiMapTestSuiteBuilder.java

                .named(parentBuilder.getName() + " [Map]")
                .suppressing(parentBuilder.getSuppressedTests())
                .suppressing(SetCreationTester.class.getMethods())
                // BiMap.entrySet() duplicate-handling behavior is too confusing for SetCreationTester
                .withSetUp(parentBuilder.getSetUp())
                .withTearDown(parentBuilder.getTearDown())
                .createTestSuite());
        /*
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Oct 30 16:15:19 GMT 2024
    - 6.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/curl/CurlRequest.java

            return this;
        }
    
        /**
         * Connects to the URL and executes the request.
         *
         * @param actionListener the action listener for handling the response
         * @param exceptionListener the exception listener for handling exceptions
         */
        public void connect(final Consumer<HttpURLConnection> actionListener, final Consumer<Exception> exceptionListener) {
            final Runnable task = () -> {
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Sat Mar 21 09:11:12 GMT 2026
    - 19.7K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/DownloadBody.java

    import org.codelibs.fess.app.web.admin.dict.mapping.DownloadForm;
    
    /**
     * Download body for mapping dictionary API operations.
     * This class extends the DownloadForm to provide request body handling
     * for downloading mapping dictionaries via REST API.
     *
     */
    public class DownloadBody extends DownloadForm {
    
        /**
         * Default constructor.
         */
        public DownloadBody() {
            super();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.1K bytes
    - Click Count (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/MetadataUtils.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.repository.metadata;
    
    /**
     * Assists in handling repository metadata.
     *
     */
    @Deprecated
    class MetadataUtils {
    
        public static Metadata cloneMetadata(Metadata src) {
            if (src == null) {
                return null;
            }
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.1K bytes
    - Click Count (0)
Back to Top