Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 217 for wird (0.01 sec)

  1. src/test/java/jcifs/internal/smb2/create/Smb2CloseRequestTest.java

            byte[] copiedFileId = new byte[16];
            System.arraycopy(buffer, 8, copiedFileId, 0, 16);
            assertArrayEquals(expectedFileId, copiedFileId);
        }
    
        @Test
        @DisplayName("Test wire format structure matches SMB2 specification")
        void testWireFormatStructure() {
            byte[] buffer = new byte[256];
            Arrays.fill(buffer, (byte) 0xCC); // Fill with pattern to detect unwritten areas
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupRequestTest.java

            int alignedSize = (expectedSize + 7) & ~7; // size8 alignment
            assertEquals(alignedSize, size);
        }
    
        @Test
        @DisplayName("Should write correct bytes to wire format with session binding")
        void testWriteBytesWireFormatWithSessionBinding() throws Exception {
            // Given
            request.setSessionBinding(true);
            byte[] buffer = new byte[512];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         */
        public static CrawlingInfoHelper getCrawlingInfoHelper() {
            return getComponent(CRAWLING_INFO_HELPER);
        }
    
        /**
         * Gets the popular word helper component.
         * @return The popular word helper.
         */
        public static PopularWordHelper getPopularWordHelper() {
            return getComponent(POPULAR_WORD_HELPER);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/InfoTest.java

            // toString() uses lastWriteTime directly without offset
            assertTrue(resp.toString().contains(new Date(1630000000000L).toString()));
        }
    
        // Buffer helpers to build SMB basic file info wire format.
        // SMB uses little-endian byte order
        private static void writeLong(byte[] buf, int offset, long val) {
            for (int i = 0; i < 8; i++) {
                buf[offset + i] = (byte) ((val >>> (8 * i)) & 0xFF);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                buf.append("\"data\":[");
                boolean first1 = true;
                for (final String word : popularWordList) {
                    if (!first1) {
                        buf.append(',');
                    } else {
                        first1 = false;
                    }
                    buf.append(escapeJson(word));
                }
                buf.append(']');
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  6. .github/PULL_REQUEST_TEMPLATE.md

    #### What this PR does / why we need it:
    
    #### Which issue(s) this PR is related to:
    <!--
    Please link relevant issues to help with tracking.
    
    To automatically close the linked issue(s) when this PR is merged,
    add the word "Fixes" before the issue number or link.
    Do not use "Fixes" if the PR is of kind `failing-test` or `flake`.
    
    Reference KEPs when applicable in addition to specific issues.
    
    Examples:
    Fixes #<issue number>
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Jun 06 14:40:00 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb1/smb1/SmbComQueryInformationResponseTest.java

            assertEquals(sampleTimeMillis + serverTimeZoneOffset, response.getLastWriteTime());
            assertEquals(1024, response.getSize());
        }
    
        /**
         * Test of readParameterWordsWireFormat method with zero word count.
         */
        @Test
        public void testReadParameterWordsWireFormatWithZeroWordCount() {
            byte[] buffer = new byte[20];
            response.wordCount = 0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/HandlerTest.java

        @Mock
        Configuration mockCfg;
    
        // Provides a fresh handler instance for tests
        private Handler newHandler() {
            return new Handler();
        }
    
        // Provides a handler wired with a mocked CIFSContext
        private Handler newHandlerWith(CIFSContext ctx) {
            return new Handler(ctx);
        }
    
        @Test
        @DisplayName("getDefaultPort returns SMB default port")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         */
        @Required
        @Min(-1)
        @Max(10000)
        @ValidateTypeFailure
        public Integer failureCountThreshold;
    
        /**
         * Enable or disable popular word tracking and display.
         * When enabled, frequently searched terms are tracked and displayed.
         */
        @Size(max = 10)
        public String popularWord;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/SMBProtocolDecodingExceptionTest.java

            assertNotNull(ex.toString(), "toString should be safe to call");
        }
    
        @ParameterizedTest
        @NullAndEmptySource
        @ValueSource(strings = { "oops", "multi word", "中文" })
        @DisplayName("Message+Cause constructor: preserves both values; no interactions with cause")
        void messageAndCauseConstructor_preservesBoth(String message) {
            // Arrange & Act
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top