Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for Same (0.14 sec)

  1. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

                    if ( log.isDebugEnabled() ) {
                        log.debug("Adjusting server name " + s + " to " + fqdn);
                    }
                    this.server = fqdn;
                }
                else {
                    log.warn("Have unmappable netbios name " + s);
                }
            }
        }
    
    
        /**
         * @return the resolveHashes
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 11K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SIDCacheImpl.java

                case jcifs.SID.SID_TYPE_WKN_GRP:
                    rpc.unicode_string ustr = rpc.domains.domains[ resp.sid_index ].name;
                    out.domainName = ( new UnicodeString(ustr, false) ).toString();
                    break;
                }
    
                UnicodeString ucstr = new UnicodeString(resp.name, false);
                out.acctName = ucstr.toString();
                out.type = resp.sid_type;
                out.origin_server = null;
    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)
  3. src/test/java/jcifs/tests/FileLocationTest.java

                assertEquals("1.2.3.4", fl.getServerWithDfs());
                assertEquals("other", fl.getShare());
                assertEquals("\\foo\\bar\\", fl.getUNCPath());
                // this intentionally sticks to the old name
                assertEquals("/share/foo/bar/", fl.getURLPath());
            }
        }
    
    
        @Test
        public void testDfsReferralShareNested () throws MalformedURLException, CIFSException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 13:16:07 GMT 2020
    - 23K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

            public int platform_id;
            public String name;
    
            public void encode(NdrBuffer _dst) throws NdrException {
                _dst.align(4);
                _dst.enc_ndr_long(platform_id);
                _dst.enc_ndr_referent(name, 1);
    
                if (name != null) {
                    _dst = _dst.deferred;
                    _dst.enc_ndr_string(name);
    
                }
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 18.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/FileOperationsTest.java

     */
    @RunWith ( Parameterized.class )
    @SuppressWarnings ( "javadoc" )
    public class FileOperationsTest extends BaseCIFSTest {
    
        public FileOperationsTest ( String name, Map<String, String> properties ) {
            super(name, properties);
        }
    
    
        @Parameters ( name = "{0}" )
        public static Collection<Object> configs () {
            return getConfigs("smb1", "noUnicode", "forceUnicode", "noNTStatus", "noNTSmbs", "smb2", "smb30", "smb31");
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:17:59 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/NameServicePacket.java

        int opCode, resultCode, questionCount, answerCount, authorityCount, additionalCount;
        boolean received, isResponse, isAuthAnswer, isTruncated, isRecurDesired, isRecurAvailable, isBroadcast;
    
        Name questionName;
        Name recordName;
    
        int questionType, questionClass, recordType, recordClass, ttl, rDataLength;
    
        InetAddress addr;
        protected Configuration config;
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12K bytes
    - Viewed (0)
  7. src/main/java/jcifs/config/BaseConfiguration.java

                byte[] mid = new byte[32];
                this.random.nextBytes(mid);
                this.machineId = mid;
            }
    
            if ( this.nativeOs == null ) {
                this.nativeOs = System.getProperty("os.name");
            }
    
            if ( this.flags2 == 0 ) {
                this.flags2 = SmbConstants.FLAGS2_LONG_FILENAMES | SmbConstants.FLAGS2_EXTENDED_ATTRIBUTES
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  8. src/main/java/jcifs/smb/SmbCopyUtil.java

                }
                catch ( SmbException se ) {
                    log.trace("copyTo0", se);
                    if ( se.getNtStatus() != NtStatus.NT_STATUS_ACCESS_DENIED && se.getNtStatus() != NtStatus.NT_STATUS_OBJECT_NAME_COLLISION ) {
                        throw se;
                    }
                }
            }
    
            try ( CloseableIterator<SmbResource> it = SmbEnumerationUtil
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 17.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/http/NtlmHttpURLConnection.java

     * 
     * Warning: Do not use this if there is a chance that you might have multiple connections (even plain
     * HttpURLConnections, for the complete JRE) to the same host with different or mixed anonymous/authenticated
     * credentials. Authenticated connections can/will be reused.
     * 
    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)
  10. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

         * actually purer. However, in the case of smb we know the
         * wordCount and byteCount. And since every subclass of
         * ServerMessageBlock would have to perform the same read
         * operation on the input stream, we might as will pull that
         * common functionality into the superclass and read wordCount
         * and byteCount worth of data.
         * 
    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