- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 652 for contracts (0.05 sec)
-
guava/src/com/google/common/base/Objects.java
* {@link Object#equals(Object)}. * <li>{@code false} in all other situations. * </ul> * * <p>This assumes that any non-null objects passed to this function conform to the {@code * equals()} contract. * * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated; use {@link * java.util.Objects#equals} instead. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 28 22:51:26 UTC 2025 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/AddressTest.java
import java.net.UnknownHostException; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import org.mockito.Mock; /** * Comprehensive test suite for Address interface. * Tests the contract and behavior of Address implementations. */ @DisplayName("Address Interface Tests") class AddressTest extends BaseTest { @Mock private CIFSContext mockContext; @Mock
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/UserRoleLoginException.java
private static final long serialVersionUID = 1L; /** The action class that requires specific user roles */ private final Class<?> actionClass; /** * Constructs a new UserRoleLoginException with the specified action class. * * @param actionClass the action class that requires specific user roles */ public UserRoleLoginException(final Class<RootAction> actionClass) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrSmall.java
*/ public class NdrSmall extends NdrObject { /** * The small integer value (0-255) */ public int value; /** * Constructs an NdrSmall with the specified value * @param value the small integer value (will be masked to 0-255 range) */ public NdrSmall(final int value) { this.value = value & 0xFF; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/suggest/SuggestForm.java
*/ package org.codelibs.fess.app.web.admin.suggest; /** * This class is a form for suggest settings. */ public class SuggestForm { /** * Constructs a new suggest form. */ public SuggestForm() { // do nothing }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 862 bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java
/** * Constructs an SMB2 IOCTL request with an unspecified file ID * @param config the client configuration * @param controlCode the IOCTL control code */ public Smb2IoctlRequest(final Configuration config, final int controlCode) { this(config, controlCode, Smb2Constants.UNSPECIFIED_FILEID); } /** * Constructs an SMB2 IOCTL request with a specified file ID
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassIterator.java
return () -> new ClassIterator(clazz, includeObject); } /** * Constructs an instance. * * @param clazz * the class (must not be {@literal null}) */ public ClassIterator(final Class<?> clazz) { this(clazz, true); } /** * Constructs an instance. * * @param clazz the class (must not be {@literal null})
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/EnumerationIterator.java
assertArgumentNotNull("enumeration", enumeration); return () -> new EnumerationIterator<>(enumeration); } /** * Constructs an instance of an {@link Iterator} wrapping an {@link Enumeration}. * * @param enumeration the enumeration (must not be {@literal null}) */ public EnumerationIterator(final Enumeration<T> enumeration) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2SetInfoResponse.java
* modification of file or security information. * * @author mbechler * */ public class Smb2SetInfoResponse extends ServerMessageBlock2Response { /** * Constructs a SMB2 set info response with the specified configuration * * @param config * the configuration to use for this response */ public Smb2SetInfoResponse(final Configuration config) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/ArrayListMultimap.java
* underlying data structure. */ public static <K extends @Nullable Object, V extends @Nullable Object> ArrayListMultimap<K, V> create() { return new ArrayListMultimap<>(); } /** * Constructs an empty {@code ArrayListMultimap} with enough capacity to hold the specified * numbers of keys and values without resizing. * * <p>You may also consider the equivalent {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.8K bytes - Viewed (0)