- Sort Score
- Result 10 results
- Languages All
Results 3271 - 3280 of 3,933 for avoid (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java
// Hook // ====== @Override protected void setupHtmlData(final ActionRuntime runtime) { super.setupHtmlData(runtime); runtime.registerData("helpLink", systemHelper.getHelpLink(fessConfig.getOnlineHelpNamePathmap())); } @OverrideRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0) -
maven-tests/src/main/java/com/squareup/okhttp3/maventest/SampleHttpClient.java
import okhttp3.Request; import okhttp3.Response; public class SampleHttpClient { private final OkHttpClient client; public SampleHttpClient() { client = new OkHttpClient.Builder().build(); } public void makeCall(HttpUrl url) throws IOException { try (Response response = client.newCall(new Request(url, Headers.EMPTY, "GET", null)).execute()) { System.out.println(response.body().string()); } }Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 12 12:05:57 UTC 2025 - 1.1K bytes - Viewed (0) -
okhttp-logging-interceptor/README.md
To log to a custom location, pass a `Logger` instance to the constructor. ```java HttpLoggingInterceptor logging = new HttpLoggingInterceptor(new Logger() { @Override public void log(String message) { Timber.tag("OkHttp").d(message); } }); ``` **Warning**: The logs generated by this interceptor when using the `HEADERS` or `BODY` levels have
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 1.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/AccessResultCallback.java
*/ /** * Processes the given access result. * * @param accessResult the result of the access operation to be processed */ void iterate(RESULT accessResult);Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/PasswordForm.java
@NotBlank public String password; /** The confirm password. */ @NotBlank public String confirmPassword; /** * Clears security information. */ public void clearSecurityInfo() { password = null; confirmPassword = null; }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/io/ContentCache.java
* * @param file the file containing the content */ public ContentCache(final File file) { this.data = null; this.file = file; } @Override public void close() throws IOException { if (file != null) { Files.delete(file.toPath()); } } /** * Returns an InputStream to read the content from the cache.Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
*/ @Override protected boolean isDone() { return this.response.isEndOfSearch(); } /** * @throws CIFSException */ @Override protected void doCloseInternal() throws CIFSException { try { @SuppressWarnings("resource") final SmbTreeHandleImpl th = getTreeHandle(); if (this.response != null) {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java
} /** * Sets whether this request is for session binding * * @param sessionBinding * the sessionBinding to set */ public void setSessionBinding(final boolean sessionBinding) { this.sessionBinding = sessionBinding; } /** * {@inheritDoc} *Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java
EmptyLifecycleBindingsInjector.lifecycleRegistry = lifecycleRegistry; EmptyLifecycleBindingsInjector.packagingRegistry = packagingRegistry; } public static void useEmpty() { lifecycleRegistry = EMPTY_LIFECYCLE_REGISTRY; packagingRegistry = EMPTY_PACKAGING_REGISTRY; } private static Plugin newPlugin(String artifactId, String... goals) {Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/LoggerAdapterFactory.java
*/ package org.codelibs.core.log; /** * Factory for creating logger adapters. * * @author koichik */ interface LoggerAdapterFactory { LoggerAdapter getLoggerAdapter(Class<?> clazz); void releaseAll();Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 837 bytes - Viewed (0)