- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 76 for System (0.04 sec)
-
system.jsp
Shinsuke Sugaya <shinsuke@apache.org> 1729904872 +0900github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 1.4K bytes -
system.jsp
Shinsuke Sugaya <shinsuke@apache.org> 1729904872 +0900github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 1.4K bytes -
scheduled_job.bulk
ble":true,"sortOrder":8,"createdBy":"system","createdTime":0,"updatedBy":"system","updatedTime":0} L17:{"index":{"_index":"fess_config.scheduled_job","_id":"ping_es"}} L18:{"name":"Search Engine Monitor","target":"all","cronExpression":"* * * * *","scriptType":"groovy","scriptData":"return container.getComponent(\"pingEsJob\").execute();","jobLogging":false,"crawler":false,"available":true,"sortOrder":9,"createdBy":"system","createdTime":0,"updatedBy":"system","updatedTime":0} L19:{"index":{"_in...github.com/codelibs/fess/src/main/resources/fes...Thu Dec 02 13:14:56 UTC 2021 4.2K bytes -
RoleQueryHelperTest.java
L272: assertEquals(0, roleSet.size()); L273: L274: encrypted = false; L275: value = System.currentTimeMillis() / 1000 + "\nrole1"; L276: roleSet = decodedRoleList(roleQueryHelperImpl, value, encrypted); L277: assertEquals(1, roleSet.size()); L278: assertTrue(roleSet.contains("role1")); L279: L280: encrypted = false; L281: value = System.currentTimeMillis() / 1000 + "\nrole1,role2"; L282: roleSet = decodedRoleList(roleQueryHelperImpl,...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:53:18 UTC 2024 14.2K bytes -
ITBase.java
DEFAULT_TEST_TOKEN_ID = "testToken"; L34: private static final String TEST_TOKEN = "test.token"; L35: L36: public static String getTestToken() { L37: return System.getProperty(TEST_TOKEN, DEFAULT_TEST_TOKEN); L38: } L39: L40: public static String settingTestToken() { L41: final String testToken = System.getProperty(TEST_TOKEN); L42: if (testToken != null) { L43: logger.info("Token: {}", testToken); L44: return testToken; L45: } L46: L47:...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.3K bytes -
fess_label_en.properties
tatus=Crawler status L474:labels.crawling_info_WebFsCrawlExecTime=Crawl exec time (Web/File system) L475:labels.crawling_info_WebFsCrawlStartTime=Crawl start time (Web/File system) L476:labels.crawling_info_WebFsCrawlEndTime=Crawl end time (Web/File system) L477:labels.crawling_info_WebFsIndexExecTime=Indexing exec time (Web/File system) L478:labels.crawling_info_WebFsIndexSize=Index size (Web/File system) L479:labels.crawling_info_DataCrawlExecTime=Crawl exec time (Data store) L480:labels.crawl...github.com/codelibs/fess/src/main/resources/fes...Fri Mar 22 11:58:34 UTC 2024 40.7K bytes -
ResourceUtil.java
public static String getAppType() { L55: final String appType = System.getenv(FESS_APP_TYPE); L56: if (StringUtil.isNotBlank(appType)) { L57: return appType; L58: } L59: return StringUtil.EMPTY; L60: } L61: L62: public static OptionalEntity<String> getOverrideConfPath() { L63: if (FESS_APP_DOCKER.equalsIgnoreCase(getAppType())) { L64: final String confPath = System.getenv(FESS_OVERRIDE_CONF_PATH); L65: if (StringUtil.isNotBlank(confPath))...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 08:52:32 UTC 2024 7.5K bytes -
ExecJob.java
L150: protected void addFessConfigProperties(final List<String> cmdList) { L151: System.getProperties().keySet().stream().filter(k -> k != null && k.toString().startsWith(Constants.FESS_CONFIG_PREFIX)) L152: .forEach(k -> addSystemProperty(cmdList, k.toString(), null, null)); L153: } L154: L155: protected void addFessSystemProperties(final List<String> cmdList) { L156: System.getProperties().keySet().stream().filter(k -> k != null && k.toString().startsWith(Cons...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 7.7K bytes -
ResourceUtilTest.java
assertEquals(value, ResourceUtil.resolve(value)); L50: L51: System.setProperty("abc", "123"); L52: L53: value = "${abc}"; L54: assertEquals("123", ResourceUtil.resolve(value)); L55: L56: value = "xxx${abc}zzz"; L57: assertEquals("xxx123zzz", ResourceUtil.resolve(value)); L58: L59: value = "${abc.xyz}"; L60: assertEquals(value, ResourceUtil.resolve(value)); L61: L62: System.setProperty("abc.xyz", "789"); L63: L64: value = "${abc.xyz}";...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.4K bytes -
JvmUtilTest.java
UnitFessTestCase { L21: public void test_getJavaVersion() { L22: System.setProperty("java.version", "1.4.2_19"); L23: assertEquals(4, JvmUtil.getJavaVersion()); L24: System.setProperty("java.version", "1.5.0_15"); L25: assertEquals(5, JvmUtil.getJavaVersion()); L26: System.setProperty("java.version", "1.6.0_34"); L27: assertEquals(6, JvmUtil.getJavaVersion()); L28: System.setProperty("java.version", "1.7.0_25"); L29: assertEquals(7, JvmUt...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.6K bytes