Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for prepare (0.19 sec)

  1. LICENSE

          this License, each Contributor hereby grants to You a perpetual,
          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
          copyright license to reproduce, prepare Derivative Works of,
          publicly display, publicly perform, sublicense, and distribute the
          Work and such Derivative Works in Source or Object form.
    
       3. Grant of Patent License. Subject to the terms and conditions of
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue May 08 21:35:34 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                            if (keyObj != null) {
                                keyObj.setUrl(processingUrl);
                            }
                            crawlerStatsHelper.record(keyObj, StatsAction.PREPARED);
                            processingUrl = processRequest(paramMap, localDataMap, processingUrl, client);
                            if (processingUrl == null) {
                                break;
                            }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/popper.min.js.map

    enabled: true,\n    /** @prop {ModifierFn} */\n    fn: hide,\n  },\n\n  /**\n   * Computes the style that will be applied to the popper element to gets\n   * properly positioned.\n   *\n   * Note that this modifier will not touch the DOM, it just prepares the styles\n   * so that `applyStyle` modifier can apply it. This separation is useful\n   * in case you need to replace `applyStyle` with a custom implementation.\n   *\n   * This modifier has `850` as `order` value to maintain backward compatibility\n...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 121K bytes
    - Viewed (2)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/SearchBody.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    public class SearchBody extends ListForm {
    
        // `size` is an alias of `num`.
        // `size` is prepared to be compatible with other Admin APIs
        @ValidateTypeFailure
        public Integer size;
    
        @Override
        public void initialize() {
            if (size != null) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/packaging/deb/init.d/fess

    		exit 1
    	fi
    
    	log_daemon_msg "Starting $DESC"
    
    	pid=`pidofproc -p $PID_FILE fess`
    	if [ -n "$pid" ] ; then
    		log_begin_msg "Already running."
    		log_end_msg 0
    		exit 0
    	fi
    
    	# Prepare environment
    	mkdir -p "$LOG_DIR" "$DATA_DIR" && chown "$FESS_USER":"$FESS_GROUP" "$LOG_DIR" "$DATA_DIR"
    
    	# Ensure that the PID_DIR exists (it is cleaned at OS startup time)
    	if [ -n "$PID_DIR" ] && [ ! -e "$PID_DIR" ]; then
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  6. pom.xml

    					<goal>run</goal>
    				</goals>
    			</plugin>
    			<plugin>
    				<artifactId>maven-resources-plugin</artifactId>
    				<executions>
    					<execution>
    						<id>copy-resources-deb</id>
    						<phase>prepare-package</phase>
    						<goals>
    							<goal>copy-resources</goal>
    						</goals>
    						<configuration>
    							<outputDirectory>${project.build.directory}/generated-packaging/deb/</outputDirectory>
    							<filters>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/form-validator/lang/sv.js

    ",groupCheckedEnd:" val",badCreditCard:"Du har angett ett felaktigt kreditkortsnummer",badCVV:"Du har angett ett felaktigt CVV-nummer",wrongFileDim:"Otillåten bildstorlek,",imageTooTall:"bilden får inte vara högre än",imageTooWide:"bilden får inte vara bredare än",imageTooSmall:"bilden är för liten",genericBadInputValue:"The input value can be accepted",min:"minst",max:"max",imageRatioNotAccepted:"Bildens dimensioner (förhållandet mellan höjd och längd) kan inte accepteras"}})}(a,window)});...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 2.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                final String queryId = data.getQueryId();
                final String highlightParams = data.getAppendHighlightParams();
                final boolean nextPage = data.isExistNextPage();
                final boolean prevPage = data.isExistPrevPage();
                final long startRecordNumber = data.getCurrentStartRecordNumber();
                final long endRecordNumber = data.getCurrentEndRecordNumber();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            protected int pageNumber;
            protected long recordCount;
            protected String recordCountRelation;
            protected int pageCount;
            protected boolean nextPage;
            protected boolean prevPage;
            protected long startRecordNumber;
            protected long endRecordNumber;
            protected List<String> pageNumbers;
            protected boolean partial;
            protected long queryTime;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

            ACCESSED, //
            ACCESS_EXCEPTION, //
            CHILD_URL, //
            CHILD_URLS, //
            EVALUATED, //
            EXCEPTION, //
            FINISHED, //
            PARSED, //
            PREPARED, //
            REDIRECTED, //
            PROCESSED,//
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
Back to top