- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for remember (0.06 sec)
-
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
} /** * Gets the cookie remember-me key for persistent login. * Currently returns empty as remember-me functionality is not enabled. * * @return an optional thing containing the remember-me key, or empty if not configured */ @Override protected OptionalThing<String> getCookieRememberMeKey() { // example to use remember-me
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableMap.java
* calls to Builder.put (though we don't really care *which* two values if there were more than * two). These considerations lead us to have a field of type DuplicateKey in the Builder, which * will remember the first duplicate key we encountered. All later calls to buildOrThrow() can * mention that key with its values. Further duplicates might be added in the meantime but since
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 22.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/NullPointerTester.java
return true; } } return false; } private boolean isIgnored(Member member) { return member.isSynthetic() || ignoredMembers.contains(member) || isEquals(member) /* * We can assume that Kotlin code is performing the null checks that we want, since kotlinc
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 24.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/HashMultisetTest.java
} @J2ktIncompatible @GwtIncompatible // Only used by @GwtIncompatible code private static class MultisetHolder implements Serializable { private final Multiset<?> member; MultisetHolder(Multiset<?> multiset) { this.member = multiset; } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 1L; } @J2ktIncompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/HashMultisetTest.java
} @J2ktIncompatible @GwtIncompatible // Only used by @GwtIncompatible code private static class MultisetHolder implements Serializable { private final Multiset<?> member; MultisetHolder(Multiset<?> multiset) { this.member = multiset; } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 1L; } @J2ktIncompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java
* * @param collection the presumed-immutable collection * @param sampleElement an element of the same type as that contained by {@code collection}. * {@code collection} may or may not have {@code sampleElement} as a member. */ public static <E extends @Nullable Object> void assertCollectionIsUnmodifiable( Collection<E> collection, E sampleElement) { Collection<E> siblingCollection = new ArrayList<>();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 14.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
*/ protected void processSubRoles(final LdapUser ldapUser, final String bindDn, final Set<String> subRoleSet, final String groupFilter, final Set<String> roleSet) { // (member:1.2.840.113556.1.4.1941:=%s) if (subRoleSet.isEmpty()) { return; } String filter = subRoleSet.stream().map(s -> String.format(groupFilter, s)).collect(Collectors.joining());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
guava/src/com/google/common/collect/TopKSelector.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 31 13:15:26 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
throw new NoSuchConstructorRuntimeException(clazz, argTypes, e); } } /** * Returns a {@link Field} object that reflects the specified {@code public} member field of the class or interface represented by the {@link Class} object. * * @param clazz * The {@link Class} object representing the class. Must not be {@literal null}. * @param name
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
user.setGroups(groupList.stream().distinct().toArray(n -> new String[n])); user.setRoles(roleList.stream().distinct().toArray(n -> new String[n])); } /** * Processes member-of information from Microsoft Graph API. * @param user The Azure AD user. * @param groupList The list to add group names to. * @param roleList The list to add role names to.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 37.3K bytes - Viewed (0)