Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for addUrl (0.09 seconds)

  1. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                                throw new WebApiException(HttpServletResponse.SC_NOT_FOUND, "Not found: " + favoriteUrl);
                            }
    
                            if (!favoriteLogService.addUrl(userCode, (userInfo, favoriteLog) -> {
                                favoriteLog.setUserInfoId(userInfo.getId());
                                favoriteLog.setUrl(favoriteUrl);
                                favoriteLog.setDocId(docId);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 27 13:56:32 GMT 2026
    - 55.4K bytes
    - Click Count (1)
  2. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

            final Set<String> candidateFields = new java.util.TreeSet<>();
            candidateFields.addAll(arrayFieldSet);
            candidateFields.addAll(dateFieldSet);
            candidateFields.addAll(integerFieldSet);
            candidateFields.addAll(longFieldSet);
            candidateFields.addAll(floatFieldSet);
            candidateFields.addAll(doubleFieldSet);
            final Map<String, Object> doc = currentForm != null ? currentForm.doc : null;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 25.5K bytes
    - Click Count (1)
  3. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

            final Set<String> allowedQueries = new java.util.HashSet<>();
            for (final FacetQueryView view : facetQueryViewList) {
                allowedQueries.addAll(view.getQueryMap().values());
            }
            final List<String> validQueries = new ArrayList<>();
            for (final String eq : extraQueries) {
                if (eq != null && allowedQueries.contains(eq)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            if (proxy == null) {
                if (StringUtil.isNotBlank(getHttpProxyHost()) && getHttpProxyPortAsInteger() != null) {
                    final SocketAddress addr = new InetSocketAddress(getHttpProxyHost(), getHttpProxyPortAsInteger());
                    proxy = new Proxy(Type.HTTP, addr);
                    if (StringUtil.isNotBlank(getHttpProxyUsername())) {
                        Authenticator.setDefault(new Authenticator() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/exec/Crawler.java

             */
            private static List<String> createConfigIdList(final String[] values) {
                final List<String> idList = new ArrayList<>();
                Collections.addAll(idList, values);
                return idList;
            }
    
            /**
             * Returns a string representation of this Options object.
             * Contains all option values for debugging and logging purposes.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 32.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

         * @param docList list of documents to add
         * @param options callback for customizing index request options
         * @return the bulk response
         */
        public BulkResponse addAll(final String index, final List<Map<String, Object>> docList,
                final BiConsumer<Map<String, Object>, IndexRequestBuilder> options) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
Back to Top