Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 792 for Routing (0.13 sec)

  1. docs/es/docs/benchmarks.md

        * Pero te proporciona las herramientas para crear aplicaciones web simples, con <abbr title="también conocido en español como: enrutamiento">routing</abbr> basado en <abbr title="tambien conocido en español como: rutas">paths</abbr>, etc.
        * Si estás comparando Starlette, compáralo con Sanic, Flask, Django, etc. Frameworks web (o microframeworks).
    * **FastAPI**:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 07 11:39:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. tools/packaging/common/sidecar.env

    # every inbound packet to be redirected to Envoy.
    # If not set, defaults to "1337".
    # ISTIO_INBOUND_TPROXY_MARK=1337
    
    # When the interception mode is "TPROXY", the number of the routing table that
    # is configured and used to route inbound connections to the loopback interface
    # in order to be redirected to Envoy.
    # If not set, defaults to "133".
    # ISTIO_INBOUND_TPROXY_ROUTE_TABLE=133
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  3. docs/en/docs/how-to/custom-request-and-route.md

    ```Python hl_lines="8-15"
    {!../../../docs_src/custom_request_and_route/tutorial001.py!}
    ```
    
    ### Create a custom `GzipRoute` class
    
    Next, we create a custom subclass of `fastapi.routing.APIRoute` that will make use of the `GzipRequest`.
    
    This time, it will overwrite the method `APIRoute.get_route_handler()`.
    
    This method returns a function. And that function is what will receive a request and return a response.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. pkg/kube/inject/inject.go

    	// Skip injection when host networking is enabled. The problem is
    	// that the iptables changes are assumed to be within the pod when,
    	// in fact, they are changing the routing at the host level. This
    	// often results in routing failures within a node which can
    	// affect the network provider within the cluster causing
    	// additional pod failures.
    	if podSpec.HostNetwork {
    		return false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/address.go

    //go:build darwin || dragonfly || freebsd || netbsd || openbsd
    
    package route
    
    import (
    	"runtime"
    	"syscall"
    )
    
    // An Addr represents an address associated with packet routing.
    type Addr interface {
    	// Family returns an address family.
    	Family() int
    }
    
    // A LinkAddr represents a link-layer address.
    type LinkAddr struct {
    	Index int    // interface index when attached
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. pkg/test/framework/components/authz/kubelocal.go

    	server.id = ctx.TrackResource(server)
    
    	// Install the providers in MeshConfig.
    	if err = server.installProviders(ctx); err != nil {
    		return
    	}
    
    	// Install a ServiceEntry for each provider to configure routing to the local provider host.
    	err = server.installServiceEntries(ctx)
    	return
    }
    
    type localServerImpl struct {
    	id        resource.ID
    	ns        namespace.Instance
    	providers []Provider
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  7. docs/de/docs/how-to/custom-request-and-route.md

    ```Python hl_lines="8-15"
    {!../../../docs_src/custom_request_and_route/tutorial001.py!}
    ```
    
    ### Eine benutzerdefinierte `GzipRoute`-Klasse erstellen
    
    Als Nächstes erstellen wir eine benutzerdefinierte Unterklasse von `fastapi.routing.APIRoute`, welche `GzipRequest` nutzt.
    
    Dieses Mal wird die Methode `APIRoute.get_route_handler()` überschrieben.
    
    Diese Methode gibt eine Funktion zurück. Und diese Funktion empfängt einen Request und gibt eine Response zurück.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:23 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. fastapi/utils.py

    from pydantic import BaseModel, create_model
    from pydantic.fields import FieldInfo
    from typing_extensions import Literal
    
    if TYPE_CHECKING:  # pragma: nocover
        from .routing import APIRoute
    
    # Cache for `create_cloned_field`
    _CLONED_TYPES_CACHE: MutableMapping[
        Type[BaseModel], Type[BaseModel]
    ] = WeakKeyDictionary()
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.yaml

        level: Error
        description: "Virtual service using JWT claim based routing without request authentication."
        template: "The virtual service uses the JWT claim based routing (key: %s) but found no request authentication for the gateway (%s) pod (%s). The request authentication must first be applied for the gateway pods to validate the JWT token and make the claims available for routing."
        args:
          - name: key
            type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. src/syscall/types_freebsd.go

    	PTRACE_CONT    = C.PT_CONTINUE
    	PTRACE_KILL    = C.PT_KILL
    )
    
    // Events (kqueue, kevent)
    
    type Kevent_t C.struct_kevent_freebsd11
    
    // Select
    
    type FdSet C.fd_set
    
    // Routing and interface messages
    
    const (
    	sizeofIfMsghdr         = C.sizeof_struct_if_msghdr
    	SizeofIfMsghdr         = C.sizeof_struct_if_msghdr8
    	sizeofIfData           = C.sizeof_struct_if_data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 6.7K bytes
    - Viewed (0)
Back to top