Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 485 for furent (0.6 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/TestEnumSetGenerator.java

      @Override
      public AnEnum[] createArray(int length) {
        return new AnEnum[length];
      }
    
      /** Sorts the enums according to their natural ordering. */
      /*
       * While the current implementation returns `this`, that's not something we mean to guarantee.
       * Callers of TestContainerGenerator.order need to be prepared for implementations to return a new
       * collection.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Feb 11 19:03:19 UTC 2025
    - 2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java

        public void setPageSize(final int size) {
            this.size = Integer.toString(size);
        }
    
        /**
         * Gets the page size for search log results with validation.
         * Returns the default page size if the current size is invalid.
         *
         * @return the validated page size
         */
        public int getPageSize() {
            if (StringUtil.isBlank(size)) {
                return SearchLogPager.DEFAULT_PAGE_SIZE;
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. util/gradle_integration_tests.sh

    # TODO(cpovirk): Find a better way to give them that information.
    cp pom.xml "${GRADLE_TEMP}"
    
    for version in 5.6.4 7.0.2; do
      # Enter a subshell so that we return to the current directory afterward.
      (
        cp -r integration-tests "${GRADLE_TEMP}/${version}"
        cd "${GRADLE_TEMP}/${version}/gradle"
        ./gradlew wrapper --gradle-version="${version}"
        ./gradlew testClasspath
      )
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jan 02 19:24:12 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                    log(buf);
                }
            });
        }
    
        /**
         * Gets the current system time in milliseconds.
         *
         * @return current time in milliseconds
         */
        protected long getCurrentTimeMillis() {
            return ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/UserInfoDbm.java

            return _instance;
        }
    
        // ===================================================================================
        //                                                                       Current DBDef
        //                                                                       =============
        @Override
        public String getProjectName() {
            return null;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  6. docs/es/README.md

    ## Script
    
     - [Groovy](https://github.com/codelibs/fess-script-groovy)
     - [OGNL](https://github.com/codelibs/fess-script-ognl)
    
    ## Información de Desarrollo
    
    ### Obtener el Código Fuente
    
    1. Clona el repositorio de Fess:
        ```
        $ cd ~/workspace
        $ git clone https://github.com/codelibs/fess.git
        ```
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/QueryHelper.java

         */
        public void setHighlightPrefix(final String highlightPrefix) {
            this.highlightPrefix = highlightPrefix;
        }
    
        /**
         * Gets the current highlight prefix used for highlight field names.
         *
         * @return the current highlight prefix
         */
        public String getHighlightPrefix() {
            return highlightPrefix;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        protected String[] fileProtocols = { "file:", "smb:", "smb1:", "ftp:", "storage:" };
    
        /** Queue to track the current XML element hierarchy during parsing. */
        protected LinkedList<String> tagQueue;
    
        /** List to store parsed label types for access control. */
        protected List<LabelType> labelList;
    
        /** Current label type being processed during parsing. */
        protected LabelType labelType;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

            return StringUtil.isBlank(key) ? StringUtil.EMPTY : key;
        }
    
        /**
         * Retrieves related queries for a given search term.
         * The search is performed using the current virtual host context and
         * the query term is converted to lowercase for case-insensitive matching.
         *
         * @param query the search term to find related queries for
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java

        protected DynamicProperties systemProperties;
    
        // ===================================================================================
        //
    
        // GET /api/admin/general
        /**
         * Returns the current general system settings.
         * Excludes sensitive information like LDAP security credentials from the response.
         *
         * @return JSON response containing the general settings configuration
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.7K bytes
    - Viewed (0)
Back to top