- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for Production (0.05 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
props.setProperty(FessEnv.lasta_di_SMART_DEPLOY_MODE, "cool"); props.setProperty(FessEnv.DEVELOPMENT_HERE, "false"); props.setProperty(FessEnv.ENVIRONMENT_TITLE, "Production"); props.setProperty(FessEnv.FRAMEWORK_DEBUG, "true"); props.setProperty(FessEnv.TIME_ADJUST_TIME_MILLIS, "86400000"); props.setProperty(FessEnv.MAIL_SEND_MOCK, "false");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java
public void test_execute_differentClusterNames() { // Test with production cluster name SearchEngineClient searchEngineClient = new SearchEngineClient() { @Override public PingResponse ping() { return new PingResponse(createMockHealthResponse("production-cluster", ClusterHealthStatus.GREEN)); } };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
assertEquals(3, execJob.jvmOptions.size()); assertEquals("-XX:+UseG1GC", execJob.jvmOptions.get(2)); } // Test lastaEnv setter public void test_lastaEnv() { String testEnv = "production"; ExecJob result = execJob.lastaEnv(testEnv); assertEquals(testEnv, execJob.lastaEnv); assertSame(execJob, result); } // Test addSystemProperty method
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
guava-gwt/pom.xml
<plugin> <artifactId>maven-source-plugin</artifactId> <configuration> <excludes> <!-- 3. Don't include it in the source jar (since it's really more of a "test" than it is production code). --> <exclude>**/ForceGuavaCompilation*</exclude> <exclude>**/DummyJavadocClass*</exclude> </excludes> </configuration> </plugin> <plugin>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 19.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
httpAddress = "http://localhost:" + port; logger.warn("Embedded OpenSearch is running. This configuration is not recommended for production use."); break; } } client = createHttpClient(fessConfig, httpAddress); if (StringUtil.isNotBlank(httpAddress)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.31.md
purposes, you can use older kernels, as far back as 5.4, if you set the `nftables.skipKernelVersionCheck` option in the kube-proxy config, but this is not recommended in production since it may cause problems with other nftables users on the system.) ([#124152](https://github.com/kubernetes/kubernetes/pull/124152), [@danwinship](https://github.com/danwinship)) [SIG Network]
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 19:49:57 UTC 2025 - 429.6K bytes - Viewed (0) -
android/guava/src/com/google/common/base/CharMatcher.java
// whose key property is that it maps 25 characters into the 32-slot table without collision. // Basically this is an opportunistic fast implementation as opposed to "good code". For most // other use-cases, the reduction in readability isn't worth it. static final String TABLE = "\u2002\u3000\r\u0085\u200A\u2005\u2000\u3000" + "\u2029\u000B\u3000\u2008\u2003\u205F\u3000\u1680"
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 53.9K bytes - Viewed (0)