Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for Souther (0.29 sec)

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

            "The pipe state is invalid.", "All pipe instances are busy.", "No process is on the other end of the pipe.", "The pipe is being closed.",
            "Waiting for a process to open the other end of the pipe.", "File is a directory.", "A duplicate name exists on the network.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/misc/Tuple5.java

            final Tuple5<T1, T2, T3, T4, T5> other = (Tuple5<T1, T2, T3, T4, T5>) obj;
            if (value1 == null) {
                if (other.value1 != null) {
                    return false;
                }
            } else if (!value1.equals(other.value1)) {
                return false;
            }
            if (value2 == null) {
                if (other.value2 != null) {
                    return false;
                }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/Tuple3.java

            @SuppressWarnings("unchecked")
            final Tuple3<T1, T2, T3> other = (Tuple3<T1, T2, T3>) obj;
            if (value1 == null) {
                if (other.value1 != null) {
                    return false;
                }
            } else if (!value1.equals(other.value1)) {
                return false;
            }
            if (value2 == null) {
                if (other.value2 != null) {
                    return false;
                }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/misc/Pair.java

            }
            @SuppressWarnings("unchecked")
            final Pair<T1, T2> other = (Pair<T1, T2>) obj;
            if (first == null) {
                if (other.first != null) {
                    return false;
                }
            } else if (!first.equals(other.first)) {
                return false;
            }
            if (second == null) {
                if (other.second != null) {
                    return false;
                }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * other SMB clients (including other threads making calls into jCIFS)
     * will not be permitted to access the target file and will receive "The
     * file is being accessed by another process" message.
     */
        public static final int FILE_NO_SHARE     = 0x00;
    /**
     * When specified as the <tt>shareAccess</tt> constructor parameter,
    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)
  6. src/main/java/jcifs/smb/DosFileFilter.java

    /**
     * 
     *
     */
    public class DosFileFilter implements SmbFileFilter {
    
        protected String wildcard;
        protected int attributes;
    
    
        /**
         * This filter can be considerably more efficient than other file filters
         * as the specified wildcard and attributes are passed to the server for
         * filtering there (although attributes are largely ignored by servers
         * they are filtered locally by the default accept method).
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/DosError.java

            "Cannot create a file when that file already exists.", "All pipe instances are busy.", "The pipe is being closed.",
            "No process is on the other end of the pipe.", "More data is available.", "This user account has expired.",
            "The user is not allowed to log on from this workstation.", "The user is not allowed to log on at this time.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 4.8K bytes
    - Viewed (1)
  8. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                            if( ans != null ) {
                                ans.hostName.srcHashCode = 0; // just has to be different
                                                              // from other methods
                                return ans;
                            }
                            break;
                        case RESOLVER_WINS:
                        case RESOLVER_BCAST:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/outsideSqlMap.dfprop

        # o sqlPackage: (NotRequired - Default all packages)
        #  The package of SQL file for outsideSql.
        #  This is basically for narrowing SQL-searching target,
        #  for example, when the project has SQL files for other framework.
        #  So basically you don't need this.
        #
        #  You can use variable '$$PACKAGE_BASE$$' that means 'packageBase'.
        #  But you need to make SQL files at 'exbhv' under the set package
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                        if ( ans != null ) {
                            ans.hostName.srcHashCode = 0; // just has to be different
                                                          // from other methods
                            return ans;
                        }
                        break;
                    case RESOLVER_WINS:
                    case RESOLVER_BCAST:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
Back to top