- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 3,695 for nulls (0.05 sec)
-
src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionQuery.java
protected void assertObjectNotNull(String variableName, Object value) { if (variableName == null) { String msg = "The value should not be null: variableName=null value=" + value; throw new IllegalArgumentException(msg); } if (value == null) { String msg = "The value should not be null: variableName=" + variableName; throw new IllegalArgumentException(msg); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 21.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
} if (location == null) { location = tracker.getLocation(EMPTY); } } return location != null ? new org.apache.maven.model.InputLocation(location) : null; } private static boolean equals(String s1, String s2) { String c1 = s1 == null ? "" : s1.trim(); String c2 = s2 == null ? "" : s2.trim(); return c1.equals(c2);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 77.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsFileConfig.java
if (available != null) { addFieldToSource(sourceMap, "available", available); } if (boost != null) { addFieldToSource(sourceMap, "boost", boost); } if (configParameter != null) { addFieldToSource(sourceMap, "configParameter", configParameter); } if (createdBy != null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java
if (textObj == null) { continue; } final String text = textObj.toString(); final String lang = document.get(langFieldName) == null ? null : document.get(langFieldName).toString(); final List<AnalyzeToken> tokens = analyzeText(analyzer, field, text, lang); if (tokens == null) { continue; }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 13.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.8K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemSupplier.java
} } private PathProcessor pathProcessor; public final PathProcessor getPathProcessor() { checkClosed(); if (pathProcessor == null) { pathProcessor = createPathProcessor(); } return pathProcessor; } protected PathProcessor createPathProcessor() { return new DefaultPathProcessor(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 45.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PasswordBasedExtractor.java
} protected String getPassword(final Map<String, String> params) { final String url = params != null ? params.get(ExtractData.URL) : null; if (!passwordMap.isEmpty()) { final String resourceName = params != null ? params.get(ExtractData.RESOURCE_NAME_KEY) : null; String value = null; if (StringUtil.isNotEmpty(url)) { value = url;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java
currentPageNumber = getDefaultCurrentPageNumber(); id = null; name = null; handlerName = null; boost = null; available = null; sortOrder = null; createdBy = null; createdTime = null; versionNo = null; description = null; } protected int getDefaultCurrentPageNumber() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/features/MapFeature.java
* {@code get(null)}, {@code keySet().contains(null)} or {@code remove(null)}. */ ALLOWS_NULL_KEY_QUERIES, ALLOWS_NULL_KEYS(ALLOWS_NULL_KEY_QUERIES), /** * The map does not throw {@code NullPointerException} on calls such as {@code * containsValue(null)}, {@code values().contains(null)} or {@code values().remove(null)}. */ ALLOWS_NULL_VALUE_QUERIES,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SchedulerPager.java
currentPageNumber = getDefaultCurrentPageNumber(); id = null; name = null; target = null; cronExpression = null; scriptType = null; crawler = null; jobLogging = null; available = null; sortOrder = null; createdBy = null; createdTime = null; versionNo = null; } protected int getDefaultCurrentPageNumber() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.8K bytes - Viewed (0)