Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for unknown (4.2 sec)

  1. src/main/java/jcifs/context/SingletonContext.java

         * method is not called before attempting to create an SMB URL with the
         * URL class the following exception will occur:
         * <blockquote>
         * 
         * <pre>
         * Exception MalformedURLException: unknown protocol: smb
         *     at java.net.URL.&lt;init&gt;(URL.java:480)
         *     at java.net.URL.&lt;init&gt;(URL.java:376)
         *     at java.net.URL.&lt;init&gt;(URL.java:330)
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 08:53:08 GMT 2019
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl

    	int SamrConnect2([in,string,unique] wchar_t *system_name,
    			[in] uint32_t access_mask,
    			[out] policy_handle *handle);
    
    	[op(0x3e)]
    	int SamrConnect4([in,string,unique] wchar_t *system_name,
    			[in] uint32_t unknown,
    			[in] uint32_t access_mask,
    			[out] policy_handle *handle);
    
    	[op(0x07)]
    	int SamrOpenDomain([in] policy_handle *handle,
    			[in] uint32_t access_mask,
    			[in] sid_t *sid,
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java

            if (!resource.getMessageList().isEmpty()) {
                return resource.getMessageList().stream().collect(Collectors.joining(" "));
            }
    
            if (cause == null) {
                return "Unknown error";
            }
    
            final Supplier<String> stacktraceString = () -> {
                final StringBuilder sb = new StringBuilder();
                if (StringUtil.isBlank(cause.getMessage())) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SID.java

        };
    
        /**
         * 
         */
        public static final int SID_FLAG_RESOLVE_SIDS = 0x0001;
    
        /**
         * Well known SID: EVERYONE
         */
        public static SID EVERYONE = null;
    
        /**
         * Well known SID: CREATOR_OWNER
         */
        public static SID CREATOR_OWNER = null;
    
        /**
         * Well known SID: SYSTEM
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_env.properties

    # The mode of Lasta Di's smart-deploy, should be cool in production (e.g. hot, cool, warm)
    lasta_di.smart.deploy.mode = warm
    
    # Is development environment here? (used for various purpose, you should set false if unknown)
    development.here = true
    
    # The title of environment (e.g. local or integration or production)
    environment.title = Local Development
    
    # Does it enable the Framework internal debug? (true only when emergency)
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Aug 07 04:53:24 GMT 2021
    - 2.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/query/QueryProcessor.java

                    return queryCommand.execute(context, query, boost);
                }
                throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY),
                        "Unknown q: " + query.getClass() + " => " + query);
            };
        }
    
        public interface Filter {
            QueryBuilder execute(final QueryContext context, final Query query, final float boost, final FilterChain chain);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/NbtAddress.java

         * is provided. This is the behavior of Microsoft Windows machines.
         */
    
        public static final int H_NODE = 3;
    
        /**
         * Unknown MAC Address
         */
        public static final byte[] UNKNOWN_MAC_ADDRESS = new byte[] {
            (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00
        };
    
        Name hostName;
        int address, nodeType;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            }
            String url = DocumentUtil.getValue(doc, fessConfig.getIndexFieldUrl(), String.class);
            if (url == null) {
                url = ComponentUtil.getMessageManager().getMessage(locale, "labels.search_unknown");
            }
            doc.put(fessConfig.getResponseFieldUrlLink(), getUrlLink(doc));
            String createdStr;
            final Date created = DocumentUtil.getValue(doc, fessConfig.getIndexFieldCreated(), Date.class);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  9. src/main/resources/fess_message_ja.properties

    errors.cannot_delete_doc_because_of_running = クローラーが実行されています。文書を削除することはできません。
    errors.failed_to_delete_doc_in_admin = ドキュメントの削除に失敗しました。
    errors.failed_to_send_testmail=テストメールの送信に失敗しました。
    errors.invalid_query_unknown = 指定されたクエリーには未知の条件があります。
    errors.invalid_query_parse_error = 与えられたクエリーは無効です。
    errors.invalid_query_sort_value = 指定されたソート {0} が無効です。
    errors.invalid_query_unsupported_sort_field = 指定されたソート {0} はサポートされていません。
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    		SID_NAME_DOMAIN   = 3, /* domain: don't know what this is */
    		SID_NAME_ALIAS    = 4, /* local group */
    		SID_NAME_WKN_GRP  = 5, /* well-known group */
    		SID_NAME_DELETED  = 6, /* deleted account: needed for c2 rating */
    		SID_NAME_INVALID  = 7, /* invalid account */
    		SID_NAME_UNKNOWN  = 8  /* oops. */
    	} LsarSidType;
    
    	typedef struct {
    		LsarSidType sid_type;
    		uint32_t rid;
    		uint32_t sid_index;
    	} LsarTranslatedSid;
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (1)
Back to top