Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for http2client (0.2 sec)

  1. pom.xml

    				</exclusion>
    			</exclusions>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs.fesen.client</groupId>
    			<artifactId>fesen-httpclient</artifactId>
    			<version>${fesen.httpclient.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.ow2.asm</groupId>
    			<artifactId>asm</artifactId>
    			<version>${asm.version}</version>
    		</dependency>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  2. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java

    import javax.annotation.PreDestroy;
    
    import org.apache.commons.lang3.RandomUtils;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.lang.ThreadUtil;
    import org.codelibs.fesen.client.HttpClient;
    import org.codelibs.fess.crawler.exception.EsAccessException;
    import org.opensearch.OpenSearchException;
    import org.opensearch.action.ActionRequest;
    import org.opensearch.action.ActionType;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            this.clusterName = clusterName;
        }
    
        public EngineInfo getEngineInfo() {
            if (client instanceof final HttpClient httpClient) {
                return httpClient.getEngineInfo();
            }
            throw new SearchEngineClientException("client is not HttpClient.");
        }
    
        //
        // Fesen Client
        //
    
        @Override
        public ThreadPool threadPool() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

            final RequestHeaderService requestHeaderService = ComponentUtil.getComponent(RequestHeaderService.class);
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
            // HttpClient Parameters
            final Map<String, Object> paramMap = new HashMap<>();
            factory.setInitParameterMap(paramMap);
    
            final Map<String, String> clientConfigMap = getConfigParameterMap(ConfigName.CLIENT);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    ity-agent-log4j.xml -classpath /home/tcagent1/agent/lib/idea-settings.jar:/home/tcagent1/agent/lib/coverage-agent-common.jar:/home/tcagent1/agent/lib/coverage-report.jar:/home/tcagent1/agent/lib/log4j-1.2.12.jar:/home/tcagent1/agent/lib/commons-httpclient-3.1.jar:/home/tcagent1/agent/lib/log4j-1.2.12-json-layout-1.0.9.jar:/home/tcagent1/agent/lib/freemarker.jar:/home/tcagent1/agent/lib/launcher-api.jar:/home/tcagent1/agent/lib/commons-io-1.3.2.jar:/home/tcagent1/agent/lib/agent-openapi.jar:/home...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    ----
    
    The _public_ constructor of `HttpClientWrapper` uses `HttpClient` as a parameter, so it is exposed to consumers and therefore belongs to the API. Note that `HttpGet` and `HttpEntity` are used in the signature of a _private_ method, and so they don't count towards making HttpClient an API dependency.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

            server.setPassword("abc123");
            Xpp3Dom configuration = new Xpp3Dom("configuration");
            Xpp3Dom wagonProvider = new Xpp3Dom("wagonProvider");
            wagonProvider.setValue("httpclient");
            configuration.addChild(wagonProvider);
            server.setConfiguration(configuration);
    
            MavenExecutionRequest request = new DefaultMavenExecutionRequest();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

            if (protocol == 'http') {
                resources.each { it.expectGetBlocking() }
            } else if (protocol == 'https') {
                // https://issues.apache.org/jira/browse/HTTPCLIENT-1478
                def keyStore = TestKeyStore.init(temporaryFolder.file('ssl-keystore'))
                keyStore.enableSslWithServerCert(server)
                keyStore.configureServerCert(executer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/status/server.go

    			// Probe has specific host header override; honor it
    			appReq.Host = values[0]
    		}
    	}
    
    	// get the http client must exist because
    	httpClient := s.appProbeClient[path]
    
    	// Send the request.
    	response, err := httpClient.Do(appReq)
    	if err != nil {
    		log.Errorf("Request to probe app failed: %v, original URL path = %v\napp URL path = %v", err, path, proberPath)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  10. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

        private static final String MAVEN_RESOLVER_TRANSPORT_APACHE = "apache";
    
        private static final String MAVEN_RESOLVER_TRANSPORT_JDK = "jdk";
    
        /**
         * This name for Apache HttpClient transport is deprecated.
         *
         * @deprecated Renamed to {@link #MAVEN_RESOLVER_TRANSPORT_APACHE}
         */
        @Deprecated
        private static final String MAVEN_RESOLVER_TRANSPORT_NATIVE = "native";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top