Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Segijn (0.2 sec)

  1. src/packaging/deb/init.d/fess

    # Modified for Tomcat6 by Thierry Carrez <******@****.***>.
    # Additional improvements by Jason Brittain <******@****.***>.
    # Modified by Nicolas Huray for Fess <******@****.***>.
    #
    ### BEGIN INIT INFO
    # Provides:          fess
    # Required-Start:    $network $remote_fs $named
    # Required-Stop:     $network $remote_fs $named
    # Default-Start:     2 3 4 5
    # Default-Stop:      0 1 6
    # Short-Description: Starts fess
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/upgrade/admin_upgrade.jsp

    								<la:message key="labels.upgrade_title_configuration" />
    							</h1>
    						</div>
    					</div>
    				</div>
    			</div>
    			<section class="content">
    				<la:form action="/admin/upgrade/">
    					<%-- Message: BEGIN --%>
    					<div class="col-md-12">
    						<la:info id="msg" message="true">
    							<div class="alert alert-info">${msg}</div>
    						</la:info>
    						<la:errors />
    					</div>
    					<%-- Message: END --%>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/maintenance/admin_maintenance.jsp

                        </div>
                    </div>
                </div>
            </div>
            <section class="content">
                <la:form action="/admin/maintenance/" styleClass="row">
                    <%-- Message: BEGIN --%>
                    <div class="col-md-12">
                        <la:info id="msg" message="true">
                            <div class="alert alert-info">${msg}</div>
                        </la:info>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Jan 16 12:54:35 GMT 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/main/webapp/css/bootstrap.min.css.map

    $state, $data in $form-validation-states {\n  @include form-validation-state($state, map-get($data, color), map-get($data, icon));\n}\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input...
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 626.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

            statsCache.asMap().entrySet().stream().forEach(e -> {
                final StatsObject data = e.getValue();
                final Long begin = data.remove(BEGIN_KEY);
                if (begin != null) {
                    printStats(e.getKey(), data, begin, false);
                }
            });
    
        }
    
        public void begin(final Object keyObj) {
            getCacheKey(keyObj).ifPresent(key -> {
                try {
                    statsCache.get(key);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess/eu/stopwords.txt

    baina
    bat
    batean
    batek
    bati
    batzuei
    batzuek
    batzuetan
    batzuk
    bera
    beraiek
    berau
    berauek
    bere
    berori
    beroriek
    beste
    bezala
    da
    dago
    dira
    ditu
    du
    dute
    edo
    egin
    ere
    eta
    eurak
    ez
    gainera
    gu
    gutxi
    guzti
    haiei
    haiek
    haietan
    hainbeste
    hala
    han
    handik
    hango
    hara
    hari
    hark
    hartan
    hau
    hauei
    hauek
    hauetan
    hemen
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 709 bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/storage/admin_storage_tag_edit.jsp

    										</div>
    										<div class="col-sm-6">
    											<la:message key="labels.storage_tag_value" />
    										</div>
    									</div>
    									<c:forEach var="position" begin="1" end="${savedTags.size()/2}">
    									<c:set var="nameKey">name${position}</c:set>
    									<c:set var="valueKey">value${position}</c:set>
    									<div class="form-group row">
    										<div class="col-sm-6">
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu May 26 01:48:41 GMT 2022
    - 4.4K bytes
    - Viewed (0)
  8. src/main/webapp/css/admin/bootstrap.min.css.map

    $state, $data in $form-validation-states {\n  @include form-validation-state($state, map-get($data, color), map-get($data, icon));\n}\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input...
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 626.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

            super.processStartCrawling(objs);
            if (objs.length > 1 && objs[1] instanceof final UrlQueue<?> urlQueue) {
                ComponentUtil.getCrawlerStatsHelper().begin(urlQueue);
            }
        }
    
        @Override
        protected void processCleanupCrawling(final Object... objs) {
            super.processCleanupCrawling(objs);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  10. src/packaging/rpm/init.d/fess

    #!/bin/sh
    #
    # fess <summary>
    #
    # chkconfig:   2345 80 20
    # description: Starts and stops a single fess instance on this system 
    #
    
    ### BEGIN INIT INFO
    # Provides: Fess
    # Required-Start: $network $named
    # Required-Stop: $network $named
    # Default-Start: 2 3 4 5
    # Default-Stop: 0 1 6
    # Short-Description: This service manages the fess daemon
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
Back to top