Search Options

Results per page
Sort
Preferred Languages
Advance

Results 371 - 380 of 1,698 for voiced (0.15 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/BinaryTransformerTest.java

        @Override
        protected void setUp() throws Exception {
            super.setUp();
            binaryTransformer = new BinaryTransformer();
            binaryTransformer.setName("binaryTransformer");
        }
    
        public void test_name() {
            assertEquals("binaryTransformer", binaryTransformer.getName());
        }
    
        public void test_transform() {
            final byte[] data = new String("xyz").getBytes();
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsClickLog.java

            return convertEmptyToNull(urlId);
        }
    
        public void setUrlId(String value) {
            registerModifiedProperty("urlId");
            this.urlId = value;
        }
    
        public String getDocId() {
            checkSpecifiedProperty("docId");
            return convertEmptyToNull(docId);
        }
    
        public void setDocId(String value) {
            registerModifiedProperty("docId");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapRemoveEntryTester.java

      @MapFeature.Require(SUPPORTS_REMOVE)
      public void testRemoveAbsent() {
        assertFalse(multimap().remove(k0(), v1()));
        expectUnchanged();
      }
    
      @CollectionSize.Require(absent = ZERO)
      @MapFeature.Require(SUPPORTS_REMOVE)
      public void testRemovePresent() {
        assertTrue(multimap().remove(k0(), v0()));
    
        assertFalse(multimap().containsEntry(k0(), v0()));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Nov 14 23:40:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/log/Logger.java

         *            Exception
         */
        public void debug(final Object message, final Throwable throwable) {
            if (isDebugEnabled()) {
                log.debug(toString(message), throwable);
            }
        }
    
        /**
         * Outputs DEBUG information.
         *
         * @param message
         *            Message
         */
        public void debug(final Object message) {
            if (isDebugEnabled()) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/pac/PacLogonInfoTest.java

        private SID userSid;
    
        @BeforeEach
        void setUp() throws Exception {
            domainSid = new SID("S-1-5-21-1-2-3");
            userSid = new SID("S-1-5-21-1-2-3-1000");
        }
    
        private void writeLittleEndianShort(DataOutputStream dos, short value) throws IOException {
            dos.writeShort(Short.reverseBytes(value));
        }
    
        private void writeLittleEndianInt(DataOutputStream dos, int value) throws IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  6. src/test/java/jcifs/ntlmssp/Type3MessageTest.java

        void testInvalidMessageBytes() {
            // Given
            byte[] invalidBytes = { 1, 2, 3, 4, 5 }; // Too short and invalid
    
            // When/Then
            assertThrows(IOException.class, () -> {
                new Type3Message(invalidBytes);
            });
        }
    
        @Test
        @DisplayName("Should handle parsing null message bytes")
        void testNullMessageBytes() {
            // When/Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        assertEquals("/", simplifyPath("/././././"));
      }
    
      public void testSimplify9() {
        assertEquals("/a", simplifyPath("/a/b/.."));
      }
    
      public void testSimplify10() {
        assertEquals("/", simplifyPath("/a/b/../../.."));
      }
    
      public void testSimplify11() {
        assertEquals("/", simplifyPath("//a//b/..////../..//"));
      }
    
      public void testSimplify12() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/CommonServerMessageBlockTest.java

                }
    
                @Override
                public void setCommand(int command) {
                    this.command = command;
                }
    
                @Override
                public void setUid(int uid) {
                    // Implementation
                }
    
                @Override
                public void setExtendedSecurity(boolean extendedSecurity) {
                    // Implementation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

            }
        }
    
        // Test basic getters
        public void test_getType() {
            assertEquals("stopwords", stopwordsFile.getType());
        }
    
        public void test_getPath() {
            assertEquals(testFile.getAbsolutePath(), stopwordsFile.getPath());
        }
    
        public void test_getSimpleName() {
            assertEquals(testFile.getName(), stopwordsFile.getSimpleName());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

        }
    
        public void test_isEmptyArray_withEmptyArray() {
            assertTrue(searchRequestParams.isEmptyArray(new String[] {}));
        }
    
        public void test_isEmptyArray_withBlankStrings() {
            assertTrue(searchRequestParams.isEmptyArray(new String[] { "", "  ", "\t", "\n" }));
        }
    
        public void test_isEmptyArray_withNullElements() {
            assertTrue(searchRequestParams.isEmptyArray(new String[] { null, null }));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
Back to top