Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 106 for 1970 (0.02 sec)

  1. guava/src/com/google/common/collect/ImmutableMap.java

         * #buildOrThrow} will fail, while {@link #buildKeepingLast} will keep the last value put for
         * that key.
         *
         * @throws NullPointerException if any key, value, or entry is null
         * @since 19.0
         */
        @CanIgnoreReturnValue
        public Builder<K, V> putAll(Iterable<? extends Entry<? extends K, ? extends V>> entries) {
          if (entries instanceof Collection) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 44.3K bytes
    - Viewed (0)
  2. go.mod

    	github.com/tidwall/match v1.1.1 // indirect
    	github.com/tidwall/pretty v1.2.1 // indirect
    	github.com/tklauser/go-sysconf v0.3.15 // indirect
    	github.com/tklauser/numcpus v0.10.0 // indirect
    	github.com/unrolled/secure v1.17.0 // indirect
    	github.com/vbauerster/mpb/v8 v8.9.3 // indirect
    	github.com/xdg/stringprep v1.0.3 // indirect
    	github.com/yusufpapurcu/wmi v1.2.4 // indirect
    	github.com/zeebo/errs v1.4.0 // indirect
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Sep 06 17:33:19 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/BloomFilter.java

       *     BloomFilter}; must be positive
       * @param fpp the desired false positive probability (must be positive and less than 1.0)
       * @return a {@code BloomFilter}
       * @since 19.0
       */
      public static <T extends @Nullable Object> BloomFilter<T> create(
          Funnel<? super T> funnel, long expectedInsertions, double fpp) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  4. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

        val decoded = CertificateAdapters.time.fromDer(generalizedTimeDer)
        assertThat(decoded).isEqualTo(date("2049-12-31T23:59:59.000+0000").time)
      }
    
      @Test fun `time before 1950 uses GENERALIZED_TIME`() {
        val generalizedTimeDer = "180f31393439313233313233353935395a".decodeHex()
    
        val decoded = CertificateAdapters.time.fromDer(generalizedTimeDer)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 43.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/ByteStreams.java

       * ByteArrayInputStream}. The given input stream is not reset before being read from by the
       * returned {@code ByteArrayDataInput}.
       *
       * @since 17.0
       */
      @J2ktIncompatible
      public static ByteArrayDataInput newDataInput(ByteArrayInputStream byteArrayInputStream) {
        return new ByteArrayDataInputStream(checkNotNull(byteArrayInputStream));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 31.1K bytes
    - Viewed (0)
  6. ci/official/requirements_updater/numpy1_requirements/requirements_lock_3_10.txt

        --hash=sha256:fef8c87f8abfb884dac04e97824b61299880c43f4ce675dd2cbeadd3c9b466d2
        # via
        #   -r ci/official/requirements_updater/requirements.in
        #   jax
    six==1.17.0 \
        --hash=sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 \
        --hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81
        # via
        #   astunparse
        #   google-pasta
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Sep 03 23:57:17 UTC 2025
    - 66.1K bytes
    - Viewed (0)
  7. ci/official/requirements_updater/numpy1_requirements/requirements_lock_3_12.txt

        --hash=sha256:fef8c87f8abfb884dac04e97824b61299880c43f4ce675dd2cbeadd3c9b466d2
        # via
        #   -r ci/official/requirements_updater/requirements.in
        #   jax
    six==1.17.0 \
        --hash=sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 \
        --hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81
        # via
        #   astunparse
        #   google-pasta
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Sep 03 23:57:17 UTC 2025
    - 66.1K bytes
    - Viewed (0)
  8. requirements_lock_3_12.txt

        --hash=sha256:fef8c87f8abfb884dac04e97824b61299880c43f4ce675dd2cbeadd3c9b466d2
        # via
        #   -r ci/official/requirements_updater/requirements.in
        #   jax
    six==1.17.0 \
        --hash=sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 \
        --hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81
        # via
        #   astunparse
        #   google-pasta
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Sep 03 23:57:17 UTC 2025
    - 67.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

         */
        TimedSemaphore semaphore = TimedSemaphore.createWithDelay(LONG_DELAY_MS);
        repeatedlyInterruptTestThread(20, tearDownStack);
        semaphore.tryAcquireUnsuccessfully(10, 70);
        assertInterrupted();
      }
    
      // executor.awaitTermination Testcases
      public void testTryAwaitTerminationUninterruptiblyDuration_success() {
        ExecutorService executor = newFixedThreadPool(1);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/base/SplitterTest.java

        assertThrows(
            IllegalArgumentException.class,
            () -> COMMA_SPLITTER.withKeyValueSeparator("=").split("a=1,b,c=2"));
      }
    
      /**
       * Testing the behavior in https://github.com/google/guava/issues/1900 - this behavior may want to
       * be changed?
       */
      public void testMapSplitter_extraValueDelimiter() {
        assertThrows(
            IllegalArgumentException.class,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.5K bytes
    - Viewed (0)
Back to top