- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 1,227 for logger (0.09 sec)
-
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
import org.opensearch.threadpool.ThreadPool; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jakarta.annotation.PreDestroy; public class FesenClient implements Client { public static final String HTTP_ADDRESS = "crawler.opensearch.http_address"; public static final String TARGET_INDICES = "crawler.opensearch.target_indices"; private static final Logger logger = LoggerFactory.getLogger(FesenClient.class);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/jar/JarFileUtil.java
import org.codelibs.core.io.FileUtil; import org.codelibs.core.log.Logger; import org.codelibs.core.net.JarURLConnectionUtil; import org.codelibs.core.net.URLUtil; /** * {@link java.util.jar.JarFile}を扱うユーティリティクラスです。 * * @author higa */ public abstract class JarFileUtil { private static final Logger logger = Logger.getLogger(JarFileUtil.class); /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/zip/ZipFileUtil.java
import org.codelibs.core.exception.IORuntimeException; import org.codelibs.core.io.FileUtil; import org.codelibs.core.log.Logger; import org.codelibs.core.net.URLUtil; /** * {@link java.util.zip.ZipFile}を扱うユーティリティクラスです。 * * @author higa */ public abstract class ZipFileUtil { private static final Logger logger = Logger.getLogger(ZipFileUtil.class); /** * 指定されたZipファイルを読み取るための<code>ZipFile</code>を作成して返します。 *
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.1K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/UserPropertiesArtifactRelocationSource.java
@Priority(50) @Deprecated(since = "4.0.0") public final class UserPropertiesArtifactRelocationSource implements MavenArtifactRelocationSource { public static final String NAME = "userProperties"; private static final Logger LOGGER = LoggerFactory.getLogger(UserPropertiesArtifactRelocationSource.class); private static final String CONFIG_PROP_RELOCATIONS_ENTRIES = "maven.relocations.entries";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
private static final String TRY_STATEMENT = "<!--TRY-->"; public static final String ROLE = "admin-design"; private static final Logger logger = LogManager.getLogger(AdminDesignAction.class); // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 16.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
} } else if (logger.isDebugEnabled()) { logger.debug("{}:{} is ignored.", name, version); } } } } catch (final Exception e) { logger.warn("Failed to parse {}maven-metadata.xml.", pluginUrl, e); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
import org.opensearch.action.search.SearchResponse; import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; public class IndexingHelper { private static final Logger logger = LogManager.getLogger(IndexingHelper.class); protected int maxRetryCount = 5; protected int defaultRowSize = 100; protected long requestInterval = 500;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 16.8K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt
if (assertionsEnabled && taskRunner.lock.isHeldByCurrentThread) { throw AssertionError("Thread ${Thread.currentThread().name} MUST NOT hold lock on $this") } } val logger = Logger.getLogger("TaskFaker." + instance++) /** Though this executor service may hold many threads, they are not executed concurrently. */ private val tasksExecutor = Executors.newCachedThreadPool(threadFactory("TaskFaker"))
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 29 00:33:04 UTC 2024 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
if (!allowEmptyGroupAndRole(ldapUser)) { if (logger.isDebugEnabled()) { logger.debug("Login failed. No permissions. {}", context); } return OptionalEntity.empty(); } if (logger.isDebugEnabled()) { logger.debug("Logged in. {}", context); } return OptionalEntity.of(ldapUser);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 65.9K bytes - Viewed (0) -
cmd/bucket-policy-handlers.go
package cmd import ( "bytes" "encoding/json" "io" "net/http" humanize "github.com/dustin/go-humanize" "github.com/minio/madmin-go/v3" "github.com/minio/minio/internal/logger" "github.com/minio/mux" "github.com/minio/pkg/v3/policy" ) const ( // As per AWS S3 specification, 20KiB policy JSON data is allowed. maxBucketPolicySize = 20 * humanize.KiByte
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 6.1K bytes - Viewed (0)