- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 676 for present (0.07 sec)
-
src/test/java/jcifs/smb/SMBProtocolDowngradeExceptionTest.java
// Assert - message preserved, cause null assertEquals(message, ex.getMessage()); assertNull(ex.getCause()); // Assert - toString starts with class name and contains message when present if (message == null) { assertEquals(SMBProtocolDowngradeException.class.getName(), ex.toString()); } else if (message.isEmpty()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileDirectoryLeasingExtension.java
* SMB3 directory leasing is available and enabled. */ public class SmbFileDirectoryLeasingExtension { /** * Private constructor to prevent instantiation of this utility class */ private SmbFileDirectoryLeasingExtension() { // Utility class - prevent instantiation } private static final Logger log = LoggerFactory.getLogger(SmbFileDirectoryLeasingExtension.class); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
facetQueryView.addQuery("label1", "field1:value1"); facetQueryView.addQuery("label2", "field2:value2"); facetQueryView.init(); // Should not modify query map when no filetype queries present assertEquals(2, facetQueryView.getQueryMap().size()); assertEquals("field1:value1", facetQueryView.getQueryMap().get("label1")); assertEquals("field2:value2", facetQueryView.getQueryMap().get("label2"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
* identical. Otherwise, returns true as long as {@code actualType} is present. */ private static boolean matchesType( Optional<PublicSuffixType> desiredType, Optional<PublicSuffixType> actualType) { return desiredType.isPresent() ? desiredType.equals(actualType) : actualType.isPresent(); } /** Returns the domain name, normalized to all lower case. */ @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java
/** * Returns the name of this service. {@link AbstractExecutionThreadService} may include the name * in debugging output. * * <p>Subclasses may override this method. * * @since 14.0 (present in 10.0 as getServiceName) */ protected String serviceName() { return getClass().getSimpleName(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 7.2K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
* * @throws IllegalStateException if multiple charset values have been set for this media type * @throws IllegalCharsetNameException if a charset value is present, but illegal * @throws UnsupportedCharsetException if a charset value is present, but no support is available * in this instance of the Java virtual machine */ public Optional<Charset> charset() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java
assertTrue(parser.getWebConfig().isPresent()); assertTrue(parser.getFileConfig().isPresent()); parser.getWebConfig().ifPresent(config -> { assertTrue(config.getUrls().contains("https://example.com")); assertFalse(config.getUrls().contains("file:///test")); }); parser.getFileConfig().ifPresent(config -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.4K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/Graphs.java
* returns will not be reflected in the set. * * @throws IllegalArgumentException if {@code node} is not present in {@code graph} * @since 33.1.0 (present with return type {@code Set} since 20.0) */ public static <N> ImmutableSet<N> reachableNodes(Graph<N> graph, N node) { checkArgument(graph.nodes().contains(node), NODE_NOT_IN_GRAPH, node);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 01 00:26:14 UTC 2025 - 22.7K bytes - Viewed (0) -
guava/src/com/google/common/graph/Graphs.java
* returns will not be reflected in the set. * * @throws IllegalArgumentException if {@code node} is not present in {@code graph} * @since 33.1.0 (present with return type {@code Set} since 20.0) */ public static <N> ImmutableSet<N> reachableNodes(Graph<N> graph, N node) { checkArgument(graph.nodes().contains(node), NODE_NOT_IN_GRAPH, node);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 01 00:26:14 UTC 2025 - 23.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapGetTester.java
@SuppressWarnings("JUnit4ClassUsedInJUnit3") public class MapGetTester<K, V> extends AbstractMapTester<K, V> { @CollectionSize.Require(absent = ZERO) public void testGet_yes() { assertEquals("get(present) should return the associated value", v0(), get(k0())); } public void testGet_no() { assertNull("get(notPresent) should return null", get(k3())); } @MapFeature.Require(ALLOWS_NULL_KEY_QUERIES)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 3.1K bytes - Viewed (0)