Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for ve (0.18 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `Serpent, I say again!' repeated the Pigeon, but in a more
    subdued tone, and added with a kind of sob, `I've tried every
    way, and nothing seems to suit them!'
    
      `I haven't the least idea what you're talking about,' said
    Alice.
    
      `I've tried the roots of trees, and I've tried banks, and I've
    tried hedges,' the Pigeon went on, without attending to her; `but
    those serpents!  There's no pleasing them!'
    
    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)
  2. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `Serpent, I say again!' repeated the Pigeon, but in a more
    subdued tone, and added with a kind of sob, `I've tried every
    way, and nothing seems to suit them!'
    
      `I haven't the least idea what you're talking about,' said
    Alice.
    
      `I've tried the roots of trees, and I've tried banks, and I've
    tried hedges,' the Pigeon went on, without attending to her; `but
    those serpents!  There's no pleasing them!'
    
    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)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    org.vc
    gov.vc
    mil.vc
    edu.vc
    
    // ve : https://registro.nic.ve/
    // Submitted by registry nic@nic.ve and ******@****.***.ve
    ve
    arts.ve
    bib.ve
    co.ve
    com.ve
    e12.ve
    edu.ve
    firm.ve
    gob.ve
    gov.ve
    info.ve
    int.ve
    mil.ve
    net.ve
    nom.ve
    org.ve
    rar.ve
    rec.ve
    store.ve
    tec.ve
    web.ve
    
    // vg : https://en.wikipedia.org/wiki/.vg
    vg
    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)
  4. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

              ListenableFuture<String> jFuture = inputs.allFutures.get(j).future;
              ListenableFuture<List<String>> future = merger.merged(iFuture, jFuture);
    
              // Test timed get before we've completed any delayed futures.
              try {
                List<String> result = future.get(0, MILLISECONDS);
                assertTrue("Got " + result, asList("a", null).containsAll(result));
    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)
  5. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

              ListenableFuture<String> jFuture = inputs.allFutures.get(j).future;
              ListenableFuture<List<String>> future = merger.merged(iFuture, jFuture);
    
              // Test timed get before we've completed any delayed futures.
              try {
                List<String> result = future.get(0, MILLISECONDS);
                assertTrue("Got " + result, asList("a", null).containsAll(result));
    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)
  6. src/main/resources/fess_indices/_aws/fess.json

    "strana", "jeho", "své", "jiné", "zprávy", "nové", "není", "vás", "jen", "podle", "zde", "už", "být", "více", "bude", "již", "než", "který", "by", "které", "co", "nebo", "ten", "tak", "má", "při", "od", "po", "jsou", "jak", "další", "ale", "si", "se", "ve", "to", "jako", "za", "zpět", "ze", "do", "pro", "je", "na", "atd", "atp", "jakmile", "přičemž", "já", "on", "ona", "ono", "oni", "ony", "my", "vy", "jí", "ji", "mě", "mne", "jemu", "tomu", "těm", "těmu", "němu", "němuž", "jehož", "jíž", "jelikož",...
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * result cursor will both be closed, even if the operation is cancelled or fails.
     *
     * <h4>Manually closing</h4>
     *
     * If you want to close the captured objects manually, after you've used the final result, call
     * {@link #finishToValueAndCloser(ValueAndCloserConsumer, Executor)} to get an object that holds the
     * final result. You then call {@link ValueAndCloser#closeAsync()} to close the captured objects.
     *
    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)
  8. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertThat(cache.hitCount()).isEqualTo(2)
        assertThat(response2.handshake!!.cipherSuite).isEqualTo(
          response1.handshake!!.cipherSuite,
        )
      }
    
      /**
       * We've had bugs where caching and cross-protocol redirects yield class cast exceptions internal
       * to the cache because we incorrectly assumed that HttpsURLConnection was always HTTPS and
    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)
  9. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          "FGHIJKLMNOPQRSTUVWXYZ",
        )
        inputStream.close()
        assertContent("ABCDEFGHIJKLMNOPQRSTUVWXYZ", getResponse(newRequest("/")))
      }
    
      /**
       * We've had a bug where we forget the HTTP response when we see response code 401. This causes a
       * new HTTP request to be issued for every call into the URLConnection.
       */
      @Test
      fun unauthorizedResponseHandling() {
    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)
  10. src/main/resources/fess_indices/_cloud/fess.json

    "strana", "jeho", "své", "jiné", "zprávy", "nové", "není", "vás", "jen", "podle", "zde", "už", "být", "více", "bude", "již", "než", "který", "by", "které", "co", "nebo", "ten", "tak", "má", "při", "od", "po", "jsou", "jak", "další", "ale", "si", "se", "ve", "to", "jako", "za", "zpět", "ze", "do", "pro", "je", "na", "atd", "atp", "jakmile", "přičemž", "já", "on", "ona", "ono", "oni", "ony", "my", "vy", "jí", "ji", "mě", "mne", "jemu", "tomu", "těm", "těmu", "němu", "němuž", "jehož", "jíž", "jelikož",...
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 117.3K bytes
    - Viewed (0)
Back to top