Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 1,101 for handles (0.04 sec)

  1. cmd/handler-utils_test.go

    Harshavardhana <******@****.***> 1744208919 -0700
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 09 14:28:39 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java

            this.retryDelayMs = retryDelayMs;
        }
    
        /**
         * Create error handler with default settings
         *
         * @param statistics statistics tracker
         */
        public RdmaErrorHandler(RdmaStatistics statistics) {
            this(statistics, 3, 1000); // 3 retries with 1 second delay
        }
    
        /**
         * Handle RDMA connection error and attempt recovery
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/dependencies/dependencies-with-yield.md

        Note over dep: Ejecutar código hasta yield
        opt raise Exception
            dep -->> handler: Lanzar Exception
            handler -->> client: Response HTTP de error
        end
        dep ->> operation: Ejecutar dependencia, por ejemplo, sesión de BD
        opt raise
            operation -->> dep: Lanzar Exception (por ejemplo, HTTPException)
            opt handle
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java

            if (logger.isDebugEnabled()) {
                logger.debug("Loaded {}", origin);
            }
            handerMap.put(origin, handler);
        }
    
        /**
         * Gets the CORS handler for the specified origin.
         * If no specific handler is found, returns the wildcard handler.
         *
         * @param origin the origin to look up
         * @return the CORS handler for the origin, or null if none found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  5. cmd/metrics-router.go

    		auth = NoAuthMiddleware
    	}
    
    	metricsRouter.Handle(prometheusMetricsPathLegacy, auth(metricsHandler()))
    	metricsRouter.Handle(prometheusMetricsV2ClusterPath, auth(metricsServerHandler()))
    	metricsRouter.Handle(prometheusMetricsV2BucketPath, auth(metricsBucketHandler()))
    	metricsRouter.Handle(prometheusMetricsV2NodePath, auth(metricsNodeHandler()))
    	metricsRouter.Handle(prometheusMetricsV2ResourcePath, auth(metricsResourceHandler()))
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Jul 15 16:28:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. cmd/api-router.go

    	return h&flag != 0
    }
    
    // s3APIMiddleware - performs some common handler functionality for S3 API
    // handlers.
    //
    // It is set per-"handler function registration" in the router to allow for
    // behavior modification via flags.
    //
    // This middleware always calls `collectAPIStats` to collect API stats.
    //
    // The passed in handler function must be a method of `objectAPIHandlers` for
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed May 07 15:37:12 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  7. cmd/bucket-handlers_test.go

    	if err != nil {
    		t.Fatalf("Test %s: Failed to create HTTP request for RemoveBucketHandler: <ERROR> %v", instanceType, err)
    	}
    	// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    	// Call the ServeHTTP to execute the handler.
    	apiRouter.ServeHTTP(rec, req)
    	switch rec.Code {
    	case http.StatusOK, http.StatusCreated, http.StatusAccepted, http.StatusNoContent:
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 39.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    - Kube-proxy handles Terminating EndpointSlices conditions and enables zero downtime deployments for Services with ExternalTrafficPolicy=Local author: @andrewsykim ([#117718](https://github.com/kubernetes/kubernetes/pull/117718), [@aojea](https://github.com/aojea)) [SIG...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Oct 23 20:13:20 UTC 2024
    - 456.9K bytes
    - Viewed (1)
  9. doc/next/6-stdlib/99-minor/log/slog/65954.md

    [`MultiHandler`](/pkg/log/slog#MultiHandler) that invokes all the given Handlers.
    Its `Enable` method reports whether any of the handlers' `Enabled` methods
    return true.
    Its `Handle`, `WithAttr` and `WithGroup` methods call the corresponding method
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Sep 04 18:07:44 UTC 2025
    - 356 bytes
    - Viewed (0)
  10. api/next/65954.txt

    pkg log/slog, func NewMultiHandler(...Handler) *MultiHandler #65954
    pkg log/slog, method (*MultiHandler) Enabled(context.Context, Level) bool #65954
    pkg log/slog, method (*MultiHandler) Handle(context.Context, Record) error #65954
    pkg log/slog, method (*MultiHandler) WithAttrs([]Attr) Handler #65954
    pkg log/slog, method (*MultiHandler) WithGroup(string) Handler #65954
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Sep 04 18:07:44 UTC 2025
    - 417 bytes
    - Viewed (0)
Back to top