- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 1,414 for empty (0.02 sec)
-
src/main/java/org/codelibs/fess/helper/NotificationHelper.java
buf.append(LF); buf.append(StringEscapeUtils.escapeJson(discloser.getSavedSubject().orElse(StringUtil.EMPTY).trim())); buf.append(LF).append("```"); buf.append(LF).append(StringEscapeUtils.escapeJson(discloser.getSavedPlainText().orElse(StringUtil.EMPTY).trim())); buf.append(LF).append("```\"}"); return buf.toString(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
cmd/net.go
return false, err } var addr1Local, addr2Local bool if host1 == "" { // If empty host means it is localhost addr1Local = true } else if addr1Local, err = isLocalHost(host1, port1, port1); err != nil { // Host not empty, check if it is local return false, err } if host2 == "" { // If empty host means it is localhost addr2Local = true
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jun 19 14:34:00 UTC 2024 - 9.6K bytes - Viewed (1) -
guava/src/com/google/common/collect/Multimap.java
* ordering of the values for each key. * * <p>A non-empty {@link SetMultimap} cannot be equal to a non-empty {@link ListMultimap}, since * their {@link #asMap} views contain unequal collections as values. However, any two empty * multimaps are equal, because they both have empty {@link #asMap} views. */ @Override boolean equals(@Nullable Object obj); /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 15.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
assertEquals(expectedResponse, response); } // Test logout() method public void test_logout_whenNotAvailable() { currentSsoType = Constants.NONE; FessUserBean user = FessUserBean.empty(); assertNull(ssoManager.logout(user)); } public void test_logout_whenAvailableButNoAuthenticator() { currentSsoType = "invalid"; ssoManager = new SsoManager() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/EnumMultiset.java
* @param elements the elements that the multiset should contain * @throws IllegalArgumentException if {@code elements} is empty */ public static <E extends Enum<E>> EnumMultiset<E> create(Iterable<E> elements) { Iterator<E> iterator = elements.iterator(); checkArgument(iterator.hasNext(), "EnumMultiset constructor passed empty Iterable"); EnumMultiset<E> multiset = new EnumMultiset<>(iterator.next().getDeclaringClass());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
* * @param id the unique identifier of the data configuration * @return an OptionalEntity containing the DataConfig if found, empty otherwise * @throws IllegalArgumentException if id is null or empty */ public OptionalEntity<DataConfig> getDataConfig(final String id) { return dataConfigBhv.selectByPK(id); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/smb/StaticJAASConfigurationTest.java
assertNotNull(e.getOptions(), "Options map should not be null"); assertTrue(e.getOptions().isEmpty(), "Default options should be empty"); } @ParameterizedTest @NullSource @ValueSource(strings = { "", "svc/******@****.***" }) @DisplayName("Name parameter is ignored (null/empty/arbitrary)") void nameParameter_isIgnoredAndDoesNotAffectResult(String name) { // Arrange
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Lists.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 42.2K bytes - Viewed (0) -
cmd/bucket-replication-utils.go
} // Empty returns true for a target if arn is empty func (rt replicatedTargetInfo) Empty() bool { return rt.Arn == "" } type replicatedInfos struct { ReplicationTimeStamp time.Time Targets []replicatedTargetInfo } func (ri replicatedInfos) CompletedSize() (sz int64) { for _, t := range ri.Targets { if t.Empty() { continue }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 26K bytes - Viewed (0) -
cmd/batch-job-common-types.go
return nil } // Validate returns an error if key is empty func (kv BatchJobKV) Validate() error { if kv.Key == "" { return BatchJobYamlErr{ line: kv.line, col: kv.col, msg: "key can't be empty", } } return nil } // Empty indicates if kv is not set func (kv BatchJobKV) Empty() bool { return kv.Key == "" && kv.Value == "" }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 7.9K bytes - Viewed (0)