Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for Gwener (0.16 sec)

  1. src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java

            bufferIndex++; // revision
            bufferIndex++;
            this.type = SMBUtil.readInt2(buffer, bufferIndex);
            bufferIndex += 2;
            int ownerUOffset = SMBUtil.readInt4(buffer, bufferIndex); // offset to owner sid
            bufferIndex += 4;
            int ownerGOffset = SMBUtil.readInt4(buffer, bufferIndex); // offset to group sid
            bufferIndex += 4;
            SMBUtil.readInt4(buffer, bufferIndex); // offset to sacl
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(Outer.Sub.class, subtype.getRawType());
        assertThat(subtype.getActualTypeArguments()[0]).isInstanceOf(WildcardType.class);
        ParameterizedType owner = (ParameterizedType) subtype.getOwnerType();
        assertEquals(Outer.class, owner.getRawType());
        // This returns a strange ? extends Sub2<Y> type, which isn't ideal.
        TypeToken<?> unused = new TypeToken<BaseWithTypeVar<List<?>>>() {}.getSubtype(Outer.Sub2.class);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

            send(request, response);
    
            close(f, 0L);
    
            response.securityDescriptor.owner_user.resolve(getServerWithDfs(), auth);
            return response.securityDescriptor.owner_user;
        }
    
        public SID getOwnerGroup() throws IOException {
    
            int f = open0(O_RDONLY, READ_CONTROL, 0, isDirectory() ? 1 : 0);
    
            /*
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  4. src/main/java/jcifs/ACE.java

        public static final int READ_CONTROL = 0x00020000; // 17
        /**
         * 
         */
        public static final int WRITE_DAC = 0x00040000; // 18
        /**
         * 
         */
        public static final int WRITE_OWNER = 0x00080000; // 19
        /**
         * 
         */
        public static final int SYNCHRONIZE = 0x00100000; // 20
        /**
         * 
         */
        public static final int GENERIC_ALL = 0x10000000; // 28
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SID.java

        };
    
        public static final int SID_FLAG_RESOLVE_SIDS = 0x0001;
    
        public static SID EVERYONE = null;
        public static SID CREATOR_OWNER = null;
        public static SID SYSTEM = null;
    
        static {
            try {
                EVERYONE = new SID("S-1-1-0");
                CREATOR_OWNER = new SID("S-1-3-0");
                SYSTEM = new SID("S-1-5-18");
            } catch (SmbException se) {
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/TypeToken.java

            return false;
          }
        }
        // We only care about the case when the supertype is a non-static inner class
        // in which case we need to make sure the subclass's owner type is a subtype of the
        // supertype's owner.
        return Modifier.isStatic(((Class<?>) supertype.getRawType()).getModifiers())
            || supertype.getOwnerType() == null
            || isOwnedBySubtypeOf(supertype.getOwnerType());
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

    
        @Override
        public SID getOwnerUser ( boolean resolve ) throws IOException {
            try ( SmbTreeHandleImpl th = ensureTreeConnected() ) {
                SecurityDescriptor desc = querySecurity(th, SecurityInfo.OWNER_SECURITY_INFO);
                SID ownerUser = desc.getOwnerUserSid();
                if ( ownerUser == null ) {
                    return null;
                }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top