Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for httpmime (0.4 sec)

  1. fess-crawler/pom.xml

    			<artifactId>httpclient</artifactId>
    			<version>${httpcomponents.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.httpcomponents</groupId>
    			<artifactId>httpmime</artifactId>
    			<version>${httpcomponents.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.httpcomponents</groupId>
    			<artifactId>httpclient-cache</artifactId>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.equalsverifier)        { version { strictly("2.1.6") }}
            api(libs.guice)                 { version { strictly("5.1.0") }}
            api(libs.httpmime)              { version { strictly("4.5.10") }}
            api(libs.javaParser)            { version { strictly("3.17.0") }}
            api(libs.jetty)                 { version { strictly(jettyVersion) }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val compileTesting = "com.google.testing.compile:compile-testing"
        val equalsverifier = "nl.jqno.equalsverifier:equalsverifier"
        val hikariCP = "com.zaxxer:HikariCP"
        val guice = "com.google.inject:guice"
        val httpmime = "org.apache.httpcomponents:httpmime"
        val jacksonKotlin = "com.fasterxml.jackson.module:jackson-module-kotlin"
        val javaParser = "com.github.javaparser:javaparser-core"
        val jetty = "org.eclipse.jetty:jetty-http"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. platforms/documentation/docs/build.gradle

        testImplementation "org.gebish:geb-spock:2.2"
        testImplementation 'org.seleniumhq.selenium:selenium-htmlunit-driver:2.42.2'
        testImplementation libs.commonsHttpclient
        testImplementation libs.httpmime
    
        docsTestImplementation platform(project(":distributions-dependencies"))
        docsTestImplementation project(":internal-integ-testing")
        docsTestImplementation project(":base-services")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  5. pom.xml

    				<exclusion>
    					<groupId>net.java.dev.jna</groupId>
    					<artifactId>jna</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.apache.httpcomponents</groupId>
    					<artifactId>httpmime</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.slf4j</groupId>
    					<artifactId>jcl-over-slf4j</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>javax.activation</groupId>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  6. pkg/test/framework/components/authz/kubelocal.go

    }
    
    func (s *localServerImpl) httpName() string {
    	return fmt.Sprintf("%s-%s-local", httpName, s.ns.Prefix())
    }
    
    func (s *localServerImpl) grpcName() string {
    	return fmt.Sprintf("%s-%s-local", grpcName, s.ns.Prefix())
    }
    
    func (s *localServerImpl) httpHost() string {
    	return fmt.Sprintf("%s.%s.local", httpName, s.ns.Prefix())
    }
    
    func (s *localServerImpl) grpcHost() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  7. pkg/test/framework/components/authz/kube.go

    	"istio.io/istio/pkg/test/util/yml"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	httpName = "ext-authz-http"
    	grpcName = "ext-authz-grpc"
    	httpPort = 8000
    	grpcPort = 9000
    
    	providerTemplate = `
    extensionProviders:
    - name: "{{ .httpName }}"
      envoyExtAuthzHttp:
        service: "{{ .fqdn }}"
        port: {{ .httpPort }}
        headersToUpstreamOnAllow: ["x-ext-authz-*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_waypoint.go

    				Name:    tcpName,
    			}
    			cc.clusterName = model.BuildSubsetKey(model.TrafficDirectionInboundVIP, "http", svc.Hostname, port.Port)
    			httpName := name + "-http"
    			httpChain := &listener.FilterChain{
    				Filters: lb.buildWaypointInboundHTTPFilters(svc, cc),
    				Name:    httpName,
    			}
    			if port.Protocol.IsUnsupported() {
    				// If we need to sniff, insert two chains and the protocol detector
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top