Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for PREFIX (0.05 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. module.xml

    			<url url="${repo.url}/${module.groupId}/${module.name.prefix}${module.name}/${module.version}/${module.name.prefix}${module.name}-${module.zip.version}.zip" />
    		</get>
    		<unzip dest="${modules.dir}/${module.name}" src="${target.dir}/${module.name.prefix}${module.name}-${module.zip.version}.zip">
    			<patternset>
    				<include name="**" />
    			</patternset>
    			<cutdirsmapper dirs="1" />
    		</unzip>
    	</target>
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java

            assertArgumentNotNull("prefix", prefix);
            assertArgumentNotNull("handler", handler);
    
            final int pos = prefix.length();
            for (final JarEntry entry : iterable(jarFile.entries())) {
                if (!entry.isDirectory()) {
                    final String entryName = entry.getName().replace('\\', '/');
                    if (!entryName.startsWith(prefix)) {
                        continue;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/NtStatusTest.java

            int[] errorStatuses =
                    { NtStatus.NT_STATUS_ACCESS_DENIED, NtStatus.NT_STATUS_OBJECT_NAME_NOT_FOUND, NtStatus.NT_STATUS_SHARING_VIOLATION };
    
            // When/Then - All error codes should have high bit set (0xC prefix)
            for (int status : errorStatuses) {
                assertTrue((status & (int) 0xC0000000L) == (int) 0xC0000000L,
                        "Error status should have severity bits set to 0xC: " + Integer.toHexString(status));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. plugin.xml

    		</get>
    		<unzip dest="${plugins.dir}/${plugin.name}" src="${target.dir}/${plugin.name.prefix}${plugin.name}-${plugin.zip.version}.zip">
    			<patternset>
    				<include name="**" />
    			</patternset>
    			<cutdirsmapper dirs="1" />
    		</unzip>
    	</target>
    
    	<target name="remove.jars" if="with.fess">
    		<delete>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/ParameterUtil.java

        /** The XPath field prefix. */
        protected static final String XPATH_PREFIX = "field.xpath.";
    
        /** The meta field prefix. */
        protected static final String META_PREFIX = "field.meta.";
    
        /** The value field prefix. */
        protected static final String VALUE_PREFIX = "field.value.";
    
        /** The script field prefix. */
        protected static final String SCRIPT_PREFIX = "field.script.";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top