Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 86 for isBlank (0.2 sec)

  1. 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 =
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                }
            }
            return LaResponseUtil.getResponse().encodeURL(sb.toString());
        }
    
        public static String sdh(final String input) {
            if (StringUtil.isBlank(input)) {
                return input;
            }
            return ComponentUtil.getDocumentHelper().encodeSimilarDocHash(input);
        }
    
        public static String join(final Object input) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

        }
    
        protected String getScriptType(final DataStoreParams paramMap) {
            final String value = paramMap.getAsString(SCRIPT_TYPE);
            if (StringUtil.isBlank(value)) {
                return Constants.DEFAULT_SCRIPT;
            }
            return value;
        }
    
        protected Object convertValue(final String scriptType, final String template, final Map<String, Object> paramMap) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.3K bytes
    - Viewed (1)
  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;
            }
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 15 14:00:14 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/entity/PingResponse.java

                }
                builder.endObject();
                return builder;
            }, XContentType.JSON)) {
                message = ((ByteArrayOutputStream) out).toString(Constants.UTF_8);
                if (StringUtil.isBlank(message)) {
                    message = "{}";
                }
            } catch (final IOException e) {
                throw new IORuntimeException(e);
            }
        }
    
        public int getStatus() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  6. 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
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/PacLogonInfo.java

                }
    
                // Compute User IDs with Domain ID to get User SIDs
                // First extra is user if userId is empty
                if ( !userId.isEmpty() && !userId.isBlank() ) {
                    this.userSid = new SID(domainId, userId);
                }
                else if ( this.extraSids.length > 0 ) {
                    this.userSid = this.extraSids[ 0 ];
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        protected String crawlingConfigInternal(final CrawlingConfigForm form) {
    
            String configName = form.crawlingConfigName;
            String configPath = form.crawlingConfigPath.trim();
            if (StringUtil.isBlank(configName)) {
                configName = StringUtils.abbreviate(configPath, 30);
            }
    
            // normalize
            final StringBuilder buf = new StringBuilder(1000);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

                }, this::asListHtml);
            }
        }
    
        protected void verifyPassword(final CreateForm form, final VaErrorHook validationErrorLambda) {
            if (form.crudMode == CrudMode.CREATE && StringUtil.isBlank(form.password)) {
                resetPassword(form);
                throwValidationError(messages -> {
                    messages.addErrorsBlankPassword("password");
                }, validationErrorLambda);
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

                    return;
                }
                final String sessionId = initParamMap.getAsString(Constants.SESSION_ID);
                if (StringUtil.isBlank(sessionId)) {
                    logger.warn("Invalid sessionId at {}", dataConfig);
                    return;
                }
                final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
Back to top