Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 270 for sida (0.15 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    	} LsarPolicyInfo;
    
    	typedef struct {
    		sid_t *sid;
    	} LsarSidPtr;
    
    	typedef struct {
    		[range(0,1000)] uint32_t num_sids;
    		[size_is(num_sids)] LsarSidPtr *sids;
    	} LsarSidArray;
    
    	typedef enum {
    		SID_NAME_USE_NONE = 0, /* NOTUSED */
    		SID_NAME_USER     = 1, /* user */
    		SID_NAME_DOM_GRP  = 2, /* domain group */
    		SID_NAME_DOMAIN   = 3, /* domain: don't know what this is */
    		SID_NAME_ALIAS    = 4, /* local group */
    Others
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (1)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl

    	} LsarPolicyInfo;
    
    	typedef struct {
    		sid_t *sid;
    	} LsarSidPtr;
    
    	typedef struct {
    		[range(0,1000)] uint32_t num_sids;
    		[size_is(num_sids)] LsarSidPtr *sids;
    	} LsarSidArray;
    
    	typedef enum {
    		SID_NAME_USE_NONE = 0, /* NOTUSED */
    		SID_NAME_USER     = 1, /* user */
    		SID_NAME_DOM_GRP  = 2, /* domain group */
    		SID_NAME_DOMAIN   = 3, /* domain: don't know what this is */
    		SID_NAME_ALIAS    = 4, /* local group */
    Others
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

                if (responseData.getUrl().startsWith("smb:")) {
                    final SID[] allowedSids = (SID[]) metaDataMap.get(SmbClient.SMB_ALLOWED_SID_ENTRIES);
                    if (allowedSids != null) {
                        for (final SID sid : allowedSids) {
                            final String accountId = sambaHelper.getAccountId(sid);
                            if (accountId != null) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  4. internal/http/lambda-headers.go

    	AmzFwdHeaderSSE                   = "x-amz-fwd-header-x-amz-server-side-encryption"
    	AmzFwdHeaderSSEC                  = "x-amz-fwd-header-x-amz-server-side-encryption-customer-algorithm"
    	AmzFwdHeaderSSEKMSID              = "x-amz-fwd-header-x-amz-server-side-encryption-aws-kms-key-id"
    	AmzFwdHeaderSSECMD5               = "x-amz-fwd-header-x-amz-server-side-encryption-customer-key-MD5"
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Mar 07 16:12:41 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/Trans2FindNext2.java

    import jcifs.smb1.Config;
    import jcifs.smb1.util.Hexdump;
    
    class Trans2FindNext2 extends SmbComTransaction {
    
        private int sid, informationLevel, resumeKey, flags;
        private String filename;
    
        Trans2FindNext2( int sid, int resumeKey, String filename ) {
            this.sid = sid;
            this.resumeKey = resumeKey;
            this.filename = filename;
            command = SMB_COM_TRANSACTION2;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/msrpc/MsrpcLookupSids.java

    @SuppressWarnings ( "javadoc" )
    public class MsrpcLookupSids extends lsarpc.LsarLookupSids {
    
        public MsrpcLookupSids ( LsaPolicyHandle policyHandle, jcifs.SID[] sids ) {
            super(policyHandle, new LsarSidArrayX(sids), new lsarpc.LsarRefDomainList(), new lsarpc.LsarTransNameArray(), (short) 1, sids.length);
            this.ptype = 0;
            this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  7. internal/deadlineconn/deadlineconn.go

    	c.setWriteDeadline()
    	n, err = c.Conn.Write(b)
    	return n, err
    }
    
    // WithReadDeadline sets a new read side net.Conn deadline.
    func (c *DeadlineConn) WithReadDeadline(d time.Duration) *DeadlineConn {
    	c.readDeadline = d
    	return c
    }
    
    // WithWriteDeadline sets a new write side net.Conn deadline.
    func (c *DeadlineConn) WithWriteDeadline(d time.Duration) *DeadlineConn {
    	c.writeDeadline = d
    	return c
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Nov 05 18:09:21 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/BoundType.java

    import com.google.common.annotations.GwtCompatible;
    
    /**
     * Indicates whether an endpoint of some range is contained in the range itself ("closed") or not
     * ("open"). If a range is unbounded on a side, it is neither open nor closed on that side; the
     * bound simply does not exist.
     *
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public enum BoundType {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Sep 20 15:57:47 GMT 2021
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                urlFilterService.delete(sid);
            } catch (final Exception e) {
                logger.warn("Failed to delete UrlFilter for {}", sid, e);
            }
    
            try {
                // clear queue
                urlQueueService.clearCache();
                urlQueueService.delete(sid);
            } catch (final Exception e) {
                logger.warn("Failed to delete UrlQueue for {}", sid, e);
            }
    
            try {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  10. docs/bucket/replication/README.md

    bject-retention.html) enabled. Similarly objects encrypted on the server side, will be replicated if destination also supports encryption.
    
    Replication status can be seen in the metadata on the source and destination objects. On the source side, the `X-Amz-Replication-Status` changes from `PENDING` to `COMPLETED` or `FAILED` after replication attempt either succeeded or failed respectively. On the destination side, a `X-Amz-Replication-Status` status of `REPLICA` indicates that the object...
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jan 24 23:46:33 GMT 2023
    - 18.2K bytes
    - Viewed (0)
Back to top