- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 488 for initialize (0.14 sec)
-
src/main/java/org/codelibs/fess/helper/LanguageHelper.java
/** * Default constructor. */ public LanguageHelper() { // do nothing } /** * Initializes the helper. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtAddressTest.java
mockName = new Name(mockConfig, "MYSERVER", 0x20, null); NbtAddress nbtAddress = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE); nbtAddress.firstCalledName(); // Initialize calledName assertEquals(NbtAddress.SMBSERVER_NAME, nbtAddress.nextCalledName(mockContext)); } @Test void testNextCalledName_SmbServerName_NameType0x1D() throws UnknownHostException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/util/Hexdump.java
*/ public class Hexdump { /** * Default constructor. */ public Hexdump() { // Utility class - no instance variables to initialize } /** * Array of hexadecimal digit characters used for converting binary data to hex representation. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
private IngestFactory ingestFactory; @Override public void setUp() throws Exception { super.setUp(); // Initialize IndexUpdater indexUpdater = new IndexUpdater(); // Initialize mocks/test doubles systemHelper = new TestSystemHelper(); indexingHelper = new TestIndexingHelper(); intervalControlHelper = new TestIntervalControlHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java
default: throw new IllegalArgumentException("Unknown dialect"); } // Initialize the digest once to validate configuration this.digest = createMacInstance(); } /** * Create a new Mac instance for thread-safe operations * @return initialized Mac instance * @throws GeneralSecurityException if Mac cannot be created */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.9K bytes - Viewed (0) -
guava/src/com/google/common/hash/LittleEndianByteArray.java
} } throw new NoSuchFieldError("the Unsafe"); }); } catch (PrivilegedActionException e) { throw new RuntimeException("Could not initialize intrinsics", e.getCause()); } } static { theUnsafe = getUnsafe(); BYTE_ARRAY_BASE_OFFSET = theUnsafe.arrayBaseOffset(byte[].class);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindingTest.java
private static final String PROTO = "ncacn_np"; private static final String SERVER = "testServer"; @BeforeEach void setUp() { dcerpcBinding = new DcerpcBinding(PROTO, SERVER); // Initialize static INTERFACES map for tests DcerpcBinding.addInterface("srvsvc", "4B324FC8-1670-01D3-1278-5A47BF6EE188:3.0"); DcerpcBinding.addInterface("lsarpc", "12345778-1234-ABCD-EF00-0123456789AB:2.1");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
* field configurations based on the application configuration. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (responseFields == null) { responseFields = fessConfig.getQueryAdditionalResponseFields(//
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureCredentialStorage.java
private final SecureRandom secureRandom = new SecureRandom(); private volatile SecretKey masterKey; private volatile byte[] salt; private volatile boolean destroyed = false; /** * Initialize secure credential storage with a master password * * @param masterPassword the master password for encryption * @throws GeneralSecurityException if encryption setup fails */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/jcifs/http/NetworkExplorerTest.java
} /** * Test Basic authentication when enabled */ @Test void testDoGet_BasicAuth() throws Exception { // Initialize with Basic auth enabled initializeNetworkExplorer(true, "TestRealm"); // Test with no auth - should request Basic when(request.getHeader("Authorization")).thenReturn(null);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 21.2K bytes - Viewed (0)