Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,201 for languages (1.35 sec)

  1. src/main/java/org/codelibs/fess/query/QueryCommand.java

                if (searchField.equals(field)) {
                    return true;
                }
            }
            return false;
        }
    
        /**
         * Gets the query languages from the current request.
         * @return An optional containing the query languages array, or empty if not available.
         */
        protected OptionalThing<String[]> getQueryLanguages() {
            return LaRequestUtil.getOptionalRequest()
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                } else {
                    searchLog.setAccessType(Constants.SEARCH_LOG_ACCESS_TYPE_WEB);
                }
                final Object languages = req.getAttribute(Constants.REQUEST_LANGUAGES);
                if (languages != null) {
                    searchLog.setLanguages(StringUtils.join((String[]) languages, ","));
                } else {
                    searchLog.setLanguages(StringUtil.EMPTY);
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  3. src/main/config/es/fess_log_search_log.json

                "type" : "keyword"
              },
              "hitCount" : {
                "type" : "long"
              },
              "hitCountRelation" : {
                "type" : "keyword"
              },
              "languages" : {
                "type" : "keyword"
              },
              "queryId" : {
                "type" : "keyword"
              },
              "queryOffset" : {
                "type" : "integer"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Apr 12 15:00:27 UTC 2019
    - 2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        /**
         * Returns the conditions.
         *
         * @return The conditions.
         */
        public abstract Map<String, String[]> getConditions();
    
        /**
         * Returns the languages.
         *
         * @return The languages.
         */
        public abstract String[] getLanguages();
    
        /**
         * Returns the geo info.
         *
         * @return The geo info.
         */
        public abstract GeoInfo getGeoInfo();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/PrimitiveSink.java

      /**
       * Puts each 16-bit code unit from the {@link CharSequence} into this sink.
       *
       * <p><b>Warning:</b> This method will produce different output than most other languages do when
       * running on the equivalent input. For cross-language compatibility, use {@link #putString},
       * usually with a charset of UTF-8. For other use cases, use {@code putUnencodedChars}.
       *
       * @since 15.0 (since 11.0 as putString(CharSequence))
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

            String query = "";
            Map<String, String[]> fields = new HashMap<>();
            Map<String, String[]> conditions = new HashMap<>();
            String[] languages = new String[0];
            GeoInfo geoInfo = null;
            FacetInfo facetInfo = null;
            HighlightInfo highlightInfo = null;
            String sort = "";
            int startPosition = 0;
            int pageSize = 10;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsSearchLogBhv.java

                result.setHitCount(DfTypeUtil.toLong(source.get("hitCount")));
                result.setHitCountRelation(DfTypeUtil.toString(source.get("hitCountRelation")));
                result.setLanguages(DfTypeUtil.toString(source.get("languages")));
                result.setQueryId(DfTypeUtil.toString(source.get("queryId")));
                result.setQueryOffset(DfTypeUtil.toInteger(source.get("queryOffset")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/log/cbean/bs/BsSearchLogCB.java

            }
    
            public void columnHitCountRelation() {
                doColumn("hitCountRelation");
            }
    
            public void columnLanguages() {
                doColumn("languages");
            }
    
            public void columnQueryId() {
                doColumn("queryId");
            }
    
            public void columnQueryOffset() {
                doColumn("queryOffset");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java

        /** The page number. */
        @ValidateTypeFailure
        public Integer pn;
    
        /** The number of results to display. */
        @ValidateTypeFailure
        public Integer num;
    
        /** The languages. */
        public String[] lang;
    
        /** The fields. */
        public Map<String, String[]> fields = new HashMap<>();
    
        /** The conditions. */
        public Map<String, String[]> as = new HashMap<>();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/hash/HashingTest.java

        assertEquals(Hashing.consistentHash(equivLong, 5555), Hashing.consistentHash(hashCode, 5555));
      }
    
      /**
       * Check a few "golden" values to see that implementations across languages are equivalent.
       *
       */
      public void testConsistentHash_linearCongruentialGeneratorCompatibility() {
        int[] golden100 = {
          0, 55, 62, 8, 45, 59, 86, 97, 82, 59,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 26.4K bytes
    - Viewed (2)
Back to top