Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 147 for IsBlank (0.12 sec)

  1. 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)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java

                final int c = bomIn.read(b);
    
                if (c == -1) {
                    return encoding;
                }
    
                final String head = new String(b, 0, c, encoding);
                if (StringUtil.isBlank(head)) {
                    return encoding;
                }
                final Matcher matcher = getEncodingPattern().matcher(head);
                if (matcher.find()) {
                    final String enc = matcher.group(1);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/action/AnnotationGeneratorWorkAction.kt

                generateImportPackages()
                    .map { "$it.*" } + "" +
                    AnnotationGenerator.ADDITIONAL_DEFAULT_IMPORTS
            return imports.joinToString(separator = "\n") {
                if (it.isBlank()) "" else "import $it"
            }
        }
    
        private
        fun groovyProjectAccessors(): String {
            val objectMethods = Any::class.java.declaredMethods.toList()
            return Project::class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 22 10:58:31 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslReferencePlugin.java

            String commitId = BuildEnvironmentKt.getBuildEnvironmentExtension(project).getGitCommitId().get();
            if (commitId.isBlank() || commitId.toLowerCase().contains("unknown")) {
                // we can't figure out the commit ID (probably this is a source distribution build), let's skip adding source links
                return;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 14:00:14 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            if (xpath == null) {
                xpath = fessConfig.getCrawlerDocumentHtmlCanonicalXpath();
            }
            if (StringUtil.isBlank(xpath)) {
                return null;
            }
            final String canonicalUrl = getSingleNodeValue(document, xpath, node -> node);
            if (StringUtil.isBlank(canonicalUrl)) {
                return null;
            }
            return normalizeCanonicalUrl(responseData.getUrl(), canonicalUrl);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/TasksWithInputsAndOutputs.groovy

                    var content = "content" // set to empty string to delete file
    
                    @TaskAction
                    fun go() {
                        val file = output.get().asFile
                        if (content.isBlank()) {
                            file.delete()
                        } else {
                            file.writeText(content)
                        }
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/code.go

    		}
    		fmt.Fprintf(buf, "%s%s\n", s.prefix, b.Fence)
    	}
    }
    
    func newPre(p *parseState, s line) (line, bool) {
    	peek2 := s
    	if p.para() == nil && peek2.trimSpace(4, 4, false) && !peek2.isBlank() {
    		b := &preBuilder{ /*indent: strings.TrimSuffix(s.string(), peek2.string())*/ }
    		p.addBlock(b)
    		p.corner = p.corner || peek2.nl != '\n' // goldmark does not normalize to \n
    		b.text = append(b.text, peek2.string())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/lang/StringUtil.java

        }
    
        /**
         * ブランクではないかどうか返します。
         *
         * @param str
         *            文字列
         * @return ブランクではなければ{@literal true}
         * @see #isBlank(String)
         */
        public static boolean isNotBlank(final String str) {
            return !isBlank(str);
        }
    
        /**
         * charを含んでいるかどうか返します。
         *
         * @param str
         *            文字列
         * @param ch
         *            char
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. src/go/doc/comment/parse.go

    	for len(lines) > 0 && isBlank(lines[0]) {
    		lines = lines[1:]
    	}
    	for len(lines) > 0 && isBlank(lines[len(lines)-1]) {
    		lines = lines[:len(lines)-1]
    	}
    	if len(lines) == 0 {
    		return nil
    	}
    
    	// Compute and remove common indentation.
    	prefix := leadingSpace(lines[0])
    	for _, line := range lines[1:] {
    		if !isBlank(line) {
    			prefix = commonPrefix(prefix, leadingSpace(line))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                crawler.setSessionId(sid);
                sessionIdList.add(sid);
    
                final String urlsStr = webConfig.getUrls();
                if (StringUtil.isBlank(urlsStr)) {
                    logger.warn("No target urls. Skipped");
                    break;
                }
    
                // interval time
                final int intervalTime =
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top