Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for IsBlank (0.33 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                content = extractData.getContent();
                if (fessConfig.isCrawlerDocumentFileIgnoreEmptyContent() && StringUtil.isBlank(content)) {
                    return null;
                }
                if (getLogger().isDebugEnabled()) {
                    getLogger().debug("ExtractData: {}", extractData);
                }
                // meta
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java

        // GET /api/admin/searchlist/docs
        // POST /api/admin/searchlist/docs
        @Execute
        public JsonResponse<ApiResult> docs(final SearchBody body) {
            validateApi(body, messages -> {});
    
            if (StringUtil.isBlank(body.q)) {
                // query matches on all documents.
                body.q = Constants.MATCHES_ALL_QUERY;
            }
    
            final SearchRenderData renderData = new SearchRenderData();
            body.initialize();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                throw new PluginException("Failed to delete the artifact " + fileName, e);
            }
        }
    
        public Artifact getArtifact(final String name, final String version) {
            if (StringUtil.isBlank(name) || StringUtil.isBlank(version)) {
                return null;
            }
            for (final Artifact artifact : getAvailableArtifacts(ArtifactType.getType(name))) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/parse.go

    	for ; p.lineDepth+1 < len(p.stack); p.lineDepth++ {
    		old := s
    		var ok bool
    		s, ok = p.stack[p.lineDepth+1].builder.extend(p, s)
    		if !old.isBlank() && (ok || s != old) {
    			p.stack[p.lineDepth+1].pos.EndLine = p.lineno
    		}
    		if !ok {
    			break
    		}
    	}
    
    	if s.isBlank() {
    		p.trimStack(p.lineDepth + 1)
    		return
    	}
    
    	// Process new prefixes, if any.
    Prefixes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

                return StringUtil.EMPTY; // empty
            }
        }
    
        public Map<String, Object> processRequest(final CrawlingConfig crawlingConfig, final String crawlingInfoId, final String url) {
            if (StringUtil.isBlank(crawlingInfoId)) {
                throw new CrawlingAccessException("sessionId is null.");
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/assign.go

    	// the boolean result of i.(T) is now untyped so we make it the
    	// same type as the variable on the lhs.
    	if ok := n.Lhs[1]; !ir.IsBlank(ok) && ok.Type().IsBoolean() {
    		call.Type().Field(1).Type = ok.Type()
    	}
    	n.Rhs = []ir.Node{call}
    	n.SetOp(ir.OAS2FUNC)
    
    	// don't generate a = *var if a is _
    	if ir.IsBlank(a) {
    		return walkExpr(typecheck.Stmt(n), init)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exec/Crawler.java

            }
        }
    
        private static int process(final Options options) {
            final Crawler crawler = ComponentUtil.getComponent(Crawler.class);
    
            if (StringUtil.isBlank(options.sessionId)) {
                // use a default session id
                final SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
                options.sessionId = sdf.format(new Date());
            } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            // Don't allow paths that are:
            // - empty or blank
            // - the root path
            // - have empty or blank segments (eg `::a`, `a::b`, `a:  :b`, etc)
    
            if (name.isEmpty() || StringUtils.isBlank(name)) {
                throw problemsService.getInternalReporter().throwing(spec -> {
                    spec.id("empty-path", "Empty path", GradleCoreProblemGroup.taskSelection());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

            return split(text, "\n")
                    .get(stream -> stream.map(String::trim).filter(StringUtil::isNotBlank).map(this::getFilterPath).filter(s -> {
                        if (StringUtil.isBlank(s)) {
                            return false;
                        }
                        if (Arrays.stream(webProtocols).anyMatch(p -> s.startsWith(p))) {
                            return web;
                        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            String title = DocumentUtil.getValue(document, fessConfig.getIndexFieldTitle(), String.class);
            if (StringUtil.isBlank(title)) {
                title = DocumentUtil.getValue(document, fessConfig.getIndexFieldFilename(), String.class);
                if (StringUtil.isBlank(title)) {
                    title = DocumentUtil.getValue(document, fessConfig.getIndexFieldUrl(), String.class);
                }
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
Back to top