Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Doesn (0.27 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

       * and its views. When given a value that doesn't satisfy the predicate, the bimap's {@code
       * put()}, {@code forcePut()} and {@code putAll()} methods throw an {@link
       * IllegalArgumentException}. Similarly, the map's entries have a {@link Entry#setValue} method
       * that throws an {@link IllegalArgumentException} when the provided value doesn't satisfy the
       * predicate.
       *
    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)
  2. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    thinking over all the children she knew that were of the same age
    as herself, to see if she could have been changed for any of
    them.
    
      `I'm sure I'm not Ada,' she said, `for her hair goes in such
    long ringlets, and mine doesn't go in ringlets at all; and I'm
    sure I can't be Mabel, for I know all sorts of things, and she,
    oh! she knows such a very little!  Besides, SHE'S she, and I'm I,
    and--oh dear, how puzzling it all is!  I'll try if I know all the
    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)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

          MockResponse.Builder()
            .body(gzippedBody)
            .addHeader("Content-Encoding: gzip")
            .build(),
        )
    
        // Confirm that the user request doesn't have Accept-Encoding, and the user
        // response doesn't have a Content-Encoding or Content-Length.
        val userResponse = executeSynchronously("/")
        userResponse.assertCode(200)
          .assertRequestHeader("Accept-Encoding")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  4. fastapi/routing.py

                # as is just because it's an instance of a subclass of a more limited class
                # e.g. UserInDB (containing hashed_password) could be a subclass of User
                # that doesn't have the hashed_password. But because it's a subclass, it
                # would pass the validation and be returned as is.
                # By being a new field, no inheritance will be passed as is. A new model
    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)
  5. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    thinking over all the children she knew that were of the same age
    as herself, to see if she could have been changed for any of
    them.
    
      `I'm sure I'm not Ada,' she said, `for her hair goes in such
    long ringlets, and mine doesn't go in ringlets at all; and I'm
    sure I can't be Mabel, for I know all sorts of things, and she,
    oh! she knows such a very little!  Besides, SHE'S she, and I'm I,
    and--oh dear, how puzzling it all is!  I'll try if I know all the
    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)
  6. fastapi/applications.py

            ] = Default(JSONResponse),
            redirect_slashes: Annotated[
                bool,
                Doc(
                    """
                    Whether to detect and redirect slashes in URLs when the client doesn't
                    use the same format.
    
                    **Example**
    
                    ```python
                    from fastapi import FastAPI
    
    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)
  7. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertCached(true, 404)
        assertCached(true, 405)
        assertCached(false, 406)
        assertCached(false, 408)
        assertCached(false, 409)
        // the HTTP spec permits caching 410s, but the RI doesn't.
        assertCached(true, 410)
        assertCached(false, 411)
        assertCached(false, 412)
        assertCached(false, 413)
        assertCached(true, 414)
        assertCached(false, 415)
        assertCached(false, 416)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertContent("abc", response)
        assertThat(server.takeRequest().body.readUtf8()).isEqualTo("body")
      }
    
      // Check that if we don't read to the end of a response, the next request on the
      // recycled connection doesn't get the unread tail of the first request's response.
      // http://code.google.com/p/android/issues/detail?id=2939
      @Test
      fun bug2939() {
        val response =
          MockResponse.Builder()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * Start a {@code ClosingFuture} pipeline {@linkplain #submit(ClosingCallable, Executor) from a
     * callable block} that may capture objects for later closing. To start a pipeline from a {@link
     * ListenableFuture} that doesn't create resources that should be closed later, you can use {@link
     * #from(ListenableFuture)} instead.
     *
     * <h3>Derived steps</h3>
     *
    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)
  10. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public void testTransformExceptionRemainsMemoized() throws Throwable {
        // We need to test with two input futures since ExecutionList.execute
        // doesn't catch Errors and we cannot depend on the order that our
        // transformations run. (So it is possible that the Error being thrown
        // could prevent our second transformations from running).
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
Back to top