Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 193 for Zstandard (0.05 sec)

  1. android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java

     * ClassToInstanceMap}</a>.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @SuppressWarnings("serial") // using writeReplace instead of standard serialization
    public final class MutableClassToInstanceMap<B extends @Nullable Object>
        extends ForwardingMap<Class<? extends @NonNull B>, B>
        implements ClassToInstanceMap<B>, Serializable {
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:10:29 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ForwardingSortedMultiset.java

     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingSortedMultiset}.
     *
     * <p>The {@code standard} methods and any collection views they return are not guaranteed to be
     * thread-safe, even when all of the methods that they depend on are thread-safe.
     *
     * @author Louis Wasserman
     * @since 15.0
     */
    @GwtCompatible
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/Stats.java

      }
    
      /**
       * Returns the <a
       * href="http://en.wikipedia.org/wiki/Standard_deviation#Corrected_sample_standard_deviation">
       * corrected sample standard deviation</a> of the values. If this dataset is a sample drawn from a
       * population, this is an estimator of the population standard deviation of the population which
       * is less biased than {@link #populationStandardDeviation()} (the unbiased estimator depends on
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

     */
    package org.codelibs.fess.app.pager;
    
    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager for duplicate host management with standard paging functionality.
     * This class provides pagination support for duplicate host listings in the admin interface,
     * including navigation controls and search/filter parameters.
     *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/RequestWithPathTest.java

            assertEquals(specialUNCPath, testImplementation.getFullUNCPath());
        }
    
        @Test
        @DisplayName("Test with various UNC path formats")
        void testVariousUNCPathFormats() {
            // Standard UNC path
            String standardUNC = "\\\\server\\share\\folder\\file.txt";
            testImplementation.setFullUNCPath("DOMAIN", "server", standardUNC);
            assertEquals(standardUNC, testImplementation.getFullUNCPath());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java

     */
    package org.codelibs.fess.app.pager;
    
    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager for data configuration management with standard paging functionality.
     * This class provides pagination support for data configuration listings in the admin interface,
     * including navigation controls and search/filter parameters.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int FILE_READ_ATTRIBUTES = 0x00000080; // 8
        /** Permission to write file attributes */
        public static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        /** Standard delete permission */
        public static final int DELETE = 0x00010000; // 16
        /** Permission to read the security descriptor */
        public static final int READ_CONTROL = 0x00020000; // 17
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/EmptyIteratorTest.java

            // Given - typical Iterator usage pattern
    
            // When & Then - verify empty collection behavior
            assertFalse(emptyIterator.hasNext(), "Empty iterator should have no next element");
    
            // Note: Standard Iterator would throw NoSuchElementException, but this implementation returns null
            // This is a design choice for this specific implementation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbOperationException.java

            CONFIGURATION,
            /** Transient errors that may succeed on retry */
            TRANSIENT,
            /** Unknown or unclassified errors */
            UNKNOWN
        }
    
        /**
         * Standard SMB error codes
         */
        public enum ErrorCode {
            // Network errors
            CONNECTION_FAILED("Network connection failed", ErrorCategory.NETWORK, true), CONNECTION_TIMEOUT("Connection timed out",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/util/HMACT64Test.java

            byte[] key = "key".getBytes();
            byte[] data = "The quick brown fox jumps over the lazy dog".getBytes();
    
            // Calculate expected HMAC-MD5 using standard Java MessageDigest for comparison
            // This is a simplified HMAC-MD5 calculation for comparison, not a full RFC 2104 implementation.
            // The HMACT64 implementation is what we are testing.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.6K bytes
    - Viewed (0)
Back to top