Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 155 for exclude2 (0.06 sec)

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

            assertTrue(result.contains("exclude1"));
        }
    
        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" };
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11K bytes
    - Viewed (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);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/PathMatcherFactory.java

         * @param includes the patterns of files to include, or null/empty for including all files
         * @param excludes the patterns of files to exclude, or null/empty for no exclusion
         * @param useDefaultExcludes whether to augment excludes with default SCM exclusion patterns
         * @return a PathMatcher that can be used to test if paths should be included
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jul 21 19:37:56 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  4. futures/failureaccess/pom.xml

                  <Multi-Release>true</Multi-Release>
                </manifestEntries>
              </archive>
              <excludes>
                <exclude>/module-info.class</exclude>
                <exclude>META-INF/versions/9/com/google/common/util/concurrent/internal/*.class</exclude>
              </excludes>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-source-plugin</artifactId>
          </plugin>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 18:13:11 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  5. api/maven-api-settings/pom.xml

          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>**/package-info.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
      <reporting>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Jun 29 22:37:39 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  6. api/maven-api-toolchain/pom.xml

            <configuration>
              <excludes>
                <exclude>**/package-info.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
      <reporting>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <configuration>
              <excludes>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Jun 29 22:37:39 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  7. 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"));
        }
    
        public void test_labelTypePattern_match_noPatterns() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  8. android/pom.xml

                <excludes>
                  <!-- The root module (where applicable) is withheld because it is provided at `META-INF/versions/9/`. -->
                  <exclude>/module-info.class</exclude>
                  <!-- Avoid duplicating compiled classes within the `META-INF/versions/9/` root. -->
                  <exclude>META-INF/versions/9/com/**/*.class</exclude>
                </excludes>
                <archive>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  9. pom.xml

                <excludes>
                  <!-- The root module (where applicable) is withheld because it is provided at `META-INF/versions/9/`. -->
                  <exclude>/module-info.class</exclude>
                  <!-- Avoid duplicating compiled classes within the `META-INF/versions/9/` root. -->
                  <exclude>META-INF/versions/9/com/**/*.class</exclude>
                </excludes>
                <archive>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  10. pom.xml

    					<excludes>
    						<exclude>pom.xml</exclude>
    						<exclude>breaking-changes.xml</exclude>
    						<exclude>*.md</exclude>
    						<exclude>*.sh</exclude>
    						<exclude>build.properties</exclude>
    						<exclude>docs/**</exclude>
    						<exclude>src/test/resources/**</exclude>
    						<exclude>**/*.idl</exclude>
    						<exclude>**/*.css</exclude>
    						<exclude>.*</exclude>
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 12.1K bytes
    - Viewed (0)
Back to top