Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 268 for numero (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/Constants.java

        /** Default interval time in milliseconds for web crawling. */
        public static final int DEFAULT_INTERVAL_TIME_FOR_WEB = 10000;
    
        /** Default number of threads for file system crawling. */
        public static final int DEFAULT_NUM_OF_THREAD_FOR_FS = 5;
    
        /** Default number of threads for web crawling. */
        public static final int DEFAULT_NUM_OF_THREAD_FOR_WEB = 1;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 35.8K bytes
    - Click Count (0)
  2. .github/workflows/update-jdks.yml

                @dev-productivity
          - name: Trigger a build
            uses: peter-evans/create-or-update-comment@v5
            if: ${{ steps.create-pull-request.outputs.pull-request-number }}
            with:
              issue-number: ${{ steps.create-pull-request.outputs.pull-request-number }}
              body: |
                @bot-gradle test ReadyForNightly
                ```
                stopGradleDaemons=true
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Dec 09 22:14:16 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  3. dbflute_fess/dfprop/classificationDefinitionMap.dfprop

    #
    # The definition of classification.
    #
    # Specification:
    # map: {
    #     [classification-name] = list:{
    #         ; map:{
    #             ; topComment=[comment]; codeType=[String(default) or Number or Boolean]}
    #             ; undefinedHandlingType=[EXCEPTION or LOGGING(default) or ALLOWED]
    #             ; isUseDocumentOnly=[true or false(default)]
    #             ; isSuppressAutoDeploy=[true or false(default)]
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/ingest/Ingester.java

     * extract additional metadata, or perform other transformations during the
     * indexing process.
     *
     * Ingesters are processed in priority order, with lower numbers having higher priority.
     */
    public abstract class Ingester {
    
        /** Priority of this ingester (lower numbers = higher priority) */
        protected int priority = 99;
    
        /**
         * Default constructor.
         */
        public Ingester() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/service/UserInfoService.java

         */
        public UserInfoService() {
            // Default constructor
        }
    
        /**
         * Deletes user information records older than the specified number of days.
         * This method is used for data cleanup and maintenance operations.
         *
         * @param days the number of days to keep user information records
         */
        public void deleteBefore(final int days) {
            userInfoBhv.queryDelete(cb -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  6. src/main/resources/fess_message.properties

    constraints.URL.message = {item} is not a valid URL.
    constraints.Required.message = {item} is required.
    constraints.TypeInteger.message = {item} must be a number.
    constraints.TypeLong.message = {item} must be a number.
    constraints.TypeFloat.message = {item} must be a number.
    constraints.TypeDouble.message = {item} must be a number.
    constraints.TypeAny.message = {item} cannot be converted to {propertyType}.
    constraints.UriType.message = {item} has an unrecognized URI.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  7. src/main/resources/fess_message_en.properties

    constraints.URL.message = {item} is not a valid URL.
    constraints.Required.message = {item} is required.
    constraints.TypeInteger.message = {item} must be a number.
    constraints.TypeLong.message = {item} must be a number.
    constraints.TypeFloat.message = {item} must be a number.
    constraints.TypeDouble.message = {item} must be a number.
    constraints.TypeAny.message = {item} cannot be converted to {propertyType}.
    constraints.UriType.message = {item} has an unrecognized URI.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

            /** Maximum number of lines to buffer. */
            private final int maxLineBuffer;
    
            /**
             * Constructor for InputStreamThread.
             * @param is The input stream to read from.
             * @param charset The character encoding to use.
             * @param maxOutputLineBuffer The maximum number of lines to buffer.
             */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.4K bytes
    - Click Count (0)
  9. src/packaging/common/packaging.properties

    # Default values for min/max heap memory allocated to fess java process
    packaging.fess.heap.min=256m
    packaging.fess.heap.max=1g
    
    # Specifies the maximum file descriptor number
    packaging.os.max.open.files=65535
    
    # Maximum number of VMA (Virtual Memory Areas) a process can own
    packaging.os.max.map.count=262144
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=tar.gz
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 797 bytes
    - Click Count (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateFixedIssuesInReleaseNotes.kt

    import java.net.http.HttpClient
    import java.net.http.HttpRequest
    import java.net.http.HttpResponse
    
    
    data class GitHubIssueSearchResult(val items: List<GitHubIssue>)
    
    
    data class GitHubIssue(
        val number: Int,
        val title: String,
        @SerializedName("html_url") val htmlUrl: String
    )
    
    
    const val FIXED_ISSUES_INTRO = "The following issues were resolved:"
    
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:49:33 GMT 2026
    - 5.1K bytes
    - Click Count (0)
Back to Top