Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for entryOf (0.19 sec)

  1. src/main/java/jcifs/smb/SIDCacheImpl.java

                        for ( int ei = 0; ei < rpc.sam.count; ei++ ) {
                            samr.SamrSamEntry entry = rpc.sam.entries[ ei ];
    
                            SID[] mems = getGroupMemberSids(tc, authorityServerName, domSid, entry.idx, flags);
                            SID groupSid = new SID(domSid, entry.idx);
                            groupSid.type = jcifs.SID.SID_TYPE_ALIAS;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/AllTests.java

    import java.nio.file.Paths;
    import java.nio.file.StandardOpenOption;
    import java.util.Arrays;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.Iterator;
    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.Properties;
    import java.util.Set;
    
    import org.junit.AfterClass;
    import org.junit.runner.RunWith;
    import org.junit.runners.Suite;
    import org.junit.runners.Suite.SuiteClasses;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 14.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/Name.java

                            System.getProperty( "file.encoding" ));
    
        public String name, scope;
        public int hexCode;
        int srcHashCode; /* srcHashCode must be set by name resolution
                          * routines before entry into addressCache
                          */
    
        Name() {
        }
        public Name( String name, int hexCode, String scope ) {
            if( name.length() > 15 ) {
                name = name.substring( 0, 15 );
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                values.add(value);
                key = this.connection.getHeaderFieldKey(i);
                value = this.connection.getHeaderField(i);
            }
            for ( Entry<String, List<String>> entry : map.entrySet() ) {
                entry.setValue(Collections.unmodifiableList(entry.getValue()));
            }
            return ( this.headerFields = Collections.unmodifiableMap(map) );
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/DcerpcBinding.java

        public String toString () {
            String ret = this.proto + ":" + this.server + "[" + this.endpoint;
            if ( this.options != null ) {
                for ( Entry<String, Object> entry : this.options.entrySet() ) {
                    ret += "," + entry.getKey() + "=" + entry.getValue();
                }
            }
            ret += "]";
            return ret;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

    import jcifs.util.Encdec;
    import jcifs.util.Strings;
    
    
    @SuppressWarnings ( "javadoc" )
    public class NdrBuffer {
    
        private int referent;
        private Map<Object, Entry> referents;
    
        private static class Entry {
    
            public Entry ( int referent, Object obj ) {
                this.referent = referent;
                this.obj = obj;
            }
    
            final int referent;
    
            @SuppressWarnings ( "unused" )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

        public static class DfsInfo1 extends NdrObject {
    
            public String entry_path;
    
            public void encode(NdrBuffer _dst) throws NdrException {
                _dst.align(4);
                _dst.enc_ndr_referent(entry_path, 1);
    
                if (entry_path != null) {
                    _dst = _dst.deferred;
                    _dst.enc_ndr_string(entry_path);
    
                }
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 15K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                 * the exact location of the filename(e.g. Win98)
                 * or to the start of the entry containing the
                 * filename(e.g. NT). Ahhrg! In either case the
                 * lastNameOffset falls between the start of the
                 * entry and the next entry.
                 */
    
                if( lastNameBufferIndex >= bufferIndex && ( e.nextEntryOffset == 0 ||
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SID.java

                    samr.SamrSamEntry entry = rpc.sam.entries[ei];
    
                    SID[] mems = SID.getGroupMemberSids0(handle,
                                domainHandle,
                                domsid,
                                entry.idx,
                                flags);
                    SID groupSid = new SID(domsid, entry.idx);
                    groupSid.type = SID_TYPE_ALIAS;
    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)
  10. src/main/java/jcifs/FileNotifyInformation.java

        /**
         * 
         */
        public static final int FILE_ACTION_REMOVED_BY_DELETE = 0x00000009;
    
    
        /**
         * @return the action triggering this entry (FILE_ACTION_*)
         */
        int getAction ();
    
    
        /**
         * @return the file name affected by the action
         */
        String getFileName ();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.9K bytes
    - Viewed (0)
Back to top