Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 517 for generateId (0.13 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

                map.put(crawlingInfoParam.getKey(), crawlingInfoParam.getValue());
            }
            return map;
        }
    
        public String generateId(final Map<String, Object> dataMap) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String url = (String) dataMap.get(fessConfig.getIndexFieldUrl());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java

                try {
                    entity.putAll(fessConfig.convertToStorableDoc(body.doc));
    
                    final String newId = ComponentUtil.getCrawlingInfoHelper().generateId(entity);
                    entity.put(fessConfig.getIndexFieldId(), newId);
    
                    final String index = fessConfig.getIndexDocumentUpdateIndex();
                    searchEngineClient.store(index, entity);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Jul 24 09:03:45 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

            getDoc(form).ifPresent(entity -> {
                try {
                    entity.putAll(fessConfig.convertToStorableDoc(form.doc));
    
                    final String newId = ComponentUtil.getCrawlingInfoHelper().generateId(entity);
                    entity.put(fessConfig.getIndexFieldId(), newId);
    
                    final String index = fessConfig.getIndexDocumentUpdateIndex();
                    searchEngineClient.store(index, entity);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Jul 24 09:03:45 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                putResultDataBody(dataMap, fessConfig.getIndexFieldLang(), fessConfig.getCrawlerDocumentFileDefaultLang());
            }
            // id
            putResultDataBody(dataMap, fessConfig.getIndexFieldId(), crawlingInfoHelper.generateId(dataMap));
            // parentId
            String parentUrl = responseData.getParentUrl();
            if (StringUtil.isNotBlank(parentUrl)) {
                parentUrl = pathMappingHelper.replaceUrl(sessionId, parentUrl);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/QueryHelper.java

            return defaultGeoInfo;
        }
    
        public void setDefaultGeoInfo(final GeoInfo defaultGeoInfo) {
            this.defaultGeoInfo = defaultGeoInfo;
        }
    
        public String generateId() {
            return UUID.randomUUID().toString().replace("-", StringUtil.EMPTY);
        }
    
        public void addBoostFunction(final ScoreFunctionBuilder<?> scoreFunction) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                        }
                    }
                    dataMap.put(fessConfig.getIndexFieldRole(), roleTypeList);
                    final String id = crawlingInfoHelper.generateId(dataMap);
    
                    if (logger.isDebugEnabled()) {
                        logger.debug("Searching indexed document: {}", id);
                    }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            } catch (final Exception e) {
                execTime = StringUtil.EMPTY;
            }
            data.setExecTime(execTime);
    
            final String queryId = ComponentUtil.getQueryHelper().generateId();
    
            data.setPageSize(queryResponseList.getPageSize());
            data.setCurrentPageNumber(queryResponseList.getCurrentPageNumber());
            data.setAllRecordCount(queryResponseList.getAllRecordCount());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            // id
            putResultDataBody(dataMap, fessConfig.getIndexFieldId(), crawlingInfoHelper.generateId(dataMap));
            // parentId
            String parentUrl = responseData.getParentUrl();
            if (StringUtil.isNotBlank(parentUrl)) {
                parentUrl = pathMappingHelper.replaceUrl(sessionId, parentUrl);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  9. istioctl/pkg/tag/generate.go

    	AutoInjectNamespaces bool
    	// CustomLabels are labels to add to the generated webhook.
    	CustomLabels map[string]string
    	// UserManaged indicates whether the revision tag is user managed.
    	// If true, the revision tag will not be affected by the installer.
    	UserManaged bool
    }
    
    // Generate generates the manifests for a revision tag pointed the given revision.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/generate-clients.md

    <img src="/img/tutorial/generate-clients/image01.png">
    
    You can see those schemas because they were declared with the models in the app.
    
    That information is available in the app's **OpenAPI schema**, and then shown in the API docs (by Swagger UI).
    
    And that same information from the models that is included in OpenAPI is what can be used to **generate the client code**.
    
    ### Generate a TypeScript Client
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top