- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 1,615 for base16 (0.05 sec)
-
src/main/java/org/codelibs/fess/suggest/normalizer/AnalyzerNormalizer.java
import org.opensearch.transport.client.Client; /** * AnalyzerNormalizer is a class that implements the Normalizer interface. * It uses an OpenSearch client and settings to normalize text based on specified languages. */ public class AnalyzerNormalizer implements Normalizer { /** * The OpenSearch client used for analyzing text. */ protected final Client client; /**
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/UrlConvertHelper.java
import java.util.Map; import org.codelibs.fess.crawler.exception.CrawlerSystemException; /** * Helper class for converting URLs based on a set of predefined rules. * * <p>This class provides functionality to convert URLs by replacing parts of the URL * based on a map of target strings and their corresponding replacements. It allows * adding new conversion rules, setting the entire conversion map, and converting
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java
*/ public int getScore() { int score = 100; // Adjust based on state if (state == ChannelState.ACTIVE) score -= 20; // Busy channel penalty if (state != ChannelState.ESTABLISHED && state != ChannelState.ACTIVE) return 0; // Adjust based on error rate double errorRate = getErrorRate(); if (errorRate > 0.1)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 10.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/PathMatcherFactory.java
/** * Creates a path matcher for filtering files based on include and exclude patterns. * <p> * The pathnames used for matching will be relative to the specified base directory * and use {@code '/'} as separator, regardless of the hosting operating system. * * @param baseDirectory the base directory for relativizing paths during matching
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jul 21 19:37:56 UTC 2025 - 7.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/PackageSanityTests.java
* * @author Ben Yu */ @NullUnmarked public class PackageSanityTests extends AbstractPackageSanityTests { public PackageSanityTests() { setDefault(BaseEncoding.class, BaseEncoding.base64()); setDefault(int.class, 32); setDefault(String.class, "abcd"); setDefault(Method.class, AbstractPackageSanityTests.class.getDeclaredMethods()[0]); setDefault(MapMode.class, MapMode.READ_ONLY);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
protected int allRecordCount; /** The number of records per page. */ protected int pageSize; /** The current page number (1-based). */ protected int currentPageNumber; /** The size of the page range for navigation. */ protected int pageRangeSize; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/JoinerBenchmark.java
*/ package com.google.common.base; import com.google.caliper.BeforeExperiment; import com.google.caliper.Benchmark; import com.google.caliper.Param; import java.util.Arrays; import java.util.Iterator; import org.jspecify.annotations.NullUnmarked; /** * Benchmarks {@link Joiner} against some common implementations of delimiter-based string joining. * * @author Adomas Paltanavicius */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Dec 27 16:19:35 UTC 2024 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/service/FessUrlQueueService.java
/** * Fess-specific URL queue service that extends OpenSearch URL queue functionality. * This service provides customized URL fetching strategies including sequential and random ordering * based on crawling configuration parameters. */ public class FessUrlQueueService extends OpenSearchUrlQueueService { private static final Logger logger = LogManager.getLogger(FessUrlQueueService.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicDouble.java
* cannot be used as a replacement for a {@link Double}. However, this class does extend {@code * Number} to allow uniform access by tools and utilities that deal with numerically-based classes. * * <p><a id="bitEquals"></a>This class compares primitive {@code double} values in methods such as * {@link #compareAndSet} by comparing their bitwise representation using {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
* <li>Document expiration handling</li> * <li>Child URL extraction and queueing</li> * <li>Integration with Fess configuration and permission systems</li> * <li>Client selection based on URL patterns</li> * </ul> * * @see CrawlerThread * @see org.codelibs.fess.crawler.client.CrawlerClient */ public class FessCrawlerThread extends CrawlerThread { /** * Default constructor.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0)