Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for hc4Client (0.07 seconds)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/SwitchableHttpClient.java

                    setCrawlerClient(hc5Client);
                }
            }
        }
    
        /**
         * Sets the HC4 HTTP client instance.
         *
         * @param hc4Client the HC4 HTTP client
         */
        public void setHc4Client(final CrawlerClient hc4Client) {
            this.hc4Client = hc4Client;
        }
    
        /**
         * Gets the HC4 HTTP client instance.
         *
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Jan 08 04:17:06 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  2. fess-crawler-lasta/src/main/resources/crawler/client.xml

    	</component>
    	<component name="httpClient"
    		class="org.codelibs.fess.crawler.client.http.SwitchableHttpClient" instance="prototype">
    		<property name="hc5Client">internalHttpClient</property>
    		<property name="hc4Client">internalHc4HttpClient</property>
    		<property name="maxRetryCount">5</property>
    		<property name="retryInterval">500</property>
    		<postConstruct name="init" />
    	</component>
    
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Jan 08 04:17:06 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  3. docs/sts/client-grants.go

    	req.SetBasicAuth(clientID, clientSecret)
    	t := &http.Transport{
    		TLSClientConfig: &tls.Config{
    			InsecureSkipVerify: true,
    		},
    	}
    	hclient := http.Client{
    		Transport: t,
    	}
    	resp, err := hclient.Do(req)
    	if err != nil {
    		return nil, err
    	}
    	defer resp.Body.Close()
    	if resp.StatusCode != http.StatusOK {
    		return nil, fmt.Errorf("%s", resp.Status)
    	}
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Aug 19 01:35:22 GMT 2021
    - 3.3K bytes
    - Click Count (0)
  4. cmd/bucket-targets.go

    type BucketTargetSys struct {
    	sync.RWMutex
    	arnRemotesMap map[string]arnTarget
    	targetsMap    map[string][]madmin.BucketTarget
    	hMutex        sync.RWMutex
    	hc            map[string]epHealth
    	hcClient      *madmin.AnonymousClient
    	aMutex        sync.RWMutex
    	arnErrsMap    map[string]arnErrs // map of ARN to error count of failures to get target
    }
    
    type latencyStat struct {
    	lastmin lastMinuteLatency
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 20.9K bytes
    - Click Count (0)
Back to Top