Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for str (0.14 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    sb.append( '/' );
                }
    
                str = sb.toString();
    
                int i = str.length() - 2;
                while( str.charAt( i ) != '/' ) {
                    i--;
                }
    
                return str.substring( 0, i + 1 );
            }
    
            return "smb1://";
        }
    
    /**
     * Returns the full uncanonicalized URL of this SMB resource. An
    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)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: "{1}" in "{0}" is invalid. */
        public static final String ERRORS_invalid_str_is_included = "{errors.invalid_str_is_included}";
    
        /** The key of the message: Password is required. */
        public static final String ERRORS_blank_password = "{errors.blank_password}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
Back to top