Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1711 - 1720 of 1,909 for Pong (0.03 sec)

  1. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

            });
            final OpenSearchResultList<T> targetList = new OpenSearchResultList<>();
            final SearchHits hits = response.getHits();
            final TotalHits totalHits = hits.getTotalHits();
            final long totalHitsValue = totalHits != null ? totalHits.value : 0;
            targetList.setTotalHits(totalHitsValue);
            targetList.setTookInMillis(response.getTook().getMillis());
            if (totalHitsValue != 0) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Nov 07 04:44:10 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt

      }
    
      private fun assertEvents(vararg expected: String) {
        val actual = generateSequence { routePlanner.events.poll() }.toList()
        assertThat(actual).containsExactly(*expected)
      }
    
      private val Int.ms: Long
        get() = this * 1_000_000L
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableCollection.java

         * ImmutableCollection} from this method.
         */
        public abstract ImmutableCollection<E> build();
      }
    
      private static final long serialVersionUID = 0xcafebabe;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Aug 12 16:59:15 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableListMultimap.java

        FieldSettersHolder.SIZE_FIELD_SETTER.set(this, tmpSize);
      }
    
      @GwtIncompatible // Not needed in emulated source
      @J2ktIncompatible
      private static final long serialVersionUID = 0;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Aug 16 20:20:32 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

                        clientChallenge.length);
        }
        public static byte[] getNTLMv2Response(
                byte[] responseKeyNT,
                byte[] serverChallenge,
                byte[] clientChallenge,
                long nanos1601,
                byte[] targetInfo)
        {
            int targetInfoLength = targetInfo != null ? targetInfo.length : 0;
            byte[] temp = new byte[28 + targetInfoLength + 4];
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  6. docs/sts/web-identity.md

    storage.
    
    Calling AssumeRoleWithWebIdentity does not require the use of MinIO root or IAM credentials. Therefore, you can distribute an application (for example, on mobile devices) that requests temporary security credentials without including MinIO long lasting credentials in the application. Instead, the identity of the caller is validated by using a JWT id_token from the web identity provider. The temporary security credentials returned by this API consists of an access key, a secret key, and a...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 10 20:16:44 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableMap.java

         */
        Builder<K, V> makeBuilder(int size) {
          return new Builder<>(size);
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns a serializable form of this object. Non-public subclasses should not override this
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  8. docs/ru/docs/async.md

    ## Нет времени?<a name="in-a-hurry"></a>
    
    <abbr title="too long; didn't read (основная мысль)"><strong>TL;DR:</strong></abbr>
    
    Допустим, вы используете сторонюю библиотеку, которая требует вызова с ключевым словом `await`:
    
    ```Python
    results = await some_library()
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 39.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/net/InetAddressesTest.java

        checkBigIntegerConversion("::1", BigInteger.ONE);
        checkBigIntegerConversion("::7fff:ffff", BigInteger.valueOf(Integer.MAX_VALUE));
        checkBigIntegerConversion("::7fff:ffff:ffff:ffff", BigInteger.valueOf(Long.MAX_VALUE));
        checkBigIntegerConversion(
            "::ffff:ffff:ffff:ffff", BigInteger.ONE.shiftLeft(64).subtract(BigInteger.ONE));
        checkBigIntegerConversion(
            "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Collections2.java

       * other.
       *
       * <p>The returned collection's {@code add()} and {@code addAll()} methods throw an {@link
       * UnsupportedOperationException}. All other collection methods are supported, as long as {@code
       * fromCollection} supports them.
       *
       * <p>The returned collection isn't threadsafe or serializable, even if {@code fromCollection} is.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top