Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 147 for IsBlank (0.12 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

                    for (int i = 0; i < tokens.size(); i++) {
                        final AnalyzeToken token = tokens.get(i);
                        final String word = token.getTerm();
                        if (StringUtil.isBlank(word)) {
                            continue;
                        }
                        final String[] words = { word };
                        final String[][] readings = new String[words.length][];
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    	}
    	gen := &globClosgen
    
    	// There may be multiple functions named "_". In those
    	// cases, we can't use their individual Closgens as it
    	// would lead to name clashes.
    	if outerfn != nil && !IsBlank(outerfn.Nname) {
    		pkg = outerfn.Sym().Pkg
    		outer = FuncName(outerfn)
    
    		switch why {
    		case OCLOSURE:
    			gen = &outerfn.funcLitGen
    		case ORANGE:
    			gen = &outerfn.rangeLitGen
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

         * with Java 6 on old Gradle versions because StringUtils require SQLException which
         * is absent from Java 6.
         */
        public static boolean isBlank(String str) {
            int strLen;
            if (str == null || (strLen = str.length()) == 0) {
                return true;
            }
            for (int i = 0; i < strLen; i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

         *      to record how it will happen.
         */
        SmokeTestGradleRunner expectDeprecationWarning(String warning, String followup) {
            if (followup == null || followup.isBlank()) {
                throw new IllegalArgumentException("Follow up is required! Did you mean to expect a legacy deprecation warning instead?")
            }
            expectedDeprecationWarnings.add(warning)
            return this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SID.java

        public boolean isEmpty () {
            return this.sub_authority_count == 0;
        }
    
    
        /**
         * 
         * @return whether the SID is blank (all sub-authorities zero)
         */
        public boolean isBlank () {
            boolean blank = true;
            for ( int sub : this.sub_authority )
                blank = blank && ( sub == 0 );
            return blank;
        }
    
    
        /**
         * 
         * @return domain SID
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

            return asListHtml();
        }
    
        protected HtmlResponse doSearch(final ListForm form) {
            validate(form, messages -> {}, this::asListHtml);
    
            if (StringUtil.isBlank(form.q)) {
                // query matches on all documents.
                form.q = Constants.MATCHES_ALL_QUERY;
            }
            final WebRenderData renderData = new WebRenderData();
            form.initialize();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

                    }, hook);
                }
            }
        }
    
        private static String[] splitLine(final String value) {
            if (StringUtil.isBlank(value)) {
                return StringUtil.EMPTY_STRINGS;
            }
            final String[] values = value.split("[\r\n]");
            final List<String> list = new ArrayList<>(values.length);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java

                try {
                    final String contentsReadingAnalyzerName = getContentsReadingAnalyzerName(field, lang);
                    if (StringUtil.isBlank(contentsReadingAnalyzerName)) {
                        return null;
                    }
                    final AnalyzeAction.Response analyzeResponse = client.admin().indices().prepareAnalyze(analyzerSettingsIndexName, text)
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. src/internal/abi/type.go

    	v := 0
    	for i := 0; ; i++ {
    		x := *n.DataChecked(off+i, "read varint")
    		v += int(x&0x7f) << (7 * i)
    		if x&0x80 == 0 {
    			return i + 1, v
    		}
    	}
    }
    
    // IsBlank indicates whether n is "_".
    func (n Name) IsBlank() bool {
    	if n.Bytes == nil {
    		return false
    	}
    	_, l := n.ReadVarint(1)
    	return l == 1 && *n.Data(2) == '_'
    }
    
    // writeVarint writes n to buf in varint form. Returns the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            }
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
            String httpAddress = SystemUtil.getSearchEngineHttpAddress();
            if (StringUtil.isBlank(httpAddress) && (runner == null)) {
                switch (fessConfig.getFesenType()) {
                case Constants.FESEN_TYPE_CLOUD:
                case Constants.FESEN_TYPE_AWS:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top