Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for exclude1 (0.04 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. 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)
  3. 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)
  4. 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)
  5. guava-gwt/pom.xml

              </excludes>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-source-plugin</artifactId>
            <configuration>
              <excludes>
                <!-- 3. Don't include it in the source jar (since it's really more of a "test" than it is production code). -->
                <exclude>**/ForceGuavaCompilation*</exclude>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java

         *
         * @param propertyNames
         *            An array of property names. Must not be {@literal null} or an empty array.
         * @return A {@link CopyOptions} with the specified property names to exclude from the operation.
         * @see CopyOptions#exclude(CharSequence...)
         */
        public static CopyOptions exclude(final CharSequence... propertyNames) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

        /**
         * Array of property names to exclude from the operation.
         */
        protected final List<String> excludePropertyNames = newArrayList();
    
        /**
         * Whether to exclude properties with null values from the operation.
         */
        protected boolean excludesNull = false;
    
        /**
         * Whether to exclude strings that consist only of whitespace from the operation.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

                            logger.debug("Path {} matches the exclude path expression {} on {} of label.", path, excludedPaths, value);
                        }
                        return false;
                    }
                    if (logger.isDebugEnabled()) {
                        logger.debug("Path {} does not match the exclude path expression {} on {} of label.", path, excludedPaths, value);
                    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.8K bytes
    - Viewed (0)
  10. 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);
            });
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.9K bytes
    - Viewed (0)
Back to top