Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for algo (0.15 sec)

  1. src/main/java/jcifs/netbios/NbtAddress.java

                boolean isPermanent, byte[] macAddress ) {
    
            /*
             * The NodeStatusResponse.readNodeNameArray method may also set this
             * information. These two places where node status data is populated should
             * be consistent. Be carefull!
             */
            this.hostName = hostName;
            this.address = address;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeConnection.java

                        log.debug("Anonymous retry succeeded");
                        return tr.acquire();
                    }
                    catch ( Exception e ) {
                        log.debug("Retry also failed", e);
                        throw sae;
                    }
                }
                else if ( this.ctx.renewCredentials(loc.getURL().toString(), sae) ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/Config.java

         * use by the jCIFS library. The Properties must be set <i>before jCIFS
         * classes are accessed</i> as most jCIFS classes load properties statically once.
         * Using this method will also override properties loaded
         * using the <tt>-Djcifs.properties=</tt> commandline parameter.
         */
    
        public static void setProperties( Properties prp ) {
            Config.prp = new Properties( prp );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

                return;
            }
            synchronized( TZ ) {
                if( TZ.inDaylightTime( new Date() )) {
                    // in DST
                    if( TZ.inDaylightTime( new Date( t ))) {
                        // t also in DST so no correction
                    } else {
                        // t not in DST so subtract 1 hour
                        t -= 3600000;
                    }
                } else {
                    // not in DST
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                                            throws UnknownHostException {
            return getByName( host, 0x00, null );
        }
    
    /** 
     * Determines the address of a host given it's host name. NetBIOS
     * names also have a <code>type</code>. Types(aka Hex Codes)
     * are used to distiquish the various services on a host. <a
     * href="../../../nbtcodes.html">Here</a> is
     * a fairly complete list of NetBIOS hex codes. Scope is not used but is
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

                return;
            }
    
            if ( cfg.getLocalTimezone().inDaylightTime(new Date()) ) {
                // in DST
                if ( cfg.getLocalTimezone().inDaylightTime(new Date(t)) ) {
                    // t also in DST so no correction
                }
                else {
                    // t not in DST so subtract 1 hour
                    t -= 3600000;
                }
            }
            else {
                // not in DST
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbCopyUtil.java

                                dfd = openCopyTargetFile(dest, src.getAttributes(), !write);
                            }
    
                            // FSCTL_SRV_COPYCHUNK_WRITE allows to open the file for writing only, FSCTL_SRV_COPYCHUNK also
                            // needs read access
                            Smb2IoctlRequest copy = new Smb2IoctlRequest(
                                sh.getConfig(),
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SID.java

     * 
     * A Windows SID is a numeric identifier used to represent Windows
     * accounts. SIDs are commonly represented using a textual format such as
     * <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt> but they may
     * also be resolved to yield the name of the associated Windows account
     * such as <tt>Administrators</tt> or <tt>MYDOM\alice</tt>.
     * <p>
     * Consider the following output of <tt>examples/SidLookup.java</tt>:
     * 
     * <pre>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

             * suggests MS doesn't compute the signature (correctly) for error responses
             * (perhaps for DOS reasons).
             */
            /*
             * Looks like the failure case also is just reflecting back the signature we sent
             */
    
            /**
             * Maybe this is related:
             * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/DcerpcHandle.java

                case 2:
                    if ( ch == '[' ) {
                        String server = str.substring(mark, si).trim();
                        if ( server.length() == 0 ) {
                            // this can also be a v6 address within brackets, look ahead required
                            int nexts = str.indexOf('[', si + 1);
                            int nexte = str.indexOf(']', si);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K bytes
    - Viewed (0)
Back to top