Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for templates (0.07 sec)

  1. src/main/java/jcifs/internal/util/SMBUtil.java

         */
        public static void writeUTime(final long t, final byte[] dst, final int dstIndex) {
            writeInt4(t / 1000, dst, dstIndex);
        }
    
        /**
         * SMB1 protocol header template with magic number 0xFF 'SMB'
         */
        public static final byte[] SMB_HEADER = { (byte) 0xFF, (byte) 'S', (byte) 'M', (byte) 'B', (byte) 0x00, (byte) 0x00, (byte) 0x00,
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    # System job IDs for scheduled jobs.
    job.system.job.ids=default_crawler
    # Template for web crawler job title.
    job.template.title.web=Web Crawler - {0}
    # Template for file crawler job title.
    job.template.title.file=File Crawler - {0}
    # Template for data crawler job title.
    job.template.title.data=Data Crawler - {0}
    # Script template for job execution.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/vnd.oasis.opendocument.chart-template">
        <alias type="application/x-vnd.oasis.opendocument.chart-template"/>
        <_comment>OpenDocument v1.0: Chart document used as template</_comment>
        <magic>
          <match type="string" offset="0" value="PK">
            <match type="string" offset="30"
                   value="mimetypeapplication/vnd.oasis.opendocument.chart-template"/>
          </match>
        </magic>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Oct 16 07:46:32 UTC 2025
    - 320.2K bytes
    - Viewed (2)
  4. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

            chains().of(stream -> stream.forEach(c -> c.delete(user)));
        }
    
        /**
         * Loads user information by processing through all authentication chains.
         * @param user The user template containing search criteria.
         * @return The loaded and enriched user information.
         */
        public User load(final User user) {
            User u = user;
            for (final AuthenticationChain chain : chains) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

                }
            }
            return urlList;
        }
    
        /**
         * Retrieves the default crawling configuration template for a given configuration type.
         * The default template is identified by the configured form admin default template name.
         *
         * @param configType the type of configuration (WEB, FILE, or DATA)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 19.5K bytes
    - Viewed (1)
  6. dbflute_fess/dfprop/basicInfoMap.dfprop

        #  The line separator setting for source code of generated classes.
        #   LF   -> converted to LF
        #   CRLF -> converted to CRLF
        #   (no setting) -> no convert (template default is CRLF)
        #
        #; sourceCodeLineSeparator = LF
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.2K bytes
    - Viewed (0)
  7. pom.xml

    								<user>${packaging.fess.user}</user>
    								<group>${packaging.fess.group}</group>
    							</mapper>
    						</data>
    						<!-- Add var directory -->
    						<data>
    							<type>template</type>
    							<paths>
    								<path>${packaging.fess.var.dir}</path>
    							</paths>
    							<mapper>
    								<type>perm</type>
    								<dirmode>755</dirmode>
    								<user>${packaging.fess.user}</user>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 49.4K bytes
    - Viewed (0)
  8. CLAUDE.md

    **Strategy**: `CrawlerClient`, `Extractor`, `Transformer` - pluggable implementations
    **Builder**: `RequestDataBuilder`, `ExtractorBuilder` - fluent construction
    **Template Method**: `AbstractCrawlerClient`, `AbstractExtractor` - common logic with overrides
    **DI**: LastaFlute container with `@Resource` and XML config
    
    ### Core Principles
    
    **Thread Safety**:
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 28 17:31:34 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/persistent/HandleReconnector.java

         * @return true if reconnection was successful
         * @throws Exception if reconnection fails
         */
        protected boolean performReconnection(HandleInfo info) throws Exception {
            // This is a template method that should be implemented by the actual
            // SMB file implementation. For now, we'll provide a basic structure.
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 8.5K bytes
    - Viewed (1)
  10. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

            if (commands == null || commands.length == 0) {
                throw new CommandExecutionException("Command array is null or empty. At least one command must be provided.");
            }
    
            // Log command template with masked password for security
            if (logger.isDebugEnabled()) {
                final String commandStr = stream(commands).get(stream -> stream.map(s -> {
                    if ("$PASSWORD".equals(s)) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 14.4K bytes
    - Viewed (0)
Back to top