Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for James (0.13 sec)

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

     * </pre>
     * 
     * @internal
     */
    public class SID extends rpc.sid_t implements jcifs.SID {
    
        private static final Logger log = LoggerFactory.getLogger(SID.class);
    
        static final String[] SID_TYPE_NAMES = {
            "0", "User", "Domain group", "Domain", "Local group", "Builtin group", "Deleted", "Invalid", "Unknown"
        };
    
        /**
         * 
         */
        public static final int SID_FLAG_RESOLVE_SIDS = 0x0001;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/EnumTest.java

                    c.createNewFile();
    
                    String[] names = f.list();
                    assertNotNull(names);
                    assertEquals(3, names.length);
                    Arrays.sort(names);
                    Assert.assertArrayEquals(new String[] {
                        "a", "b", "c"
                    }, names);
    
                    SmbFile[] files = f.listFiles();
                    assertNotNull(files);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Kerb5Authenticator.java

                // security implications and also is not how Microsoft does it.
                throw new SmbUnsupportedOperationException("Cannot use netbios/short names with kerberos authentication, have " + host);
            }
            try {
                NegTokenInit tok = new NegTokenInit(initialToken);
                if ( log.isDebugEnabled() ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * names by broadcasting a query, directing queries to a server such as
     * Samba or WINS. NetBIOS is currently the primary networking layer for
     * providing name service, datagram service, and session service to the
     * Microsoft Windows platform. A NetBIOS name can be 15 characters long
     * and hosts usually registers several names on the network. From a
     * Windows command prompt you can see
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SIDCacheImpl.java

                throw new SmbException(rpc.retval, false);
            }
    
            for ( int si = 0; si < sids.length; si++ ) {
                SID out = sids[ si ].unwrap(SID.class);
                LsarTranslatedName resp = rpc.names.names[ si ];
                out.domainName = null;
                switch ( resp.sid_type ) {
                case jcifs.SID.SID_TYPE_USER:
                case jcifs.SID.SID_TYPE_DOM_GRP:
                case jcifs.SID.SID_TYPE_DOMAIN:
    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)
  6. LICENSE

    school, if any, to sign a "copyright disclaimer" for the library, if
    necessary.  Here is a sample; alter the names:
    
      Yoyodyne, Inc., hereby disclaims all copyright interest in the
      library `Frob' (a library for tweaking knobs) written by James Random
      Hacker.
    
      {signature of Ty Coon}, 1 April 1990
      Ty Coon, President of Vice
    
    Plain Text
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SID.java

                sids[si].type = rpc.names.names[si].sid_type;
                sids[si].domainName = null;
    
                switch (sids[si].type) {
                    case SID_TYPE_USER:
                    case SID_TYPE_DOM_GRP:
                    case SID_TYPE_DOMAIN:
                    case SID_TYPE_ALIAS:
                    case SID_TYPE_WKN_GRP:
                        int sid_index = rpc.names.names[si].sid_index;
    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)
  8. src/test/java/jcifs/tests/KerberosTest.java

            try ( SmbResource f = new SmbFile(getTestShareURL(), ctx) ) {
                f.exists();
            }
            catch ( SmbUnsupportedOperationException e ) {
                Assume.assumeTrue("Using short names", false);
            }
        }
    
    
        @Test
        public void testJAAS () throws CIFSException, MalformedURLException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 11.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbResource.java

         * <p>
         * Wildcard expressions will not filter workgroup names or server names.
         * 
         * @param wildcard
         * @return an iterator over the child resources
         * @throws CIFSException
         */
        CloseableIterator<SmbResource> children ( String wildcard ) throws CIFSException;
    
    
        /**
         * @param filter
         *            filter acting on file names
         * @return an iterator over the child resources
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

        ServerMessageBlock response;
    
        ServerMessageBlock() {
            flags = (byte)( FLAGS_PATH_NAMES_CASELESS | FLAGS_PATH_NAMES_CANONICALIZED );
            pid = PID;
            batchLevel = 0;
        }
    
        void reset() {
            flags = (byte)( FLAGS_PATH_NAMES_CASELESS | FLAGS_PATH_NAMES_CANONICALIZED );
            flags2 = 0;
            errorCode = 0;
            received = false;
            digest = null;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 21K bytes
    - Viewed (0)
Back to top