Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for _Proxy_ (0.18 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

        }
    
        private void doHandshake() throws IOException {
            connect();
            try {
                int response = parseResponseCode();
                if (response != HTTP_UNAUTHORIZED && response != HTTP_PROXY_AUTH) {
                    return;
                }
                Type1Message type1 = (Type1Message) attemptNegotiation(response);
                if (type1 == null) return; // no NTLM
                int attempt = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g.  */
        String HTTP_PROXY_HOST = "http.proxy.host";
    
        /** The key of the configuration. e.g. 8080 */
        String HTTP_PROXY_PORT = "http.proxy.port";
    
        /** The key of the configuration. e.g.  */
        String HTTP_PROXY_USERNAME = "http.proxy.username";
    
        /** The key of the configuration. e.g.  */
        String HTTP_PROXY_PASSWORD = "http.proxy.password";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  3. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        private void doHandshake () throws IOException, GeneralSecurityException {
            connect();
            try {
                int response = parseResponseCode();
                if ( response != HTTP_UNAUTHORIZED && response != HTTP_PROXY_AUTH ) {
                    return;
                }
                NtlmMessage type1 = attemptNegotiation(response);
                if ( type1 == null )
                    return; // no NTLM
                int attempt = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/Constants.java

        public static final String PURGE_JOB_LOG_DAY_PROPERTY = "purge.joblog.day";
    
        public static final String PURGE_BY_BOTS_PROPERTY = "purge.by.bots";
    
        public static final String SEARCH_FILE_PROXY_PROPERTY = "search.file.proxy";
    
        public static final String NOTIFICATION_TO_PROPERTY = "notification.to";
    
        public static final String SLACK_WEBHOOK_URLS_PROPERTY = "slack.webhook.urls";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            setSystemProperty(key, Integer.toString(value));
        }
    
        default boolean isSearchFileProxyEnabled() {
            return getSystemPropertyAsBoolean(Constants.SEARCH_FILE_PROXY_PROPERTY, true);
        }
    
        default boolean isBrowserLocaleForSearchUsed() {
            return getSystemPropertyAsBoolean(Constants.USE_BROWSER_LOCALE_FOR_SEARCH_PROPERTY, false);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
Back to top