- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 271 for excluded (0.04 sec)
-
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
LabelTypePattern pattern = new LabelTypePattern("test", "/test.*", "/exclude.*"); // Should match included path assertTrue(pattern.match("/test/path")); // Should not match excluded path assertFalse(pattern.match("/exclude/path")); // Should not match non-included path assertFalse(pattern.match("/other/path")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.createdTime=Created Time labels.depth=Depth labels.excludedPaths=Excluded Paths for Crawling labels.excludedUrls=Excluded URLs for Crawling labels.excludedDocPaths=Excluded Paths for Searching labels.excludedDocUrls=Excluded URLs for Searching labels.hostname=Hostname labels.id=ID labels.includedPaths=Included Paths for Crawling labels.includedUrls=Included URLs for Crawling labels.includedDocPaths=Included Paths for Searching
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
if (logger.isInfoEnabled()) { logger.info("Included URL: {}", urlValue); } } else if (line.startsWith(DISABLE_URL_ENCODE)) { urlEncodeDisabled.set(true); } })); // set excluded urls urlEncodeDisabled.set(false);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 24.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java
* * <p>If not all classes on the classpath should be covered, {@link #ignoreClasses} can be used to * exclude certain classes. As a special case, classes with an underscore in the name (like {@code * AutoValue_Foo}) can be excluded using <code>ignoreClasses({@link #UNDERSCORE_IN_NAME})</code>. * * <p>{@link #setDefault} allows subclasses to specify default values for types. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.createdTime=Created Time labels.depth=Depth labels.excludedPaths=Excluded Paths for Crawling labels.excludedUrls=Excluded URLs for Crawling labels.excludedDocPaths=Excluded Paths for Searching labels.excludedDocUrls=Excluded URLs for Searching labels.hostname=Hostname labels.id=ID labels.includedPaths=Included Paths for Crawling labels.includedUrls=Included URLs for Crawling labels.includedDocPaths=Included Paths for Searching
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 40.7K bytes - Viewed (0) -
docs/compression/README.md
To show help on setting compression config values. ```bash ~ mc admin config set myminio compression ``` To enable compression for all content, no matter the extension and content type (except for the default excluded types) set BOTH extensions and mime types to empty. ```bash ~ mc admin config set myminio compression enable="on" extensions="" mime_types="" ``` The compression settings may also be set through environment variables.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
* Retrieves a list of URLs that should be excluded from crawling based on failure counts. * URLs are excluded if they have failed more than the configured failure count threshold. * URLs can also be filtered by failure type using a regular expression pattern. * * @param configId the configuration ID to get excluded URLs for * @return a list of URLs that should be excluded from crawling, or an empty list if none */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/CreateForm.java
import jakarta.validation.constraints.Size; /** * Form class for creating new stopwords dictionary entries. * This form handles the creation of stopwords that should be * excluded from search indexing and analysis. * */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/JvmUtilTest.java
"17:-Xmx4g", // Exact 17 "invalid:pattern", // Invalid pattern "18-:-XX:+UseZGC", // Range from 18 (should be excluded) "11:-XX:+UseG1GC", // Exact 11 (should be excluded) "17-:-XX:+UnlockExperimentalVMOptions" // Range from 17 }; String[] result = JvmUtil.filterJvmOptions(args); assertEquals(5, result.length);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
* @param roles array of roles * @param fields array of fields * @param excludes array of excluded words * @return cache key string */ protected String getCacheKey(final String seed, final String[] tags, final String[] roles, final String[] fields, final String[] excludes) { final StringBuilder buf = new StringBuilder(100); buf.append(seed).append(CACHE_KEY_SPLITTER);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.3K bytes - Viewed (0)