- Sort Score
- Result 10 results
- Languages All
Results 1721 - 1730 of 1,857 for constructs (0.06 sec)
-
src/test/java/jcifs/dcerpc/DcerpcHandleTest.java
assertThrows(DcerpcException.class, () -> DcerpcHandle.parseBinding("ncacn_np:server")); } } @Nested @DisplayName("Constructor Tests") class ConstructorTests { @Test @DisplayName("Should create handle with context only") void testConstructorWithContextOnly() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
import jakarta.servlet.http.HttpServletResponse; import jakarta.servlet.http.HttpSession; /** * Authenticator for SAML. */ public class SamlAuthenticator implements SsoAuthenticator { /** * Constructor. */ public SamlAuthenticator() { super(); } private static final Logger logger = LogManager.getLogger(SamlAuthenticator.class); /** * The prefix for SAML properties.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.4K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java
import jakarta.annotation.Resource; /** * Admin action for Stemmer Override management. * */ public class AdminDictStemmeroverrideAction extends FessAdminAction { /** * Default constructor. */ public AdminDictStemmeroverrideAction() { super(); } /** * The role for this action. */ public static final String ROLE = "admin-dict";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java
import jakarta.annotation.Resource; /** * Admin action for Elevate Word management. * */ public class AdminElevatewordAction extends FessAdminAction { /** * Default constructor. */ public AdminElevatewordAction() { super(); } /** Role constant for admin elevate word management access control. */ public static final String ROLE = "admin-elevateword";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java
import jakarta.annotation.Resource; /** * Admin action for Scheduler management. * */ public class AdminSchedulerAction extends FessAdminAction { /** * Default constructor. */ public AdminSchedulerAction() { super(); } /** Role name for admin scheduler operations */ public static final String ROLE = "admin-scheduler";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 22.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java
when(tree.acquire()).thenReturn(tree); when(tree.isSMB2()).thenReturn(true); // simplifies stream init when(tree.getReceiveBufferSize()).thenReturn(4096); // Act: first calls construct streams, second calls return cached SmbPipeInputStream in1 = handle.getInput(); SmbPipeInputStream in2 = handle.getInput(); SmbPipeOutputStream out1 = handle.getOutput();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 16.7K bytes - Viewed (0) -
cmd/iam-etcd-store.go
// a large number of policies r, err := ies.client.Get(ctx, iamConfigPoliciesPrefix, etcd.WithPrefix()) if err != nil { return err } // Parse all values to construct the policies data model. for _, kvs := range r.Kvs { if err = ies.getPolicyDocKV(ctx, kvs, m); err != nil && !errors.Is(err, errNoSuchPolicy) { return err } } return nil }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
* finalize statistics collection. * */ public class CrawlerStatsHelper { /** * Creates a new instance of CrawlerStatsHelper. */ public CrawlerStatsHelper() { // Default constructor } /** Logger instance for this class. */ private static final Logger logger = LogManager.getLogger(CrawlerStatsHelper.class); /** Key used to store the begin timestamp in statistics objects. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
import jakarta.annotation.Resource; /** * Admin action for Web Config management. * */ public class AdminWebconfigAction extends FessAdminAction { /** * Default constructor. */ public AdminWebconfigAction() { super(); } /** Role name for admin web config operations */ public static final String ROLE = "admin-webconfig";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21K bytes - Viewed (0) -
src/test/java/jcifs/netbios/LmhostsTest.java
}); })) { lmhosts.populate(new StringReader(content), mockContext); // Verify include was attempted assertTrue(mockedConstruction.constructed().size() > 0); // Access the internal table to verify main entry was added Field tableField = Lmhosts.class.getDeclaredField("table"); tableField.setAccessible(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.2K bytes - Viewed (0)