Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 115 for Unknown (1.44 sec)

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

                case UNSPECIFIED:
                    result += "Unspecified error";
                    break;
                default:
                    result += "Unknown error code: " + errorCode;
                }
                break;
            default:
                result += "unknown error class: " + errorClass;
            }
            return result;
        }
    
    
        public NbtException ( int errorClass, int errorCode ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.8K bytes
    - Viewed (0)
  2. src/main/resources/mail/crawler.dfmail

    /*
     [Crawler Notification]
     Crawler notification mail.
    */
    subject: [FESS] Crawler completed: /*pmb.hostname*/
    >>>
    --- Server Info ---
    Host Name: /*pmb.hostname:orElse('Unknown')*/
    Job Name: /*pmb.jobname:orElse('Unknown')*/
    
    --- Web/FileSystem Crawler ---
    Start Time: /*pmb.webFsCrawlStartTime:orElse('-')*/
    End Time:   /*pmb.webFsCrawlEndTime:orElse('-')*/
    Exec Time:  /*pmb.webFsCrawlExecTime:orElse('-')*/ ms
    
    --- Web/FileSystem Indexer ---
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Jan 15 22:05:20 GMT 2020
    - 1K bytes
    - Viewed (1)
  3. src/main/java/jcifs/dcerpc/msrpc/samr.java

            public int retval;
            public String system_name;
            public int unknown;
            public int access_mask;
            public rpc.policy_handle handle;
    
    
            public SamrConnect4 ( String system_name, int unknown, int access_mask, rpc.policy_handle handle ) {
                this.system_name = system_name;
                this.unknown = unknown;
                this.access_mask = access_mask;
                this.handle = handle;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 15.1K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_ru.properties

    errors.failed_to_change_password=Failed to change your password.
    errors.unknown_version_for_upgrade=Unknown version information.
    errors.failed_to_upgrade_from=Failed to upgrade from {0}.
    errors.failed_to_read_request_file=Failed to read request file: {0}
    errors.invalid_header_for_request_file=Invalid header: {0}
    
    errors.invalid_query_unknown=The given query has unknown condition.
    errors.invalid_query_parse_error=The given query is invalid.
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/query/BoostQueryCommand.java

            }
            throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY),
                    "Unknown q: " + query.getClass() + " => " + query);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getDevelopmentHere();
    
        /**
         * Is the property for the key 'development.here' true? <br>
         * The value is, e.g. true <br>
         * comment: Is development environment here? (used for various purpose, you should set false if unknown)
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/ParameterUtil.java

                for (final String line : lines) {
                    if (StringUtil.isNotBlank(line)) {
                        final int pos = line.indexOf('=');
                        if (pos == 0) {
                            paramMap.put("unknown." + (unknownKey + 1), line.substring(pos + 1).trim());
                            unknownKey++;
                        } else if (pos > 0) {
                            final String key = line.substring(0, pos).trim();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/query/PhraseQueryCommand.java

                return convertPhraseQuery(context, phraseQuery, boost);
            }
            throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY),
                    "Unknown q: " + query.getClass() + " => " + query);
        }
    
        protected QueryBuilder convertPhraseQuery(final QueryContext context, final PhraseQuery phraseQuery, final float boost) {
            final Term[] terms = phraseQuery.getTerms();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                        for (final String url : getRepositories()) {
                            if (url.endsWith(".yaml")) {
                                if (key == ArtifactType.UNKNOWN) {
                                    list.addAll(loadArtifactsFromRepository(url));
                                }
                            } else {
                                list.addAll(processRepository(key, url));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/netbios/NbtAddress.java

        private static final HashMap LOOKUP_TABLE = new HashMap();
    
        static final Name UNKNOWN_NAME = new Name( "0.0.0.0", 0x00, null );
        static final NbtAddress UNKNOWN_ADDRESS = new NbtAddress( UNKNOWN_NAME, 0, false, B_NODE );
        static final byte[] UNKNOWN_MAC_ADDRESS = new byte[] {
            (byte)0x00, (byte)0x00, (byte)0x00,
            (byte)0x00, (byte)0x00, (byte)0x00
        };
    
    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)
Back to top