Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,064 for nulla (0.19 sec)

  1. src/main/java/org/codelibs/core/misc/Pair.java

            final Pair<T1, T2> other = (Pair<T1, T2>) obj;
            if (first == null) {
                if (other.first != null) {
                    return false;
                }
            } else if (!first.equals(other.first)) {
                return false;
            }
            if (second == null) {
                if (other.second != null) {
                    return false;
                }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsRelatedQuery.java

            if (createdBy != null) {
                addFieldToSource(sourceMap, "createdBy", createdBy);
            }
            if (createdTime != null) {
                addFieldToSource(sourceMap, "createdTime", createdTime);
            }
            if (queries != null) {
                addFieldToSource(sourceMap, "queries", queries);
            }
            if (term != null) {
                addFieldToSource(sourceMap, "term", term);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsBadWord.java

            if (createdBy != null) {
                addFieldToSource(sourceMap, "createdBy", createdBy);
            }
            if (createdTime != null) {
                addFieldToSource(sourceMap, "createdTime", createdTime);
            }
            if (suggestWord != null) {
                addFieldToSource(sourceMap, "suggestWord", suggestWord);
            }
            if (targetLabel != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/user/allcommon/EsSqlClause.java

            return null;
        }
    
        @Override
        protected String createFromHint() {
            return null;
        }
    
        @Override
        protected String createSqlSuffix() {
            return null;
        }
    
        @Override
        public void fetchFirst(int fetchSize) {
            _fetchScopeEffective = true;
            if (fetchSize < 0) {
                String msg = "Argument[fetchSize] should be plus: " + fetchSize;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            if (providerUrl != null && providerUrl.startsWith("ldaps://")) {
                putEnv(env, Context.SECURITY_PROTOCOL, "ssl");
            }
            return env;
        }
    
        protected void putEnv(final Hashtable<String, String> env, final String key, final String value) {
            if (value == null) {
                throw new LdapConfigurationException(key + " is null.");
            }
            env.put(key, value);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

        }
    
        public void myspecifyPropertyCancel(String propertyName) {
            if (__specifiedProperties != null) {
                __specifiedProperties.remove(propertyName);
            }
        }
    
        public void clearSpecifiedInfo() {
            if (__specifiedProperties != null) {
                __specifiedProperties.clear();
            }
        }
    
        protected void checkSpecifiedProperty(String propertyName) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/BsThumbnailQueue.java

            if (createdBy != null) {
                addFieldToSource(sourceMap, "createdBy", createdBy);
            }
            if (createdTime != null) {
                addFieldToSource(sourceMap, "createdTime", createdTime);
            }
            if (generator != null) {
                addFieldToSource(sourceMap, "generator", generator);
            }
            if (path != null) {
                addFieldToSource(sourceMap, "path", path);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/PACDecodingException.java

        private static final long serialVersionUID = 1L;
    
    
        public PACDecodingException () {
            this(null, null);
        }
    
    
        public PACDecodingException ( String message ) {
            this(message, null);
        }
    
    
        public PACDecodingException ( Throwable cause ) {
            this(null, cause);
        }
    
    
        public PACDecodingException ( String message, Throwable cause ) {
            super(message, cause);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/convert/BigDecimalConversionUtil.java

            return toBigDecimal(o, null);
        }
    
        /**
         * {@link BigDecimal}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @param pattern
         *            パターン文字列
         * @return 変換された{@link BigDecimal}
         */
        public static BigDecimal toBigDecimal(final Object o, final String pattern) {
            if (o == null) {
                return null;
            } else if (o instanceof BigDecimal) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

                throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateInstance(GLOBAL));
                return null;
            }).orElseGet(() -> {
                throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateInstance(GLOBAL));
                return null;
            });
            protwordsService.store(body.dictId, entity);
            return asJson(
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.2K bytes
    - Viewed (0)
Back to top