Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 202 for Members (0.05 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/MsrpcGetMembersInAlias.java

    package jcifs.dcerpc.msrpc;
    
    /**
     * MSRPC implementation for retrieving members of an alias.
     * This class provides functionality to get the list of security identifiers (SIDs)
     * that are members of a specific alias using the SAMR RPC interface.
     */
    public class MsrpcGetMembersInAlias extends samr.SamrGetMembersInAlias {
    
        /**
         * Creates a new request to get members of an alias.
         *
         * @param aliasHandle the handle to the alias
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/path-params.md

    ### Working with Python *enumerations* { #working-with-python-enumerations }
    
    The value of the *path parameter* will be an *enumeration member*.
    
    #### Compare *enumeration members* { #compare-enumeration-members }
    
    You can compare it with the *enumeration member* in your created enum `ModelName`:
    
    {* ../../docs_src/path_params/tutorial005.py hl[17] *}
    
    #### Get the *enumeration value* { #get-the-enumeration-value }
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcGetMembersInAlias.java

    package jcifs.smb1.dcerpc.msrpc;
    
    /**
     * MSRPC implementation for retrieving members of an alias.
     * This class provides functionality to get the list of security identifiers (SIDs)
     * that are members of a specific alias using the SAMR RPC interface.
     */
    public class MsrpcGetMembersInAlias extends samr.SamrGetMembersInAlias {
    
        /**
         * Creates a new request to get members of an alias.
         *
         * @param aliasHandle the handle to the alias
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  4. cmd/iam-store.go

    		// exist.
    		gi = newGroupInfo(members)
    	} else {
    		gi.Members = set.CreateStringSet(append(gi.Members, members...)...).ToSlice()
    		gi.UpdatedAt = UTCNow()
    	}
    
    	if err := store.saveGroupInfo(ctx, group, gi); err != nil {
    		return updatedAt, err
    	}
    
    	cache.iamGroupsMap[group] = gi
    
    	// update user-group membership map
    	for _, member := range members {
    		gset := cache.iamUserGroupMemberships[member]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 86.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SidResolver.java

        /**
         * Gets the SIDs of members of a group.
         *
         * @param tc the CIFS context to use
         * @param authorityServerName the server to use for resolution
         * @param domsid the domain SID
         * @param rid the group RID
         * @param flags resolution flags
         * @return the SIDs of the group members
         * @throws CIFSException if there is an error retrieving group members
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  6. src/test/java/jcifs/SidResolverTest.java

            for (int i = 0; i < 100; i++) {
                SID groupSid = mock(SID.class);
                List<SID> members = new ArrayList<>();
                for (int j = 0; j < 50; j++) {
                    members.add(mock(SID.class));
                }
                largeMap.put(groupSid, members);
            }
    
            when(sidResolver.getLocalGroupsMap(any(CIFSContext.class), anyString(), anyInt())).thenReturn(largeMap);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/main/java/jcifs/smb/SID.java

            }
        }
    
        /**
         * Get members of the group represented by this SID, if it is one.
         *
         * @param authorityServerName the server to use for SID resolution
         * @param tc the CIFS context to use
         * @param flags resolution flags
         * @return the members of the group
         * @throws IOException if there is an error retrieving group members
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 16K bytes
    - Viewed (0)
  10. 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)
Back to top