- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 46 for Raaa (0.02 sec)
-
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 Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 12K bytes - Viewed (0) -
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 Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 18.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/cache/DiskLruCacheTest.kt
setUp(parameters.first, parameters.second) cache.close() createNewCacheWithSize(10) set("a", "aa", "aaa") // size 5 val snapshot = cache["a"]!! snapshot.close() set("b", "bb", "bbb") // size 5 set("c", "cc", "ccc") // size 5; will evict 'A' set("a", "a", "aaaa") // size 5; will evict 'B' cache.flush() assertThat(snapshot.edit()).isNull() }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 75.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/CharMatcherTest.java
tester.testAllPublicInstanceMethods(matcher); } public void testNoMatches() { doTestNoMatches(CharMatcher.none(), "blah"); doTestNoMatches(is('a'), "bcde"); doTestNoMatches(isNot('a'), "aaaa"); doTestNoMatches(anyOf(""), "abcd"); doTestNoMatches(anyOf("x"), "abcd"); doTestNoMatches(anyOf("xy"), "abcd"); doTestNoMatches(anyOf("CharMatcher"), "zxqy");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.3K bytes - Viewed (0) -
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")); } public void test_init() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
Map<String, Object> doc = new HashMap<>(); assertEquals("aaa", languageHelper.createScript(doc, "aaa").getIdOrCode()); doc.put("lang", "ja"); assertEquals("aaa;ctx._source.title_ja=ctx._source.title;ctx._source.content_ja=ctx._source.content", languageHelper.createScript(doc, "aaa").getIdOrCode()); } public void test_getReindexScriptSource() { assertEquals(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/IndexedIteratorTest.java
list.add("aaa"); list.add("bbb"); list.add("ccc"); final IndexedIterator<String> it = new IndexedIterator<String>(list.iterator()); assertThat(it.hasNext(), is(true)); final Indexed<String> indexed1 = it.next(); assertThat(indexed1.getIndex(), is(0)); assertThat(indexed1.getElement(), is("aaa"));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.7K bytes - Viewed (0) -
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 Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
* </p> * * @param rootDir the root directory (must not be {@literal null})
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.2K bytes - Viewed (0) -
dbflute_fess/dfprop/basicInfoMap.dfprop
# This is only for CSharp. # e.g. Aaa.Bbb.DBFlute --> Directory: source/Aaa.Bbb.DBFlute/AllCommon # o omitDirectoryPackage: (NotRequired - Default '') # This is only for CSharp. # e.g. Aaa --> Directory: source/Bbb/DBFlute/AllCommon # #; outputPackageAdjustmentMap = map:{ # ; flatDirectoryPackage = Aaa.Bbb.DBFlute # ; omitDirectoryPackage = Aaa #} # - - - - - - - - - -/
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 9.2K bytes - Viewed (0)