- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 162 for checking (0.19 sec)
-
guava-testlib/src/com/google/common/collect/testing/IgnoreJRERequirement.java
import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.ElementType.TYPE; import java.lang.annotation.Target; import org.jspecify.annotations.NullMarked; /** * Disables Animal Sniffer's checking of compatibility with older versions of Java/Android. * * <p>Each package's copy of this annotation needs to be listed in our {@code pom.xml}. */ @Target({METHOD, CONSTRUCTOR, TYPE, FIELD}) @NullMarked
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 02 18:21:28 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleInternal.java
/** * Checks if the server has the specified capability * @param cap the capability flag to check * @return whether the capability is present * @throws CIFSException if an error occurs checking capabilities */ boolean hasCapability(int cap) throws CIFSException; /** * Gets the send buffer size of the underlying SMB connection * @return the send buffer size of the underlying connection
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfigImpl.java
@Override protected ObjectiveProperties newObjectiveProperties(final String resourcePath, final PropertyFilter propertyFilter) { return new ObjectiveProperties(resourcePath) { // for e.g. checking existence and filtering value Cache<String, String> cache = CacheBuilder.newBuilder().build(); @Override public String get(final String propertyKey) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.2K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Parser.java
* This method does interpret tool arguments. * * @param parserRequest the request containing all necessary information for parsing * @return the parsed invoker request. Caller must start by checking {@link InvokerRequest#parsingFailed()} as * if there are parser errors, this request may not be fully processed and should immediately be failed. */ @Nonnull
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 31 20:56:58 UTC 2025 - 1.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcLsarOpenPolicy2Test.java
// Note: Directly verifying super constructor calls is not straightforward in JUnit/Mockito. // We verify the effects of the super constructor by checking the fields of the created object. // Assert object_attributes fields assertNotNull(msrpcLsarOpenPolicy2.object_attributes); assertEquals(24, msrpcLsarOpenPolicy2.object_attributes.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.1K bytes - Viewed (0) -
android/guava/src/com/google/common/io/RecursiveDeleteOption.java
* insecure recursive delete to delete files and directories that are <i>outside</i> the directory * being deleted. This can happen if, after checking that a file is a directory (and not a * symbolic link), that directory is deleted and replaced by a symbolic link to an outside * directory before the call that opens the directory to read its entries. File systems that
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
* * @param searchRequestParams The search request parameters * @param data The search render data to populate with results * @param userBean Optional user information for permission checking */ public void search(final SearchRequestParams searchRequestParams, final SearchRenderData data, final OptionalThing<FessUserBean> userBean) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExceptionTest.java
break; } } assertTrue(foundTestMethod); } public void test_serialVersionUID() { // Test that serialVersionUID is defined (by checking serializability) DictionaryException exception = new DictionaryException("Serialization test"); assertTrue(exception instanceof java.io.Serializable); } public void test_toString() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java
// Test that the exception is serializable StorageException exception = new StorageException("Test serialization"); // Verify that the exception is serializable by checking it extends RuntimeException // which implements Serializable assertTrue(exception instanceof java.io.Serializable); } public void test_longMessageHandling() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacUnicodeStringTest.java
// Current implementation throws NullPointerException when string is null assertThrows(NullPointerException.class, () -> { pacString.check(testString); }, "A NullPointerException is thrown when checking a null string."); } /** * Tests the {@link PacUnicodeString#check(String)} method with a non-empty string when the pointer is zero. * This is an invalid state and should throw an exception. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.7K bytes - Viewed (0)