Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for platina (0.23 sec)

  1. okhttp/src/test/java/okhttp3/CallTest.kt

        assertFailsWith<IllegalArgumentException> {
          Request.Builder().method("GET", "abc".toRequestBody("text/plain".toMediaType()))
        }
      }
    
      @Test
      fun head() {
        server.enqueue(
          MockResponse(
            headers = headersOf("Content-Type", "text/plain"),
          ),
        )
        val request =
          Request.Builder()
            .url(server.url("/"))
            .head()
    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)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

            .addHeader("Content-Type: text/plain")
            .addHeader("Last-Modified: " + formatDate(-2, TimeUnit.HOURS))
            .addHeader("Expires: " + formatDate(-1, TimeUnit.HOURS))
            .build(),
        )
        server.enqueue(
          MockResponse.Builder()
            .code(HttpURLConnection.HTTP_NOT_MODIFIED)
            .addHeader("Content-Type: text/plain")
            .addHeader("Content-Encoding: gzip")
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        derived.cancel(false);
        assertTrue(primary.isCancelled());
        assertFalse(primary.wasInterrupted());
      }
    
      // catching() uses a plain Function, so there's no testCatching_resultCancelledAfterFallback().
    
      // catching() uses a plain Function, so there's no testCatching_nullInsteadOfFuture().
    
      // Some tests of the exceptionType parameter:
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        derived.cancel(false);
        assertTrue(primary.isCancelled());
        assertFalse(primary.wasInterrupted());
      }
    
      // catching() uses a plain Function, so there's no testCatching_resultCancelledAfterFallback().
    
      // catching() uses a plain Function, so there's no testCatching_nullInsteadOfFuture().
    
      // Some tests of the exceptionType parameter:
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      fun getContentTypeConnects() {
        server.enqueue(
          MockResponse(
            headers = headersOf("Content-Type", "text/plain"),
            body = "ABC",
          ),
        )
        val response = getResponse(newRequest("/"))
        assertThat(response.body.contentType()).isEqualTo(
          "text/plain".toMediaType(),
        )
        response.body.close()
      }
    
      @Test
      fun getContentEncodingConnects() {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    String, Iterable<? extends SelfDescribing>) - Method in class org.hamcrest.Description.NullDescription appendText(String) - Method in class org.hamcrest.BaseDescription appendText(String) - Method in interface org.hamcrest.Description Appends some plain text to the description. appendText(String) - Method in class org.hamcrest.Description.NullDescription appendValue(Object) - Method in class org.hamcrest.BaseDescription appendValue(Object) - Method in interface org.hamcrest.Description Appends an...
    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)
  7. api/maven-api-model/src/main/mdo/maven.mdo

              <description>
                Gives the status of this artifact in the remote repository.
                This must not be set in your local project, as it is updated by
                tools placing it in the repository. Valid values are: {@code none} (default),
                {@code converted} (repository manager converted this from an Maven 1 POM),
                {@code partner}
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // lanxess : 2015-07-30 LANXESS Corporation
    lanxess
    
    // lasalle : 2015-04-02 Jones Lang LaSalle Incorporated
    lasalle
    
    // lat : 2014-10-16 XYZ.COM LLC
    lat
    
    // latino : 2015-07-30 Dish DBS Corporation
    latino
    
    // latrobe : 2014-06-16 La Trobe University
    latrobe
    
    // law : 2015-01-22 Registry Services, LLC
    law
    
    // lawyer : 2014-03-20 Dog Beach, LLC
    lawyer
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  9. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    seldom followed it), and sometimes she scolded herself so
    severely as to bring tears into her eyes; and once she remembered
    trying to box her own ears for having cheated herself in a game
    of croquet she was playing against herself, for this curious
    child was very fond of pretending to be two people.  `But it's no
    use now,' thought poor Alice, `to pretend to be two people!  Why,
    there's hardly enough of me left to make ONE respectable
    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. android/guava/src/com/google/common/collect/Maps.java

       * normally derive from {@code Map<Object, Object>}, but they typically contain strings, which is
       * awkward. This method lets you get a plain-old-{@code Map} out of a {@code Properties}.
       *
       * @param properties a {@code Properties} object to be converted
       * @return an immutable map containing all the entries in {@code properties}
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
Back to top