- Sort Score
- Result 10 results
- Languages All
Results 1591 - 1600 of 1,857 for constructs (0.08 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java
import jakarta.annotation.Resource; /** * API action for admin data config. * */ public class ApiAdminDataconfigAction extends FessApiAdminAction { /** * Default constructor. */ public ApiAdminDataconfigAction() { super(); } private static final Logger logger = LogManager.getLogger(ApiAdminDataconfigAction.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.5K bytes - Viewed (0) -
okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt
* > request through the use of a URI Template. * * [doh_spec]: https://tools.ietf.org/html/draft-ietf-doh-dns-over-https-13 */ class DnsOverHttps internal constructor( @get:JvmName("client") val client: OkHttpClient, @get:JvmName("url") val url: HttpUrl, @get:JvmName("includeIPv6") val includeIPv6: Boolean, @get:JvmName("post") val post: Boolean,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmServlet.java
* information. * * @deprecated NTLMv1 only */ @Deprecated public abstract class NtlmServlet extends HttpServlet { /** * Default constructor. */ protected NtlmServlet() { super(); } /** * */ private static final long serialVersionUID = -4686770199446333333L;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (1) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
private long authenticationTimestamp = System.currentTimeMillis(); /** Flag to track if this authenticator has been closed */ private volatile boolean closed = false; /** * Construct anonymous credentials */ public NtlmPasswordAuthenticator() { this(AuthenticationType.NULL); } /** * Create an NtlmPasswordAuthenticator with the specified authentication type.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
protected int numOfThreads = 1; /** Flag indicating whether to perform cleanup operations. */ protected boolean cleanup = false; /** * Default constructor for the GenerateThumbnailJob. */ public GenerateThumbnailJob() { super(); } /** * Sets the number of threads to use for thumbnail generation. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
import jakarta.annotation.Resource; /** * Admin action for General settings. * */ public class AdminGeneralAction extends FessAdminAction { /** * Default constructor. */ public AdminGeneralAction() { super(); } /** The role name for general settings administration. */ public static final String ROLE = "admin-general";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
* This class provides functionality for installing, deleting, and managing plugins in the Fess system. * */ public class AdminPluginAction extends FessAdminAction { /** * Default constructor. */ public AdminPluginAction() { super(); } /** * Role identifier for plugin administration. */ public static final String ROLE = "admin-plugin";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/CharSourceTest.java
* * @author Colin Decker */ @NullUnmarked public class CharSourceTest extends IoTestCase { @AndroidIncompatible // Android doesn't understand suites whose tests lack default constructors. public static TestSuite suite() { TestSuite suite = new TestSuite(); for (boolean asByteSource : new boolean[] {false, true}) { suite.addTest( CharSourceTester.tests(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosTicketTest.java
assertEquals(USER_REALM, ticket.getUserRealm()); } } // Note: Testing the code path where keys are null and retrieved from // KerberosCredentials requires mocking the constructor of KerberosCredentials, // which is not possible with standard Mockito. A tool like PowerMock would be needed.
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/main/java/org/codelibs/fess/util/ResourceUtil.java
private static final String FESS_APP_TYPE = "FESS_APP_TYPE"; /** 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 } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0)