- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for ccc (0.13 sec)
-
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
assertEquals("(aaa OR bbb)", getAsQuery(Collections.singletonMap(k, new String[] { "aaa bbb" }))); assertEquals("(aaa OR bbb) ccc", getAsQuery(Collections.singletonMap(k, new String[] { "aaa bbb", "ccc" }))); assertEquals("(aaa OR bbb) (ccc OR ddd)", getAsQuery(Collections.singletonMap(k, new String[] { "aaa bbb", "ccc ddd" }))); assertEquals("(aaa OR bbb)", getAsQuery("111", Collections.singletonMap(k, new String[] { "aaa bbb" }))); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
* The handler receives the entry name excluding the prefix. For example, if the Jar file contains <code>/WEB-INF/classes/ccc/ddd/Eee.class</code>, * the handler receives the package name <code>ccc.ddd</code> and the class name <code>Eee</code>. * </p> * * @param jarFile the Jar file (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.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/TextUtilTest.java
assertEquals("aaa bbb ccc", normalizeText("aaa bbb aaa ccc aaa", 100, -1, -1, true)); assertEquals("aaa? bbb ccc", normalizeText("aaa? bbb aaa? ccc", 100, -1, -1, true)); assertEquals("aaa #bbb ccc?", normalizeText("aaa #bbb# aaa ccc? aaa", 100, -1, -1, true)); assertEquals("123 abc", normalizeText(" 123 abc 123", 100, -1, -1, true));
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
* </p> * * @param rootDir the root directory (must not be {@literal null}) * @param baseDirectory the base directory
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java
assertEquals("action:ACCESS\tuser:testuser\tpath:/aaa\texecute:bbb", localLogMsg.get()); activityHelper.access(createUser("testuser", new String[] { "111", "222" }), "/aaa/bbb", "ccc"); assertEquals("action:ACCESS\tuser:testuser\tpath:/aaa/bbb\texecute:ccc", localLogMsg.get()); } public void test_permissionChanged() { activityHelper.useEcsFormat = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 18.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
assertEquals("aaa bbb ccc", value); data = "<html><body> aaa <p> bbb <aaa>ccc</bbb> </p> </body></html>"; document = getDocument(data); value = transformer.getSingleNodeValue(document, "//BODY", node -> node); assertEquals("aaa bbb ccc", value); data = "<html><body> aaa <p> bbb <!-- test -->ccc<!-- test --> </p> </body></html>";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 41.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java
assertEquals("test.txt", ftpInfo.getName()); assertEquals("ftp://123.123.123.123/", ftpInfo.toUrl("/")); assertEquals("ftp://123.123.123.123/aaa/bbb/ccc.txt", ftpInfo.toUrl("/aaa//bbb/ccc.txt")); assertEquals("ftp://123.123.123.123/ccc.txt", ftpInfo.toUrl("/aaa/../ccc.txt")); value = "ftp://123.123.123.123/test test.txt"; ftpInfo = new FtpClient.FtpInfo(value, Constants.UTF_8);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 18K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
FieldConfigs fieldConfigs = new FieldConfigs(params); final Map<String, Object> dataMap = Map.of(// "foo", new String[] { "aaa", "bbb" }, // "bar", new String[] { "ccc", "ddd" }, // "baz", new String[] { "eee", "fff" }); final Map<String, Object> resultMap = transformer.processFieldConfigs(dataMap, fieldConfigs);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
assertEquals("aaa", systemHelper.createSearchRole("", "aaa")); assertEquals("bbb", systemHelper.createSearchRole("", "aaa\\bbb")); assertEquals("bbb\\ccc", systemHelper.createSearchRole("", "aaa\\bbb\\ccc")); } public void test_normalizeConfigPath() { assertEquals("", systemHelper.normalizeConfigPath("")); assertEquals("", systemHelper.normalizeConfigPath("#hash"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
tests/migrate_test.go
if !DB.Migrator().HasTable(m) { t.Fatalf("Failed to create table for %#v", m) } } DB.Scopes(func(db *gorm.DB) *gorm.DB { return db.Table("ccc") }).Migrator().CreateTable(&Company{}) if !DB.Migrator().HasTable("ccc") { t.Errorf("failed to create table ccc") } for _, indexes := range [][2]string{ {"user_speaks", "fk_user_speaks_user"}, {"user_speaks", "fk_user_speaks_language"},
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Aug 20 04:51:17 UTC 2025 - 65.2K bytes - Viewed (0)