Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 153 for 120 (0.02 sec)

  1. src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequestTest.java

            Smb2IoctlRequest request = new Smb2IoctlRequest(mockConfig, TEST_CONTROL_CODE);
    
            int size = request.size();
    
            // Base size: SMB2_HEADER_LENGTH (64) + 56 = 120, aligned to 8
            assertEquals(120, size);
        }
    
        @Test
        @DisplayName("Test size calculation with input data")
        void testSizeWithInputData() {
            setupMockConfig();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

       *
       * <p>This method does not create any memory pressure as would be required to cause soft
       * references to be processed.
       *
       * @throws RuntimeException if timed out or interrupted while waiting
       * @since 12.0
       */
      @SuppressWarnings({"removal", "Finalize"}) // b/260137033
      public static void awaitFullGc() {
        CountDownLatch finalizerRan = new CountDownLatch(1);
        WeakReference<Object> ref =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/MD4.java

            // pad output to 56 mod 64; as RFC1320 puts it: congruent to 448 mod 512
            final int bufferNdx = (int) (count % BLOCK_LENGTH);
            final int padLen = bufferNdx < 56 ? 56 - bufferNdx : 120 - bufferNdx;
    
            // padding is alwas binary 1 followed by binary 0s
            final byte[] tail = new byte[padLen + 8];
            tail[0] = (byte) 0x80;
    
            // append length before final transform:
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  4. gradle/libs.versions.toml

    mockserverClient = "5.15.0"
    org-bouncycastle = "1.81"
    org-conscrypt = "2.5.2"
    org-jetbrains-coroutines = "1.10.2"
    org-jetbrains-kotlin = "2.2.10"
    org-junit-jupiter = "5.13.4"
    retrofit = "3.0.0"
    startupRuntime = "1.2.0"
    testcontainers = "1.21.3"
    
    [libraries]
    amazonCorretto = "software.amazon.cryptools:AmazonCorrettoCryptoProvider:2.5.0"
    androidx-activity = "androidx.activity:activity-ktx:1.10.1"
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Aug 31 17:41:20 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  5. docs/distributed/decom.sh

    count=0
    until $(./mc admin decom status myminio/ | grep -q Complete); do
    	echo "waiting for decom to finish..."
    	count=$((count + 1))
    	if [ ${count} -eq 120 ]; then
    		./mc cat /tmp/expanded_*.log
    	fi
    	sleep 1
    done
    
    kill $pid_1
    kill $pid_2
    
    sleep 5
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/GcFinalization.java

       *
       * <p>This method does not create any memory pressure as would be required to cause soft
       * references to be processed.
       *
       * @throws RuntimeException if timed out or interrupted while waiting
       * @since 12.0
       */
      @SuppressWarnings({"removal", "Finalize"}) // b/260137033
      public static void awaitFullGc() {
        CountDownLatch finalizerRan = new CountDownLatch(1);
        WeakReference<Object> ref =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. docs/site-replication/run-ssec-object-replication.sh

    ./mc put /tmp/data/custpartsize minio1/test-bucket/custpartsize --enc-c "minio1/test-bucket/custpartsize=${TEST_MINIO_ENC_KEY}" --insecure --part-size 50MiB
    set +x
    sleep 120
    
    # List the objects from source site
    echo "Objects from source instance"
    ./mc ls minio1/test-bucket --insecure
    count1=$(./mc ls minio1/test-bucket/plainfile --insecure | wc -l)
    if [ "${count1}" -ne 1 ]; then
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Sep 24 08:03:58 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.29.md

    - golang.org/x/crypto: v0.11.0 → v0.12.0
    - golang.org/x/mod: v0.10.0 → v0.12.0
    - golang.org/x/net: v0.13.0 → v0.14.0
    - golang.org/x/sync: v0.2.0 → v0.3.0
    - golang.org/x/sys: v0.10.0 → v0.12.0
    - golang.org/x/term: v0.10.0 → v0.11.0
    - golang.org/x/text: v0.11.0 → v0.12.0
    - golang.org/x/tools: v0.8.0 → v0.12.0
    
    ### Removed
    _Nothing has changed._
    
    
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 12 00:36:01 UTC 2025
    - 429.6K bytes
    - Viewed (1)
  9. guava/src/com/google/common/collect/ImmutableSortedMultiset.java

     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/ImmutableCollectionsExplained">immutable collections</a>.
     *
     * @author Louis Wasserman
     * @since 12.0
     */
    @GwtIncompatible // hasn't been tested yet
    public abstract class ImmutableSortedMultiset<E> extends ImmutableMultiset<E>
        implements SortedMultiset<E> {
      // TODO(lowasser): GWT compatibility
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 29.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/BloomFilter.java

      }
    
      /**
       * Creates a new {@code BloomFilter} that's a copy of this instance. The new instance is equal to
       * this instance but shares no mutable state.
       *
       * @since 12.0
       */
      public BloomFilter<T> copy() {
        return new BloomFilter<>(bits.copy(), numHashFunctions, funnel, strategy);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top