- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 133 for tracks (0.24 sec)
-
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java
import org.apache.commons.lang3.StringUtils; import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.dict.DictionaryItem; /** * Represents an item in a stopwords dictionary. * This class stores a stopword and tracks its updated value. */ public class StopwordsItem extends DictionaryItem { /** The original stopword. */ private final String input; /** The new stopword, if updated. */ private String newInput;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java
import jakarta.validation.constraints.Size; /** * Form class for editing crawling information in the admin interface. * This form handles the editing of crawling session data, which tracks * the status and metadata of web crawling operations. * */ public class EditForm { /** * Creates a new EditForm instance. */ public EditForm() { // Default constructor
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java
import org.codelibs.fess.dict.DictionaryItem; /** * Represents an item in a stemmer override dictionary. * This class stores a mapping from an input word to its corresponding * output stem. It also tracks updated values for the item. */ public class StemmerOverrideItem extends DictionaryItem { /** The original input word. */ private final String input; /** The original output stem. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
import org.codelibs.fess.dict.DictionaryItem; /** * Represents an item in a synonym dictionary. * This class stores a set of input words and their corresponding output synonyms. * It also tracks updated values for the item. */ public class SynonymItem extends DictionaryItem { /** The original input words. */ private final String[] inputs; /** The original output synonyms. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Protocol.kt
*/ HTTP_1_0("http/1.0"), /** * A plaintext framing that includes persistent connections. * * This version of OkHttp implements [RFC 7230][rfc_7230], and tracks revisions to that spec. * * [rfc_7230]: https://tools.ietf.org/html/rfc7230 */ HTTP_1_1("http/1.1"), /** * Chromium's binary-framed protocol that includes header compression, multiplexing multiple
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jun 23 18:58:57 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
*/ public String errorName; /** * The detailed error log or stack trace for the failure. * This field contains the full error information for debugging purposes. */ public String errorLog; /** * The number of times this URL has failed. * This is a required field that tracks repeated failures for the same URL. */ @Required @ValidateTypeFailure
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
guava/src/com/google/common/math/PairedStatsAccumulator.java
import com.google.common.annotations.J2ktIncompatible; import com.google.common.primitives.Doubles; /** * A mutable object which accumulates paired double values (e.g. points on a plane) and tracks some * basic statistics over all the values added so far. This class is not thread safe. * * @author Pete Gillin * @since 20.0 */ @J2ktIncompatible @GwtIncompatible public final class PairedStatsAccumulator {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 10.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Headers.kt
* `Response` for interpreted headers. This class maintains the order of the header fields within * the HTTP message. * * This class tracks header values line-by-line. A field with multiple comma- separated values on * the same line will be treated as a field with a single value by this class. It is the caller's
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:51:25 UTC 2025 - 11.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/concurrent/TaskRunnerTest.kt
"FINE: Q10000 scheduled after 100 µs: task one", "FINE: Q10000 scheduled after 200 µs: task two", ) } /** * We don't track the active task in scheduled tasks. This behavior might be a mistake, but it's * cumbersome to implement properly because the active task might be a cancel. */ @Test fun scheduledTasksDoesNotIncludeRunningTask() { val task =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 23K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
// Create a mock crawlingInfoHelper that tracks status updates final Map<String, String> statusMap = new HashMap<>(); CrawlingInfoHelper testCrawlingInfoHelper = new CrawlingInfoHelper() { private final Map<String, String> infoMap = new HashMap<>(); @Override public void store(String sessionId, boolean running) { // Track the final status if (!running) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0)