Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for Stuart (0.22 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        HtmlNext path_AdminWizard_AdminWizardConfigJsp = new HtmlNext("/admin/wizard/admin_wizard_config.jsp");
    
        /** The path of the HTML: /admin/wizard/admin_wizard_start.jsp */
        HtmlNext path_AdminWizard_AdminWizardStartJsp = new HtmlNext("/admin/wizard/admin_wizard_start.jsp");
    
        /** The path of the HTML: /advance.jsp */
        HtmlNext path_AdvanceJsp = new HtmlNext("/advance.jsp");
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (2)
  2. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

            }
            if ( !dr.getPath().isEmpty() ) {
                dunc = "\\" + dr.getPath() + dunc;
            }
    
            if ( dunc.charAt(0) != '\\' ) {
                log.warn("No slash at start of remaining DFS path " + dunc);
            }
    
            this.unc = dunc;
            if ( dr.getShare() != null && !dr.getShare().isEmpty() ) {
                this.share = dr.getShare();
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  3. LICENSE

    redistribution under these terms (or, alternatively, under the terms of the
    ordinary General Public License).
    
      To apply these terms, attach the following notices to the library.  It is
    safest to attach them to the start of each source file to most effectively
    convey the exclusion of warranty; and each file should have at least the
    "copyright" line and a pointer to where the full notice is found.
    
        {description}
    Plain Text
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    page.thumbnail.purge.max.fetch.size=100
    page.score.booster.max.fetch.size=1000
    page.searchlog.max.fetch.size=10000
    
    page.searchlist.track.total.hits=true
    
    # search page
    paging.search.page.start=0
    paging.search.page.size=10
    paging.search.page.max.size=100
    
    searchlog.agg.shard.size=-1
    searchlog.request.headers=
    
    thumbnail.html.image.min.width=100
    thumbnail.html.image.min.height=100
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  5. src/main/java/jcifs/smb/DfsImpl.java

                throws SmbAuthException {
            DfsReferralDataInternal res = null;
            DfsReferralDataInternal start = dr;
            DfsReferralDataInternal r = start;
            do {
                r = start.next();
                String refPath = dr.getPath() != null ? '\\' + dr.getPath() : "";
                String nextPath = refPath + ( path != null ? path.substring(r.getPathConsumed()) : "" );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

    
        @Override
        protected int readParameterWordsWireFormat ( byte[] buffer, int bufferIndex ) {
            int start = bufferIndex;
    
            this.dialectIndex = SMBUtil.readInt2(buffer, bufferIndex);
            bufferIndex += 2;
            if ( this.dialectIndex > 10 ) {
                return bufferIndex - start;
            }
            this.server.securityMode = buffer[ bufferIndex++ ] & 0xFF;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 15.4K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_details.jsp

                                            <button type="submit" class="btn btn-success" name="start"
                                                    value="<la:message key="labels.scheduledjob_button_start" />">
                                                <em class="fa fa-play-circle">
                                                <la:message key="labels.scheduledjob_button_start"/>
                                            </button>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 12K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

            });
            return redirect(getClass());
        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse start(final EditForm form) {
            verifyCrudMode(form.crudMode, CrudMode.DETAILS);
            final String id = form.id;
            validate(form, messages -> {}, () -> asDetailsHtml(id));
            verifyToken(() -> asDetailsHtml(id));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

            getAvailableBoostDocumentRuleList().forEach(rule -> {
                indexUpdater.addDocBoostMatcher(new org.codelibs.fess.indexer.DocBoostMatcher(rule));
            });
            indexUpdater.start();
    
            int startedCrawlerNum = 0;
            int activeCrawlerNum = 0;
            try {
                while (startedCrawlerNum < crawlerList.size()) {
                    // Force to stop crawl
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

                    pb.directory(baseDir);
                    pb.redirectErrorStream(true);
                });
    
                final InputStreamThread it = jobProcess.getInputStreamThread();
                it.start();
    
                final Process currentProcess = jobProcess.getProcess();
                currentProcess.waitFor();
                it.join(5000);
    
                final int exitValue = currentProcess.exitValue();
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.5K bytes
    - Viewed (0)
Back to top