- Sort Score
- Result 10 results
- Languages All
Results 541 - 550 of 2,612 for creates (0.89 sec)
-
android/guava/src/com/google/common/util/concurrent/FakeTimeLimiter.java
* * @author Kevin Bourrillion * @author Jens Nyman * @since 1.0 */ @J2ktIncompatible @GwtIncompatible public final class FakeTimeLimiter implements TimeLimiter { /** Creates a new {@link FakeTimeLimiter}. */ public FakeTimeLimiter() {} @CanIgnoreReturnValue // TODO(kak): consider removing this @Override public <T> T newProxy(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/SortedSetMultimapTestSuiteBuilder.java
import java.util.Collections; import java.util.EnumSet; import java.util.List; import java.util.Map.Entry; import java.util.Set; import junit.framework.TestSuite; /** * Creates, based on your criteria, a JUnit test suite that exhaustively tests a {@code * SortedSetMultimap} implementation. * * @author Louis Wasserman */ @GwtIncompatible public class SortedSetMultimapTestSuiteBuilder<K, V>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComClose.java
private static final Logger log = LoggerFactory.getLogger(SmbComClose.class); private final int fid; private final long lastWriteTime; /** * Creates a new SMB1 close file request. * * @param config the CIFS configuration * @param fid the file identifier to close * @param lastWriteTime the last write time to set on the file */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Pair.java
* The type of the second value */ public class Pair<T1, T2> { /** The first value */ protected T1 first; /** The second value */ protected T2 second; /** * Creates and returns a pair of two values. * * @param <T1> * The type of the first value * @param <T2> * The type of the second value * @param first
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
* * @return the children of this result, can be empty but never {@code null} */ @Nonnull List<? extends ModelBuilderResult> getChildren(); /** * Creates a human-readable representation of these errors. */ @Override String toString();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
} /** Return value from the RPC call. */ public int retval; /** Policy handle to be closed. */ public rpc.policy_handle handle; /** * Creates a new LsarClose message. * * @param handle the policy handle to close */ public LsarClose(final rpc.policy_handle handle) { this.handle = handle; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
/** * Service class for managing duplicate host configuration CRUD operations. * This service provides functionality to create, read, update, and delete * duplicate host configurations used by the Fess crawler system. * * <p>Duplicate host configurations allow administrators to define hostname patterns * that should be treated as equivalent during crawling. This helps avoid indexing
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
*/ public NbtSocket(final NbtAddress address, final int port, final InetAddress localAddr, final int localPort) throws IOException { this(address, null, port, localAddr, localPort); } /** * Creates a new NetBIOS socket with the specified parameters. * * @param address the NetBIOS address to connect to * @param calledName the called NetBIOS name (optional) * @param port the port number (0 for default)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
/** Map storing MIME type to file type mappings */ protected Map<String, String> mimetypeMap = new LinkedHashMap<>(); /** * Default constructor for file type helper. * Creates a new instance with default values. */ public FileTypeHelper() { // Default constructor } /** * Initializes the file type mappings by loading configuration from Fess settings.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
* retrieval, storage, deletion, and search functionality. */ public class RelatedContentService extends FessAppService { /** * Default constructor. * Creates a new instance of RelatedContentService. */ public RelatedContentService() { super(); } /** * Behavior class for RelatedContent entity operations.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0)