Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for routes (0.28 sec)

  1. fastapi/routing.py

            app = FastAPI()
            internal_router = APIRouter()
            users_router = APIRouter()
    
            @users_router.get("/users/")
            def read_users():
                return [{"name": "Rick"}, {"name": "Morty"}]
    
            internal_router.include_router(users_router)
            app.include_router(internal_router)
            ```
            """
            if prefix:
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
  2. istioctl/pkg/authz/testdata/configdump.yaml

                   "rules": {
                    "policies": {
                     "ns[default]-policy[httpbin]-rule[0]": {
                      "permissions": [
                       {
                        "and_rules": {
                         "rules": [
                          {
                           "or_rules": {
                            "rules": [
                             {
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jun 21 14:20:23 GMT 2023
    - 206.7K bytes
    - Viewed (2)
  3. fastapi/applications.py

            ## Example
    
            ```python
            from fastapi import FastAPI
    
            from .users import users_router
    
            app = FastAPI()
    
            app.include_router(users_router)
            ```
            """
            self.router.include_router(
                router,
                prefix=prefix,
                tags=tags,
                dependencies=dependencies,
                responses=responses,
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CallTest.kt

        assertFailsWith<InterruptedIOException> {
          // If this succeeds, too many requests were made.
          client.newCall(request).execute()
        }
      }
    
      /**
       * Make a request with two routes. The first route will time out because it's connecting to a
       * special address that never connects. The automatic retry will succeed.
       */
      @Test
      fun connectTimeoutsAttemptsAlternateRoute() {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    server port number for which this route configuration was generated. type: integer vhost: description: Match a specific virtual host in a route configuration and apply the patch to the virtual host. properties: name: description: The VirtualHosts objects generated by Istio are named as host:port, where the host typically corresponds to the VirtualService's host field or the hostname of a service in the registry. type: string route: description: Match a specific route within the virtual host. properties:...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  6. CHANGELOG/CHANGELOG-1.5.md

    * bootstrap: Start hostNetwork pods even if network plugin not ready ([#33347](https://github.com/kubernetes/kubernetes/pull/33347), [@justinsb](https://github.com/justinsb))
    * Factor out post-init swagger and OpenAPI routes ([#32590](https://github.com/kubernetes/kubernetes/pull/32590), [@sttts](https://github.com/sttts))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.4.md

    * Validate volume spec before returning azure mounter ([#37018](https://github.com/kubernetes/kubernetes/pull/37018), [@rootfs](https://github.com/rootfs))
    * Networking test rewrite ([#31559](https://github.com/kubernetes/kubernetes/pull/31559), [@bprashanth](https://github.com/bprashanth))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  8. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/ResponseBody;-><init>()V
    HSPLokhttp3/ResponseBody;->close()V
    HSPLokhttp3/ResponseBody;->string()Ljava/lang/String;
    HSPLokhttp3/Route;-><init>(Lokhttp3/Address;Ljava/net/Proxy;Ljava/net/InetSocketAddress;)V
    HSPLokhttp3/Route;->hashCode()I
    HSPLokhttp3/TlsVersion;-><clinit>()V
    HSPLokhttp3/TlsVersion;-><init>(Ljava/lang/String;ILjava/lang/String;)V
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    like.'
    
      `I believe so,' Alice replied thoughtfully.  `They have their
    tails in their mouths--and they're all over crumbs.'
    
      `You're wrong about the crumbs,' said the Mock Turtle:
    `crumbs would all wash off in the sea.  But they HAVE their tails
    in their mouths; and the reason is--' here the Mock Turtle
    yawned and shut his eyes.--`Tell her about the reason and all
    that,' he said to the Gryphon.
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    like.'
    
      `I believe so,' Alice replied thoughtfully.  `They have their
    tails in their mouths--and they're all over crumbs.'
    
      `You're wrong about the crumbs,' said the Mock Turtle:
    `crumbs would all wash off in the sea.  But they HAVE their tails
    in their mouths; and the reason is--' here the Mock Turtle
    yawned and shut his eyes.--`Tell her about the reason and all
    that,' he said to the Gryphon.
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
Back to top