Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for PREFIX (0.04 sec)

  1. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

        /** Prefix used to identify role-based permissions */
        protected String rolePrefix = "{role}";
    
        /** Prefix used to identify group-based permissions */
        protected String groupPrefix = "{group}";
    
        /** Prefix used to identify user-based permissions */
        protected String userPrefix = "{user}";
    
        /** Prefix used to identify allow permissions */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java

        /**
         * Returns a {@link CopyOptions} with the specified prefix.
         * <p>
         * When a prefix is specified, only the properties from the source whose names start with the prefix will be copied.
         * Additionally, the prefix will be removed from the source property names to determine the target property names.
         * </p>
         *
         * @param prefix
         *            The prefix. Must not be {@literal null} or an empty string.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  3. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

                return this;
            }
    
            /**
             * Sets the namespace prefix of the XML node.
             *
             * @param prefix the namespace prefix of the XML node
             * @return this builder instance
             */
            public Builder prefix(String prefix) {
                this.prefix = prefix;
                return this;
            }
    
            /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jul 19 11:09:56 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

        }
    
        private void verifyPathPattern(String prefix, String basePath) throws Exception {
            // Helper method to verify common pattern
            String baseFieldName = "path_" + prefix + "_" + prefix + "Jsp";
            String detailsFieldName = "path_" + prefix + "_" + prefix + "DetailsJsp";
            String editFieldName = "path_" + prefix + "_" + prefix + "EditJsp";
    
            Field baseField = getFieldIfExists(baseFieldName);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java

    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.plugin.prefix.DefaultPluginPrefixRequest;
    import org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException;
    import org.apache.maven.plugin.prefix.PluginPrefixRequest;
    import org.apache.maven.plugin.prefix.PluginPrefixResolver;
    import org.apache.maven.plugin.prefix.PluginPrefixResult;
    import org.apache.maven.plugin.version.DefaultPluginVersionRequest;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                    final String prefix;
                    if (query != null) {
                        prefix = "ex_q=" + query.split(":")[0] + "%3A";
                    } else {
                        prefix = null;
                    }
                    return pagingQueryList.stream()
                            .filter(s -> prefix == null || !s.startsWith(prefix))
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/TempFileCreator.java

                  + "0 to "
                  + baseName
                  + (TEMP_DIR_ATTEMPTS - 1)
                  + ')');
        }
    
        @Override
        File createTempFile(String prefix) throws IOException {
          return File.createTempFile(
              /* prefix= */ prefix,
              /* suffix= */ null,
              /* directory= */ null /* defaults to java.io.tmpdir */);
        }
    
        /** Maximum loop count when creating temp directories. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/QueryHelper.java

        }
    
        /**
         * Sets the prefix used for highlight field names in search results.
         *
         * @param highlightPrefix the prefix string to use for highlight fields
         */
        public void setHighlightPrefix(final String highlightPrefix) {
            this.highlightPrefix = highlightPrefix;
        }
    
        /**
         * Gets the current highlight prefix used for highlight field names.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        private static final Logger logger = LogManager.getLogger(GsaConfigParser.class);
    
        /** Prefix for regular expression patterns. */
        public static final String REGEXP = "regexp:";
    
        /** Prefix for case-sensitive regular expression patterns. */
        public static final String REGEXP_CASE = "regexpCase:";
    
        /** Prefix for case-insensitive regular expression patterns. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

         * Useful for debugging and displaying content with line references.
         *
         * @param prefix the prefix to add before each line number
         * @param content the content to add line numbers to
         * @return the content with line numbers prepended, or empty string if content is blank
         */
        public String appendLineNumber(final String prefix, final String content) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.2K bytes
    - Viewed (0)
Back to top