- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 346 for functionality (0.08 sec)
-
src/test/java/jcifs/SmbPipeHandleTest.java
when(smbPipeHandle.isStale()).thenReturn(true); assertTrue(smbPipeHandle.isStale(), "isStale() should return true for a stale handle."); } } /** * Tests the unwrap functionality. */ @Nested public class UnwrapFunctionalityTest { /** * Verifies that unwrap returns the expected underlying object. */ @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/JobLogPager.java
import java.io.Serializable; import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pager class for managing job log pagination in the admin interface. * This class handles pagination functionality for job log listings and provides * search criteria for filtering job logs. */ public class JobLogPager implements Serializable { /** Serial version UID for serialization */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacMacTest.java
assertEquals(32, derivedKey256.length); } /** * Test method for {@link jcifs.pac.PacMac#expandNFold(byte[], int)}. */ @Test void testExpandNFold() { // Test basic functionality byte[] data = { 1, 2, 3 }; int outlen = 5; byte[] expanded = PacMac.expandNFold(data, outlen); assertNotNull(expanded); assertEquals(outlen, expanded.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java
import java.util.List; import org.codelibs.fess.Constants; import org.codelibs.fess.util.ComponentUtil; /** * Pager class for boost document management with pagination support. * Provides pagination functionality for boost document rule lists. */ public class BoostDocPager implements Serializable { private static final long serialVersionUID = 1L; /** Default current page number. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/StemmerOverridePager.java
import java.io.Serializable; import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pager class for stemmer override dictionary management. * * This class provides pagination functionality for displaying stemmer override * dictionary entries in the administrative interface. It manages page state, * navigation controls, and provides methods for calculating page boundaries * and navigation elements. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java
import java.io.Serializable; import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pager class for web authentication configurations. * Provides pagination functionality and search criteria for web authentication listings. */ public class WebAuthPager implements Serializable { /** * Default constructor. */ public WebAuthPager() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; /** * Service class for managing stemmer override dictionary operations. * * This service provides functionality for CRUD operations on stemmer override * dictionaries. Stemmer override dictionaries allow administrators to define * custom stemming rules that override the default stemming behavior for
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/SessionServicePacket.java
*/ package jcifs.smb1.netbios; import java.io.IOException; import java.io.InputStream; /** * Abstract base class for NetBIOS session service packets. * This class provides common functionality for session layer communication in SMB1. */ public abstract class SessionServicePacket { /** * Default constructor for SessionServicePacket. * Creates a new session service packet instance. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/util/Crypto.java
import javax.crypto.spec.SecretKeySpec; import org.bouncycastle.jce.provider.BouncyCastleProvider; import jcifs.CIFSUnsupportedCryptoException; /** * Cryptographic utility class providing encryption and decryption functionality for jCIFS. * Handles security provider initialization and cryptographic operations for SMB authentication. * * @author mbechler */ public final class Crypto { private static Provider provider = null;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbExceptionTest.java
import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ValueSource; import jcifs.BaseTest; /** * Test class for SmbException functionality */ @DisplayName("SmbException Tests") class SmbExceptionTest extends BaseTest { @Test @DisplayName("Should create SmbException with NT status code") void testSmbExceptionWithNTStatus() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0)