Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for isTrue (0.17 sec)

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

        // Confirm the iterator returns those responses...
        val i: Iterator<String> = cache.urls()
        assertThat(i.hasNext()).isTrue()
        assertThat(i.next()).isEqualTo(urlA.toString())
        assertThat(i.hasNext()).isTrue()
        assertThat(i.next()).isEqualTo(urlB.toString())
        assertThat(i.hasNext()).isTrue()
        assertThat(i.next()).isEqualTo(urlC.toString())
    
        // ... and nothing else.
    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)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

    import assertk.assertions.isLessThan
    import assertk.assertions.isNotEmpty
    import assertk.assertions.isNotNull
    import assertk.assertions.isNotSameAs
    import assertk.assertions.isNull
    import assertk.assertions.isTrue
    import assertk.assertions.startsWith
    import assertk.fail
    import java.io.FileNotFoundException
    import java.io.IOException
    import java.io.InterruptedIOException
    import java.net.CookieManager
    import java.net.CookiePolicy
    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)
  3. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertThat(Thread.interrupted()).isFalse();
        ListenableFuture<Integer> future =
            submitAsync(constantAsyncCallable(cancelledFuture), directExecutor());
        assertThat(future.isDone()).isTrue();
        assertThat(Thread.interrupted()).isFalse();
      }
    
      public void testSubmit_callable_returnsValue() throws Exception {
        Callable<Integer> callable =
            new Callable<Integer>() {
    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)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertThat(Thread.interrupted()).isFalse();
        ListenableFuture<Integer> future =
            submitAsync(constantAsyncCallable(cancelledFuture), directExecutor());
        assertThat(future.isDone()).isTrue();
        assertThat(Thread.interrupted()).isFalse();
      }
    
      public void testSubmit_callable_returnsValue() throws Exception {
        Callable<Integer> callable =
            new Callable<Integer>() {
    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

    import assertk.assertions.isIn
    import assertk.assertions.isInstanceOf
    import assertk.assertions.isLessThan
    import assertk.assertions.isNotEmpty
    import assertk.assertions.isNull
    import assertk.assertions.isTrue
    import assertk.fail
    import java.io.File
    import java.io.IOException
    import java.io.InputStream
    import java.net.ConnectException
    import java.net.CookieManager
    import java.net.HttpURLConnection
    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)
  6. CHANGELOG/CHANGELOG-1.30.md

      This issue only could happen if you use custom plugins or if you change plugin set being used in your scheduler via the scheduler config. ([#122013](https:/...
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

            <!-- Issue Tracking                                                         -->
            <!-- ====================================================================== -->
    
            <field>
              <name>issueManagement</name>
              <version>4.0.0+</version>
              <description>The project's issue management system information.</description>
              <association>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.cc

            status->status = tensorflow::errors::Internal(
                "BUG: The gradients prefix have been unexpectedly altered when "
                "adding the nodes to the graph. This is a bug. Please file an "
                "issue at https://github.com/tensorflow/tensorflow/issues.");
            return;
          }
          // We have a convoluted scheme here: Using the C++ graph construction API
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    cc.vt.us
    cc.va.us
    cc.wa.us
    cc.wi.us
    cc.wv.us
    cc.wy.us
    lib.ak.us
    lib.al.us
    lib.ar.us
    lib.as.us
    lib.az.us
    lib.ca.us
    lib.co.us
    lib.ct.us
    lib.dc.us
    // lib.de.us  Issue #243 - Moved to Private section at request of Ed Moore <******@****.***>
    lib.fl.us
    lib.ga.us
    lib.gu.us
    lib.hi.us
    lib.ia.us
    lib.id.us
    lib.il.us
    lib.in.us
    lib.ks.us
    lib.ky.us
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top