Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for any (1.64 sec)

  1. fastapi/routing.py

                )
            return response
    
        return app
    
    
    def get_websocket_app(
        dependant: Dependant, dependency_overrides_provider: Optional[Any] = None
    ) -> Callable[[WebSocket], Coroutine[Any, Any, Any]]:
        async def app(websocket: WebSocket) -> None:
            async with AsyncExitStack() as async_exit_stack:
                # TODO: remove this scope later, after a few releases
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

      /**
       * Starts specifying how to combine {@link ClosingFuture}s into a single pipeline, assuming they
       * all succeed. If any fail, the resulting pipeline will fail.
       *
       * @throws IllegalStateException if a {@code ClosingFuture} has already been derived from any of
       *     the {@code futures}, or if any has already been {@linkplain #finishToFuture() finished}
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    org.hamcrest.core.AnyOf Creates a matcher that matches if the examined object matches ANY of the specified matchers. anyOf(Matcher<? super T>...) - Static method in class org.hamcrest.core.AnyOf Creates a matcher that matches if the examined object matches ANY of the specified matchers. anyOf(Matcher<T>, Matcher<? super T>) - Static method in class org.hamcrest.core.AnyOf Creates a matcher that matches if the examined object matches ANY of the specified matchers. anyOf(Matcher<T>, Matcher<? super T>, Matcher<?...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  4. fastapi/applications.py

                ),
            ] = None,
            exception_handlers: Annotated[
                Optional[
                    Dict[
                        Union[int, Type[Exception]],
                        Callable[[Request, Any], Coroutine[Any, Any, Response]],
                    ]
                ],
                Doc(
                    """
                    A dictionary with handlers for exceptions.
    
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    Univeristy" appear in their name, without prior written permission of the Indiana University. THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS, COPYRIGHT HOLDERS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 200.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    her head!' about once in a minute.
    
      Alice began to feel very uneasy:  to be sure, she had not as
    yet had any dispute with the Queen, but she knew that it might
    happen any minute, `and then,' thought she, `what would become of
    me?  They're dreadfully fond of beheading people here; the great
    wonder is, that there's any one left alive!'
    
      She was looking about for some way of escape, and wondering
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    her head!' about once in a minute.
    
      Alice began to feel very uneasy:  to be sure, she had not as
    yet had any dispute with the Queen, but she knew that it might
    happen any minute, `and then,' thought she, `what would become of
    me?  They're dreadfully fond of beheading people here; the great
    wonder is, that there's any one left alive!'
    
      She was looking about for some way of escape, and wondering
    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)
  9. doc/go1.17_spec.html

    an explicit call to <code>panic</code> or a <a href="#Run_time_panics">run-time panic</a>
    terminates the execution of <code>F</code>.
    Any functions <a href="#Defer_statements">deferred</a> by <code>F</code>
    are then executed as usual.
    Next, any deferred functions run by <code>F's</code> caller are run,
    and so on up to any deferred by the top-level function in the executing goroutine.
    At that point, the program is terminated and the error
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

       * Maps#asMap(Set, Function)}.
       *
       * @throws NullPointerException if any element of {@code keys} is {@code null}, or if {@code
       *     valueFunction} produces {@code null} for any key
       * @since 14.0
       */
      public static <K, V> ImmutableMap<K, V> toMap(
          Iterable<K> keys, Function<? super K, V> valueFunction) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
Back to top