Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 100 for exclude3 (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/helper/PopularWordHelperTest.java

            assertTrue(result.contains("exclude1"));
        }
    
        @Test
        public void test_getCacheKey_sorting() {
            String seed = "test_seed";
            String[] tags = { "zzz", "aaa", "mmm" };
            String[] roles = { "role3", "role1", "role2" };
            String[] fields = { "field3", "field1", "field2" };
            String[] excludes = { "exclude3", "exclude1", "exclude2" };
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  2. 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);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 7.3K bytes
    - Click Count (0)
  3. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.kt

                    if (shouldInclude(packageName, excludes, includes)) {
                        builder.addWord(packageName)
                    }
                }
            }
    
            private
            fun shouldInclude(packageName: String, excludes: List<String>, includes: List<String>): Boolean {
                for (exclude in excludes) {
                    if ("$packageName/".startsWith("$exclude/")) {
                        for (include in includes) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Apr 11 15:53:18 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  4. .github/workflows/check-markdown-links.yml

            with:
              # excluded:
              # - notes.md and notes-templates.md - because they are a part of user guide
              # - Kotlin's Module.md - because it's a part of the Kotlin DSL docs
              args: >
                --no-progress --offline '**/*.md' --include-fragments
                --exclude-path 'platforms/documentation/docs/src/docs/release/notes.md'
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 25 22:06:44 GMT 2026
    - 920 bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java

            LabelTypePattern pattern = new LabelTypePattern("test", null, "/exclude.*");
    
            // Should match anything except excluded
            assertTrue(pattern.match("/test/path"));
    
            // Should not match excluded path
            assertFalse(pattern.match("/exclude/path"));
        }
    
        @Test
        public void test_labelTypePattern_match_noPatterns() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 12.7K bytes
    - Click Count (0)
  6. pom.xml

    					<webappDirectory>${project.build.directory}/${project.build.finalName}-compress</webappDirectory>
    					<excludes>
    						<exclude>**/*min.js</exclude>
    						<exclude>**/*min.css</exclude>
    						<exclude>**/plugins/**/*.js</exclude>
    						<exclude>**/WEB-INF/site/**</exclude>
    					</excludes>
    					<sourceDirectory>src/main/webapp/js</sourceDirectory>
    				</configuration>
    			</plugin>
    			<plugin>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 49.9K bytes
    - Click Count (0)
  7. src/main/resources/fess_label_en.properties

    labels.authRealm=Realm
    labels.available=Status
    labels.createdBy=Created By
    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
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final SearchForm form) {
            copyBeanToBean(form, dataConfigPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE));
            return asHtml(path_AdminDataconfig_AdminDataconfigJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 21K bytes
    - Click Count (0)
  9. src/main/resources/fess_config.properties

    crawler.document.html.default.include.index.patterns=
    # Patterns to exclude for HTML index processing.
    crawler.document.html.default.exclude.index.patterns=(?i).*(css|js|jpeg|jpg|gif|png|bmp|wmv|xml|ico|exe)
    # Patterns to include for HTML search processing.
    crawler.document.html.default.include.search.patterns=
    # Patterns to exclude for HTML search processing.
    crawler.document.html.default.exclude.search.patterns=
    
    # file
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  10. build-logic-commons/code-quality-rules/build.gradle.kts

    group = "gradlebuild"
    
    dependencies {
        api(platform(projects.buildPlatform))
        compileOnly(localGroovy())
        compileOnly(buildLibs.codenarc) {
            exclude(group = "org.apache.groovy")
            exclude(group = "org.codehaus.groovy")
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 975 bytes
    - Click Count (0)
Back to Top