Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 309 for charactersOf (0.09 sec)

  1. guava/src/com/google/common/net/InetAddresses.java

       *
       * <p>This deliberately avoids all nameservice lookups (e.g. no DNS).
       *
       * <p>This method accepts non-ASCII digits, for example {@code "192.168.0.1"} (those are fullwidth
       * characters). That is consistent with {@link InetAddress}, but not with various RFCs. If you
       * want to accept ASCII digits only, you can use something like {@code
       * CharMatcher.ascii().matchesAllOf(ipString)}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/QueryCommand.java

            }
            return new DefaultQueryBuilder(boolQuery);
        }
    
        /**
         * Builds a match phrase query, with special handling for single CJK characters.
         * For single CJK characters in title or content fields, uses prefix query instead.
         * @param f The field name.
         * @param text The text to search for.
         * @return The appropriate query builder.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/storage/ItemForm.java

        public String path;
    
        /**
         * Default constructor.
         */
        public ItemForm() {
            // Default constructor
        }
    
        /** The name of the storage item, limited to 100 characters */
        @Size(max = 100)
        public String name;
    
        /** The file to be uploaded for the storage item */
        public MultipartFormFile uploadFile;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

            assertEquals("Second instance", exception2.getMessage());
            assertEquals("Third instance", exception3.getMessage());
        }
    
        public void test_specialCharactersInMessage() {
            // Test with special characters in message
            String messageWithSpecialChars = "Error: offset > 1000 && offset < 2000 | \"quotes\" 'single' \n\t tab";
            ResultOffsetExceededException exception = new ResultOffsetExceededException(messageWithSpecialChars);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/webauth/EditForm.java

        public String id;
    
        /**
         * The username of the user who last updated this web authentication configuration.
         * Used for audit trail purposes to track who made changes.
         * Maximum length is 255 characters.
         */
        @Size(max = 255)
        public String updatedBy;
    
        /**
         * The timestamp when this web authentication configuration was last updated.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/NetbiosNameTest.java

            // NetBIOS names can be up to 15 characters
            String[] testNames = { "A", "SERVER", "LONGSERVERNAME", "EXACTLY15CHARS1" };
    
            for (String testName : testNames) {
                when(mockNetbiosName.getName()).thenReturn(testName);
                assertEquals(testName, mockNetbiosName.getName());
            }
        }
    
        @Test
        @DisplayName("Should handle special characters in names")
        void testSpecialCharacters() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/NotifyResponseTest.java

            assertEquals(mockNotifyInfo2, response2.getNotifyInformation().get(0));
        }
    
        @Test
        @DisplayName("Test NotifyResponse with special characters in filenames")
        void testNotifyResponseWithSpecialCharactersInFilenames() {
            // Create notifications with special characters
            FileNotifyInformation unicodeFile = mock(FileNotifyInformation.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java

            System.arraycopy(buffer, Smb2Constants.SMB2_HEADER_LENGTH + 8, actualPath, 0, pathBytes.length);
            assertArrayEquals(pathBytes, actualPath);
        }
    
        @Test
        @DisplayName("Should handle Unicode characters in path")
        void testUnicodePathHandling() throws Exception {
            // Given
            String unicodePath = "\\\\server\\共享文件夹\\テスト";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java

            assertEquals(expectedFilename, fileBothDirectoryInfo.getFilename());
        }
    
        @Test
        @DisplayName("Test decode with special characters in filename")
        void testDecodeWithSpecialCharactersInFilename() throws SMBProtocolDecodingException {
            // Prepare test data with special characters
            String expectedFilename = "file-name_2024#******@****.***";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  10. src/test/java/jcifs/netbios/NameTest.java

        void writeWireFormat_withMaxLengthName_shouldHandleCorrectly() {
            String maxName = "123456789012345"; // 15 characters
            Name name = new Name(mockConfig, maxName, 0x20, null);
            byte[] dst = new byte[100];
    
            int length = name.writeWireFormat(dst, 0);
    
            // Should encode all 15 characters
            assertTrue(length >= 34);
            assertEquals(0x20, dst[0]);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
Back to top