- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 55 for Instantiations (0.06 sec)
-
src/main/java/org/codelibs/curl/Curl.java
*/ public static final File tmpDir = new File(System.getProperty("java.io.tmpdir")); /** * Private constructor to prevent instantiation. */ protected Curl() { // nothing } /** * Creates a new CurlRequest with the HTTP GET method for the specified URL. * * @param url the URL to send the GET request to
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/rpc.java
* This class contains NDR (Network Data Representation) encodable/decodable structures * used in DCE/RPC communications. */ public class rpc { /** * Private constructor to prevent instantiation of utility class. */ private rpc() { // Utility class } /** * UUID (Universally Unique Identifier) structure for DCE/RPC.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.2K bytes - Viewed (0) -
guava/src/com/google/common/hash/LittleEndianByteArray.java
/** Implementation used by J2ObjC environments, overridden for other environments. */ @Nullable LittleEndianBytes tryMakeVarHandleLittleEndianBytes() { return null; } } /** Deter instantiation of this class. */ private LittleEndianByteArray() {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosTicketTest.java
} } @Test void testConstructorAndGettersWithValidTicket() throws IOException, GeneralSecurityException, PACDecodingException { // Test successful instantiation and getter methods with a valid ticket byte[] validToken = createTestTicketBytes(new BigInteger(KerberosConstants.KERBEROS_VERSION), SERVER_REALM, SERVER_PRINCIPAL_NAME,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java
* Tests all SMB2 protocol constants and their expected values */ @DisplayName("Smb2Constants Test Suite") class Smb2ConstantsTest { @Test @DisplayName("Should have private constructor to prevent instantiation") void testPrivateConstructor() throws Exception { // Verify constructor is private Constructor<Smb2Constants> constructor = Smb2Constants.class.getDeclaredConstructor();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java
import org.codelibs.core.beans.converter.TimeConverter; import org.codelibs.core.beans.converter.TimestampConverter; /** * A utility for {@literal static import} to facilitate the instantiation of {@link CopyOptions}. * * <pre> * import static org.codelibs.core.beans.util.CopyOptionsUtil.*; * * copyBeanToBean(srcBean, destBean, excludeNull()); * </pre> * <p>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
/** Constant value representing Docker application type */ private static final String FESS_APP_DOCKER = "docker"; /** * Protected constructor to prevent instantiation of this utility class. * This class is designed to be used statically. */ protected ResourceUtil() { // nothing } /** * Gets the HTTP URL for the OpenSearch (Fesen) server.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
* * @author mbechler * */ public final class SmbCopyUtil { private static final Logger log = LoggerFactory.getLogger(SmbCopyUtil.class); /** * Private constructor to prevent instantiation of utility class. */ private SmbCopyUtil() { } /** * @param dest * @return * @throws SmbException * @throws SmbAuthException */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/jcifs/Config.java
* {@link jcifs.context.SingletonContext#getInstance()} * witch is initialized using system properties. * */ public class Config { /** * Private constructor to prevent instantiation of this utility class. */ private Config() { // Utility class - not instantiable } private static final Logger log = LoggerFactory.getLogger(Config.class); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java
import jcifs.smb1.dcerpc.ndr.NdrObject; /** * Server Service RPC interface implementation for remote server administration (SMB1). */ public class srvsvc { /** * Private constructor to prevent instantiation. */ private srvsvc() { } /** * Gets the RPC interface syntax string. * @return the interface UUID and version */ public static String getSyntax() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.3K bytes - Viewed (0)