- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 316 for Logging (0.09 seconds)
-
okhttp-logging-interceptor/api/logging-interceptor.api
} public final class okhttp3/logging/HttpLoggingInterceptor$Level : java/lang/Enum { public static final field BASIC Lokhttp3/logging/HttpLoggingInterceptor$Level; public static final field BODY Lokhttp3/logging/HttpLoggingInterceptor$Level; public static final field HEADERS Lokhttp3/logging/HttpLoggingInterceptor$Level; public static final field NONE Lokhttp3/logging/HttpLoggingInterceptor$Level;Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Oct 07 15:15:46 GMT 2025 - 4.6K bytes - Click Count (0) -
okhttp/src/jvmMain/java9/module-info.java
exports okhttp3.internal.http to okhttp3.logging, okhttp3.brotli, mockwebserver3; exports okhttp3.internal.http2 to mockwebserver3, okhttp3.mockwebserver; exports okhttp3.internal.platform to okhttp3.logging, okhttp3.java.net.cookiejar, okhttp3.dnsoverhttps, mockwebserver3, okhttp3.mockwebserver, okhttp3.tls; exports okhttp3.internal.publicsuffix to okhttp3.dnsoverhttps;
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 992 bytes - Click Count (0) -
okhttp-logging-interceptor/README.md
Logging Interceptor =================== An [OkHttp interceptor][interceptors] which logs HTTP request and response data. ```java HttpLoggingInterceptor logging = new HttpLoggingInterceptor(); logging.setLevel(Level.BASIC); OkHttpClient client = new OkHttpClient.Builder() .addInterceptor(logging) .build(); ``` You can change the log level at any time by calling `setLevel()`.
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Oct 30 21:39:59 GMT 2025 - 1.3K bytes - Click Count (0) -
okhttp-logging-interceptor/build.gradle.kts
id("okhttp.jvm-conventions") id("okhttp.quality-conventions") id("okhttp.testing-conventions") } project.applyOsgi( "Export-Package: okhttp3.logging", "Bundle-SymbolicName: com.squareup.okhttp3.logging", ) project.applyJavaModules("okhttp3.logging") dependencies { "friendsApi"(projects.okhttp) testImplementation(libs.junit) testImplementation(projects.mockwebserver3)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 633 bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java
assertNotNull(result); assertTrue(result instanceof DefaultQueryBuilder); // Verify query was processed // Note: Field logging behavior depends on implementation } @Test public void test_convertPhraseQuery_singleTerm_defaultField_dismax() { // Test with single term in default field with boost > 1Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java
// Logging Enabled: jobLogId // =========================== @Test public void test_put$start_loggingEnabled_returnsJobLogId() throws Exception { // Setup: job with logging enabled final AtomicReference<LaunchNowOption> capturedOption = new AtomicReference<>();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 13K bytes - Click Count (0) -
.teamcity/test-buckets.json
{ "subprojects": [ "base-ide-plugins", "build-process-services", "docs-asciidoctor-extensions-base", "gradle-cli", "isolated-action-services", "logging-api", "plugin-use", "serialization", "time", "toolchains-jvm-shared", "versioned-cache" ], "parallelizationMethod": {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 18:38:15 GMT 2026 - 118.6K bytes - Click Count (0) -
settings.gradle.kts
include(":samples:unixdomainsockets") include(":container-tests") val okhttpModuleTests: String by settings if (okhttpModuleTests.toBoolean()) { include(":module-tests") } project(":okhttp-logging-interceptor").name = "logging-interceptor" val androidHome = System.getenv("ANDROID_HOME") val localProperties = java.util.Properties().apply { val file = rootProject.projectDir.resolve("local.properties") if (file.exists()) {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Feb 05 09:17:33 GMT 2026 - 2.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
import java.util.Collections; import java.util.List; import java.util.Properties; import java.util.regex.Pattern; import org.apache.commons.io.FileUtils; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.lang.StringUtil; import org.codelibs.core.timer.TimeoutManager; import org.codelibs.core.timer.TimeoutTask; import org.codelibs.fess.Constants;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.2K bytes - Click Count (0) -
pom.xml
<groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.16</version> <optional>true</optional> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.3.5</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId>
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Dec 20 04:15:34 GMT 2025 - 4.9K bytes - Click Count (0)