- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for Production (0.05 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/TrailersSource.kt
* [IOException]. * * Most callers won't need this interface, and should use [Response.trailers] instead. * * This interface is for test and production code that creates [Response] instances without making * an HTTP call to a remote server. */ interface TrailersSource { @Throws(IOException::class) fun peek(): Headers? = null @Throws(IOException::class)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 18:57:05 UTC 2025 - 1.4K bytes - Viewed (0) -
okhttp-logging-interceptor/README.md
the potential to leak sensitive information such as "Authorization" or "Cookie" headers and the contents of request and response bodies. This data should only be logged in a controlled way or in a non-production environment. You can redact headers that may contain sensitive information by calling `redactHeader()`. ```java logging.redactHeader("Authorization"); logging.redactHeader("Cookie"); ``` Download --------
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 1.3K bytes - Viewed (0) -
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) -
CHANGELOG.md
requests and remove a common source of non-null assertions (`!!`) on the response body. The alpha releases in the 5.0.0 series have production-quality code and an unstable API. We expect to make changes to the APIs introduced in 5.0.0-alpha.X. These releases are safe for production use and 'alpha' strictly signals that we're still experimenting with some new APIs. If you're eager for the fixes or features below, please upgrade.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 31.6K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
boolean is(String propertyKey); /** * Get the value for the key 'lasta_di.smart.deploy.mode'. <br> * The value is, e.g. warm <br> * comment: The mode of Lasta Di's smart-deploy, should be cool in production (e.g. hot, cool, warm) * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getLastaDiSmartDeployMode(); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java
direction.directLoggingTitle(fessConfig.getDomainTitle(), fessConfig.getEnvironmentTitle()); // this configuration is on sea_env.properties because it has no influence to production // even if you set true manually and forget to set false back direction.directFrameworkDebug(fessConfig.isFrameworkDebug()); // basically false
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.4K 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) -
src/main/resources/fess_label_en.properties
labels.requestFile=Request File labels.sereq_button_upload=Send labels.facet_is_not_found=Not found labels.doc_score=Score: labels.development_mode_warning=Fess is running in development mode. Please install OpenSearch separately in a production environment. labels.eol_error=The system you are using is no longer supported. Please refer to the product support lifecycle page and upgrade. labels.tooltip_search_view=Search Screen labels.tooltip_run_crawler=Run Crawler
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K 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)