Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 792 for Routing (0.17 sec)

  1. src/syscall/types_openbsd.go

    	PTRACE_CONT    = C.PT_CONTINUE
    	PTRACE_KILL    = C.PT_KILL
    )
    
    // Events (kqueue, kevent)
    
    type Kevent_t C.struct_kevent
    
    // Select
    
    type FdSet C.fd_set
    
    // Routing and interface messages
    
    const (
    	SizeofIfMsghdr         = C.sizeof_struct_if_msghdr
    	SizeofIfData           = C.sizeof_struct_if_data
    	SizeofIfaMsghdr        = C.sizeof_struct_ifa_msghdr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5K bytes
    - Viewed (0)
  2. docs/en/docs/benchmarks.md

        * But it provides you the tools to build simple web applications, with routing based on paths, etc.
        * If you are comparing Starlette, compare it against Sanic, Flask, Django, etc. Web frameworks (or microframeworks).
    * **FastAPI**:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/syscall/types_darwin.go

    	PTRACE_CONT    = C.PT_CONTINUE
    	PTRACE_KILL    = C.PT_KILL
    )
    
    // Events (kqueue, kevent)
    
    type Kevent_t C.struct_kevent
    
    // Select
    
    type FdSet C.fd_set
    
    // Routing and interface messages
    
    const (
    	SizeofIfMsghdr    = C.sizeof_struct_if_msghdr
    	SizeofIfData      = C.sizeof_struct_if_data
    	SizeofIfaMsghdr   = C.sizeof_struct_ifa_msghdr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5K bytes
    - Viewed (0)
  4. fastapi/applications.py

                    [FastAPI docs for Testing Dependencies with Overrides](https://fastapi.tiangolo.com/advanced/testing-dependencies/).
                    """
                ),
            ] = {}
            self.router: routing.APIRouter = routing.APIRouter(
                routes=routes,
                redirect_slashes=redirect_slashes,
                dependency_overrides_provider=self,
                on_startup=on_startup,
                on_shutdown=on_shutdown,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/bench_test.go

    		// virtual services and gateways, where routing is determined by hostname, meaning we generate N routes for HTTPS.
    		Name:      "gateways",
    		Services:  1000,
    		ProxyType: model.Router,
    	},
    	{
    		// Gateways-shared provides an example config for a large Ingress deployment. This will create N
    		// virtual services and gateways, where routing is determined by path. This means there will be a single large route.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util.go

    // Once Envoy supports client-side ALPN negotiation, this should be {"istio", "h2", "http/1.1"}.
    var ALPNInMeshH2 = pm.ALPNInMeshH2
    
    // ALPNInMeshH2WithMxc advertises that Proxy is going to use HTTP/2 when talking to the in-mesh cluster.
    // The custom "istio" value indicates in-mesh traffic and it's going to be used for routing decisions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. src/syscall/types_dragonfly.go

    	PTRACE_CONT    = C.PT_CONTINUE
    	PTRACE_KILL    = C.PT_KILL
    )
    
    // Events (kqueue, kevent)
    
    type Kevent_t C.struct_kevent
    
    // Select
    
    type FdSet C.fd_set
    
    // Routing and interface messages
    
    const (
    	SizeofIfMsghdr         = C.sizeof_struct_if_msghdr
    	SizeofIfData           = C.sizeof_struct_if_data
    	SizeofIfaMsghdr        = C.sizeof_struct_ifa_msghdr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5K bytes
    - Viewed (0)
  8. src/syscall/types_netbsd.go

    	PTRACE_CONT    = C.PT_CONTINUE
    	PTRACE_KILL    = C.PT_KILL
    )
    
    // Events (kqueue, kevent)
    
    type Kevent_t C.struct_kevent
    
    // Select
    
    type FdSet C.fd_set
    
    // Routing and interface messages
    
    const (
    	SizeofIfMsghdr         = C.sizeof_struct_if_msghdr
    	SizeofIfData           = C.sizeof_struct_if_data
    	SizeofIfaMsghdr        = C.sizeof_struct_ifa_msghdr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/templates/clusterrole.yaml

      # auto-detect installed CRD definitions
      - apiGroups: ["apiextensions.k8s.io"]
        resources: ["customresourcedefinitions"]
        verbs: ["get", "list", "watch"]
    
      # discovery and routing
      - apiGroups: [""]
        resources: ["pods", "nodes", "services", "namespaces", "endpoints"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["discovery.k8s.io"]
        resources: ["endpointslices"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. samples/helloworld/README.md

    # Helloworld service
    
    This sample includes two versions of a simple helloworld service that returns its version
    and instance (hostname) when called.
    It can be used as a test service when experimenting with version routing.
    
    This service is also used to demonstrate canary deployments working in conjunction with autoscaling.
    See [Canary deployments using Istio](https://istio.io/blog/2017/0.1-canary).
    
    ## Start the helloworld service
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top