- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 120 for memberOf (0.1 sec)
-
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) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
this.alias_handle.decode(_src); this.retval = _src.dec_ndr_long(); } } /** * SAMR GetMembersInAlias operation for retrieving alias members. * This operation returns the SIDs of all members in the specified alias. */ public static class SamrGetMembersInAlias extends DcerpcMessage { @Override public int getOpnum() { return 0x21;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
alias_handle.decode(_src); retval = _src.dec_ndr_long(); } } /** * SAMR GetMembersInAlias operation for retrieving alias members. * This operation returns the SIDs of all members in the specified alias. */ public static class SamrGetMembersInAlias extends DcerpcMessage { @Override public int getOpnum() { return 0x21;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/Invokable.java
* 31.0) */ public abstract class Invokable<T, R> implements AnnotatedElement, Member { private final AccessibleObject accessibleObject; private final Member member; <M extends AccessibleObject & Member> Invokable(M member) { checkNotNull(member); this.accessibleObject = member; this.member = member; } /** Returns {@link Invokable} of {@code method}. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 18.4K 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) -
dbflute_fess/dfprop/conditionBeanMap.dfprop
# # Example: # map:{ # # This means that String includes GreaterThan at MEMBER.MEMBER_ACCOUNT only # # and LessThan at PRODUCT.PRODUCT_NAME and PRODUCT.PRODUCT_HANDLE_CODE, # # and InScope for LONGVARCHAR(e.g. text type) is excluded. # ; String = map:{ # ; GreaterThan = map:{ MEMBER = list:{ MEMBER_ACCOUNT } } # ; LessThan = map:{ PRODUCT = list:{ PRODUCT_NAME ; PRODUCT_HANDLE_CODE } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 4K bytes - Viewed (0) -
dbflute_fess/dfprop/sequenceMap.dfprop
# # Example: # map:{ # ; PURCHASE = SEQ_PURCHASE # ; MEMBER = SEQ_MEMBER # ; MEMBER_LOGIN = SEQ_MEMBER_LOGIN # ; PRODUCT = SEQ_PRODUCT # } # # *The line that starts with '#' means comment-out. # map:{ #; PURCHASE = SEQ_PURCHASE #; MEMBER = SEQ_MEMBER #; MEMBER_LOGIN = SEQ_MEMBER_LOGIN #; PRODUCT = SEQ_PRODUCT }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 717 bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RangeSet.java
* range set and the specified range. This is equivalent to calling {@code * subRangeSet(otherRange)} and testing whether the resulting range set is non-empty. * * @since 20.0 */ boolean intersects(Range<C> otherRange); /** * Returns {@code true} if there exists a member range in this range set which {@linkplain
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcGetMembersInAliasTest.java
* Test method for {@link jcifs.dcerpc.msrpc.MsrpcGetMembersInAlias#MsrpcGetMembersInAlias(SamrAliasHandle, LsarSidArray)}. * Verifies that the constructor correctly initializes the object's fields using reflection for protected members. */ @Test void testConstructor() throws NoSuchFieldException, IllegalAccessException { // Create an instance of the class to be tested
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/SIDTest.java
rpcSid.sub_authority = new int[] { 21, 123, 456, 789, 1000 }; SID userSid = new SID(rpcSid, SID.SID_TYPE_USER, "MYDOMAIN", "user", false); jcifs.SID[] members = userSid.getGroupMemberSids("myserver", null, 0); assertEquals(0, members.length); } /** * Test static well-known SIDs. */ @Test void testWellKnownSids() { assertNotNull(SID.EVERYONE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0)