- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 190 for managers (0.06 sec)
-
src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java
assertTrue(fessUserBean.hasGroups(new String[] { "managers", "developers" })); // Test with no matching groups assertFalse(fessUserBean.hasGroups(new String[] { "managers", "guests" })); // Test with multiple groups testUser.setGroupNames(new String[] { "developers", "testers", "managers" }); assertTrue(fessUserBean.hasGroups(new String[] { "developers" }));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/dependencies-with-yield.md
## Context Managers { #context-managers } ### What are "Context Managers" { #what-are-context-managers } "Context Managers" are any of those Python objects that you can use in a `with` statement.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
assertArrayEquals(roles, user.getRoleNames()); } public void test_getGroupNames() { // Test with multiple groups String[] groups = { "developers", "testers", "managers" }; FessUser user = new TestFessUser("testuser", new String[] {}, groups, new String[] {}); assertArrayEquals(groups, user.getGroupNames()); // Test with single group
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/platform/Platform.kt
check(trustManagers.size == 1 && trustManagers[0] is X509TrustManager) { "Unexpected default trust managers: ${trustManagers.contentToString()}" } return trustManagers[0] as X509TrustManager } open fun trustManager(sslSocketFactory: SSLSocketFactory): X509TrustManager? { return try { // Attempt to get the trust manager from an OpenJDK socket factory. We attempt this on all
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
} return super.hookBefore(runtime); } /** * Returns the login manager for this action. Search actions do not require * a login manager as they handle authentication differently. * * @return an empty OptionalThing as search actions don't use login managers */ @Override protected OptionalThing<LoginManager> myLoginManager() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
} /** * Get the channel manager * * @return channel manager instance */ public ChannelManager getChannelManager() { return channelManager; } /** * Get the lease manager for SMB3 lease support * * @return lease manager instance */ public LeaseManager getLeaseManager() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
tests/migrate_test.go
t.Fatalf("Failed to auto migrate: error: %v", err) } } func TestAutoMigrateSelfReferential(t *testing.T) { type MigratePerson struct { ID uint Name string ManagerID *uint Manager *MigratePerson } DB.Migrator().DropTable(&MigratePerson{}) if err := DB.AutoMigrate(&MigratePerson{}); err != nil { t.Fatalf("Failed to auto migrate, but got error %v", err) }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Aug 20 04:51:17 UTC 2025 - 65.2K bytes - Viewed (0) -
src/main/java/jcifs/util/ResourceManager.java
/** * Wrapper for managed resources */ public static class ManagedResource<T extends AutoCloseable> implements AutoCloseable { private final T resource; private final String resourceId; private final ResourceManager manager; private volatile boolean closed = false; ManagedResource(T resource, String resourceId, ResourceManager manager) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
/** * Default constructor for DictionaryManager. * Creates a new dictionary manager with an empty creator list. */ public DictionaryManager() { // Default constructor } /** * Initializes the dictionary manager after construction. * Sets up the relationship between this manager and all registered creators. */ @PostConstruct public void init() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
public Date getTimestamp() { return timestamp; } /** * Sets the dictionary manager for this file and returns this instance. * * @param dictionaryManager the dictionary manager to set * @return this dictionary file instance for method chaining */ public DictionaryFile<T> manager(final DictionaryManager dictionaryManager) { this.dictionaryManager = dictionaryManager;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0)