Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,846 for req_ext (0.16 sec)

  1. docs/en/docs/reference/request.md

    # `Request` class
    
    You can declare a parameter in a *path operation function* or dependency to be of type `Request` and then you can access the raw request object directly, without any validation, etc.
    
    You can import it directly from `fastapi`:
    
    ```python
    from fastapi import Request
    ```
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 516 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/request/Request.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.suggest.request;
    
    import org.codelibs.fess.suggest.concurrent.Deferred;
    import org.codelibs.fess.suggest.exception.SuggesterException;
    import org.opensearch.client.Client;
    import org.opensearch.core.common.Strings;
    
    public abstract class Request<T extends Response> {
        public Deferred<T>.Promise execute(final Client client) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Request.java

    package jcifs.util.transport;
    
    
    /**
     * 
     *
     */
    public interface Request extends Message {
    
        /**
         * @return number of credits this request requires
         */
        int getCreditCost ();
    
    
        /**
         * @param credits
         */
        void setRequestCredits ( int credits );
    
    
        /**
         * @return whether this is a cancel request
         */
        boolean isCancel ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/app/request.go

    // must not be added in this command. Otherwise, it'd break istioctl proxy-config,
    // which interprets the output literally as json document.
    var (
    	requestCmd = &cobra.Command{
    		Use:   "request <method> <path> [<body>]",
    		Short: "Makes an HTTP request to the Envoy admin API",
    		Args:  cobra.MinimumNArgs(2),
    		PreRunE: func(cmd *cobra.Command, args []string) error {
    			if !allowedPorts.Contains(debugRequestPort) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:05 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/Request.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.request;
    
    import com.google.common.base.Preconditions;
    import org.gradle.internal.operations.BuildOperationRef;
    
    public class Request {
        private final Object arg;
        private final BuildOperationRef buildOperation;
    
        public Request(Object arg, BuildOperationRef buildOperation) {
            Preconditions.checkNotNull(buildOperation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. pkg/probe/http/request.go

    	"k8s.io/component-base/version"
    	"k8s.io/kubernetes/pkg/probe"
    )
    
    // NewProbeRequest returns an http.Request suitable for use as a request for a
    // probe.
    func NewProbeRequest(url *url.URL, headers http.Header) (*http.Request, error) {
    	return newProbeRequest(url, headers, "probe")
    }
    
    // NewRequestForHTTPGetAction returns an http.Request derived from httpGet.
    // When httpGet.Host is empty, podIP will be used instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 07:39:55 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/Request.java

     */
    package jcifs.internal;
    
    
    import jcifs.CIFSContext;
    
    
    /**
     * @author mbechler
     * @param <T>
     *            response type
     *
     */
    public interface Request <T extends CommonServerMessageBlockResponse> extends CommonServerMessageBlockRequest {
    
        /**
         * 
         * @param tc
         * @return the initialized response
         * @internal
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/audit/request.go

    		}
    		if ok {
    			obj = copy
    		}
    	}
    
    	// TODO(audit): hook into the serializer to avoid double conversion
    	var err error
    	ae.RequestObject, err = encodeObject(obj, objGV, s)
    	if err != nil {
    		// TODO(audit): add error slice to audit event struct
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/util/transport/Request.java

    package jcifs.smb1.util.transport;
    
    public interface Request {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 65 bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/request-files.md

    # Dateien im Request
    
    Mit `File` können sie vom Client hochzuladende Dateien definieren.
    
    !!! info
        Um hochgeladene Dateien zu empfangen, installieren Sie zuerst <a href="https://andrew-d.github.io/python-multipart/" class="external-link" target="_blank">`python-multipart`</a>.
    
        Z. B. `pip install python-multipart`.
    
        Das, weil hochgeladene Dateien als „Formulardaten“ gesendet werden.
    
    ## `File` importieren
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:58:08 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top