Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for aaa (0.02 sec)

  1. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            text = "aaa";
            assertEquals("aaa", viewHelper.escapeHighlight(text));
    
            text = viewHelper.originalHighlightTagPre + "aaa" + viewHelper.originalHighlightTagPost;
            assertEquals(viewHelper.highlightTagPre + "aaa" + viewHelper.highlightTagPost, viewHelper.escapeHighlight(text));
    
            text = viewHelper.originalHighlightTagPre + "aaa" + viewHelper.originalHighlightTagPost + "<b>bbb</b>";
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            assertEquals("http://hoge.com/bbb/aaa", value);
    
            value = transformer.normalizeCanonicalUrl("http://hoge.com/bbb/", "/aaa");
            assertEquals("http://hoge.com/aaa", value);
    
            value = transformer.normalizeCanonicalUrl("http://hoge.com/bbb", "/aaa");
            assertEquals("http://hoge.com/aaa", value);
    
            value = transformer.normalizeCanonicalUrl("http://hoge.com/bbb", "http://hoge.com/aaa");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertTrue(StringUtil.endsWithIgnoreCase("setHogeAaa", "Aaa"));
            assertTrue(StringUtil.endsWithIgnoreCase("setHogeAaa", "aaa"));
            assertTrue(StringUtil.endsWithIgnoreCase("aaa_hoge", "HOge"));
            assertFalse(StringUtil.endsWithIgnoreCase("setHogeaa", "Aaa"));
            assertFalse(StringUtil.endsWithIgnoreCase("aa", "Aaa"));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testCopy_mapToBean() throws Exception {
            final BeanMap src = new BeanMap();
            src.put("aaa", "aaa");
            final MyBean dest = new MyBean();
            BeanUtil.copyMapToBean(src, dest);
            assertThat(dest.aaa, is("aaa"));
        }
    
        /**
         * @throws Exception
         */
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

            assertThat(option.trimPrefix("aaa"), is("aaa"));
            option.prefix(BeanNames.search_());
            assertThat(option.trimPrefix("search_aaa"), is("aaa"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testConvertValue_zeroConverter() throws Exception {
            assertThat(new CopyOptions().convertValue(new Integer(1), "aaa", null), is((Object) 1));
        }
    
        /**
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/DocumentHelperTest.java

            assertEquals("L1:aaa", documentHelper.appendLineNumber("L", "aaa"));
            assertEquals("L1:aaa", documentHelper.appendLineNumber("L", "aaa\n"));
            assertEquals("L1:aaa\nL2:bbb", documentHelper.appendLineNumber("L", "aaa\nbbb"));
            assertEquals("L1:aaa\nL2:bbb\nL3:ccc", documentHelper.appendLineNumber("L", "aaa\nbbb\nccc"));
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    Set.of("aaa:"), //
                    buildQuery("aaa:*"));
    
            assertQueryContext(
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Jul 11 08:26:36 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            assertEquals("action:ACCESS\tuser:-\tpath:/\texecute:aaa", localLogMsg.get());
    
            activityHelper.access(createUser("testuser", new String[0]), "/aaa", "bbb");
            assertEquals("action:ACCESS\tuser:testuser\tpath:/aaa\texecute:bbb", localLogMsg.get());
    
            activityHelper.access(createUser("testuser", new String[] { "111", "222" }), "/aaa/bbb", "ccc");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java

            final BeanDesc beanDesc = new BeanDescImpl(MyBean.class);
            assertThat(beanDesc.getPropertyDescSize(), is(5));
            PropertyDesc propDesc = beanDesc.getPropertyDesc("aaa");
            assertThat(propDesc.getPropertyName(), is("aaa"));
            assertThat(propDesc.getPropertyType(), is(sameClass(String.class)));
            assertThat(propDesc.getReadMethod(), is(notNullValue()));
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

                public String getIndexAdminRequiredFields() {
                    return "aaa,bbb";
                }
            };
    
            HashMap<String, Object> source = new HashMap<>();
            assertFalse(fessConfig.validateIndexRequiredFields(source));
            source.put("aaa", null);
            assertFalse(fessConfig.validateIndexRequiredFields(source));
            source.put("aaa", null);
            source.put("bbb", null);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top