- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 155 for initialization (0.22 sec)
-
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
indexUpdateCallback.init(); } @Override public void tearDown() throws Exception { super.tearDown(); } public void test_init() { // Test initialization assertEquals(1048576L, indexUpdateCallback.maxDocumentRequestSize); assertEquals(10000, indexUpdateCallback.maxDocumentCacheSize); } public void test_store_withValidData() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComTreeDisconnectTest.java
@BeforeEach public void setUp() throws CIFSException { MockitoAnnotations.initMocks(this); config = new PropertyConfiguration(new Properties()); } /** * Test constructor initialization with valid configuration */ @Test @DisplayName("Test constructor initializes with correct command") public void testConstructorWithValidConfig() { // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java
field.setAccessible(true); assertEquals(setupCount, field.get(response)); } @Test @DisplayName("Test bufDataStart initialization when zero") void testBufDataStartInitialization() throws Exception { byte[] buffer = new byte[100]; int bufferIndex = 0; // Set bufDataStart to 0 initially
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
scheduler.scheduleAtFixedRate(this::discoverInterfaces, 0, 30, TimeUnit.SECONDS); } /** * Initialize multi-channel support * * @throws IOException if initialization fails */ public void initializeMultiChannel() throws IOException { // Check server capability if (!supportsMultiChannel()) { log.info("Server does not support multi-channel");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 20K bytes - Viewed (0) -
cmd/local-locker.go
Writer bool // Bool whether write or read lock. UID string // UID to uniquely identify request of client. Timestamp int64 // Timestamp set at the time of initialization. TimeLastRefresh int64 // Timestamp for last lock refresh. Source string // Contains line, function and filename requesting the lock. Group bool // indicates if it was a group lock.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
Crawler.Options options = new Crawler.Options(); // Don't set sessionId to test default generation // Mock the container setup to avoid actual initialization try { // The process method will generate a default sessionId if not provided // We can't easily test the static process method directly without full container setup
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
README.md
### Performance Optimizations - **Caching** - Bean descriptors and reflection metadata are cached for improved performance - **Lazy initialization** - Resources and expensive operations are initialized only when needed - **Memory efficient** - Specialized collections like `LruHashMap` and `ArrayMap` for memory-conscious applications
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
} /** * Initialize the output stream with the tree handle configuration. * * @param th the tree handle to use for configuration * @throws CIFSException if an error occurs during initialization */ protected final void init(final SmbTreeHandleImpl th) throws CIFSException { final int sendBufferSize = th.getSendBufferSize(); if (this.smb2) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AggregateFuture.java
return "futures=" + localFutures; } return super.pendingToString(); } /** * Must be called at the end of each subclass's constructor. This method performs the "real" * initialization; we can't put this in the constructor because, in the case where futures are * already complete, we would not initialize the subclass before calling {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 16K bytes - Viewed (0) -
cmd/peer-s3-client.go
func newPeerS3Client(node Node) peerS3Client { var gridConn atomic.Pointer[grid.Connection] return &remotePeerS3Client{ node: node, gridConn: func() *grid.Connection { // Lazy initialization of grid connection. // When we create this peer client, the grid connection is likely not yet initialized. if node.GridHost == "" {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.6K bytes - Viewed (0)