Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for httpPort (0.58 sec)

  1. operator/pkg/translate/strategic_port_merge_test.go

    			overlayPorts:        []*v1.ServicePort{httpsPort, httpPort},
    			expectedMergedPorts: []*v1.ServicePort{istioHealthcheckPort, httpsPort, httpPort},
    		},
    		{
    			name:                "metrics port is present",
    			basePorts:           []*v1.ServicePort{istioMetricsPort, httpsPort, httpPort},
    			overlayPorts:        []*v1.ServicePort{httpsPort, httpPort},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:37 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/RunningPlayApp.groovy

            }
    
            if (standalone) {
                httpPort = regexParseHttpPortStandalone(output.call(), occurrence)
            } else {
                httpPort = regexParseHttpPortFromGradle(output.call(), occurrence)
            }
            return httpPort
        }
    
    
        static int regexParseHttpPortStandalone(output, int occurrence) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. samples/jwt-server/src/main.go

    func NewJwtServer(certificate string, key string) *JWTServer {
    	return &JWTServer{
    		httpPort:          make(chan int, 1),
    		httpsPort:         make(chan int, 1),
    		serverCertificate: certificate,
    		serverPrivateKey:  key,
    	}
    }
    
    func main() {
    	flag.Parse()
    	s := NewJwtServer(*serverCert, *serverkey)
    	go s.runHTTP(fmt.Sprintf(":%s", *httpPort))
    	if s.serverCertificate != "" && s.serverPrivateKey != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 16 23:56:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. pkg/test/framework/components/authz/kubelocal.go

    	return map[string]any{
    		"httpName": s.httpName(),
    		"grpcName": s.grpcName(),
    		"httpHost": s.httpHost(),
    		"grpcHost": s.grpcHost(),
    		"httpPort": httpPort,
    		"grpcPort": grpcPort,
    	}
    }
    
    func (s *localServerImpl) installProviders(ctx resource.Context) error {
    	// Update the mesh config extension provider for the ext-authz service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  5. samples/bookinfo/src/reviews/reviews-wlpcfg/servers/LibertyProjectServer/server.xml

    <server description="Sample Liberty server">
    
        <featureManager>
            <feature>jaxrs-2.0</feature>
            <feature>jsonp-1.0</feature>
        </featureManager>
    
        <httpEndpoint host="*" httpPort="9080" httpsPort="-1"
                      id="defaultHttpEndpoint"/>
    
        <webContainer deferServletLoad="false"/>
        <applicationMonitor dropinsEnabled="false" updateTrigger="mbean"/>
        <config updateTrigger="mbean"/>
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  6. pkg/test/framework/components/jwt/kube.go

    	return fmt.Sprintf("%s.%s.svc.cluster.local", serviceName, s.ns.Name())
    }
    
    func (s *serverImpl) HTTPPort() int {
    	return httpPort
    }
    
    func (s *serverImpl) HTTPSPort() int {
    	return httpsPort
    }
    
    func (s *serverImpl) JwksURI() string {
    	uri := fmt.Sprintf("http://%s:%d/jwks", s.FQDN(), s.HTTPPort())
    	return uri
    }
    
    func (s *serverImpl) ID() resource.ID {
    	return s.id
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 22 23:45:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/authz/kube.go

    	"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-*"]
        headersToDownstreamOnDeny: ["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. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GrettySmokeTest.groovy

                    httpPort = new ServerSocket(0).withCloseable { socket -> socket.getLocalPort() }
                    integrationTestTask = 'checkContainerUp'
                    servletContainer = '${grettyConfig.servletContainer}'
                }
    
                task checkContainerUp {
                    doLast {
                        URL url = new URL("http://localhost:\${gretty.httpPort}/quickstart")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. samples/extauthz/cmd/extauthz/main.go

    	return &ExtAuthzServer{
    		grpcV2:   &extAuthzServerV2{},
    		grpcV3:   &extAuthzServerV3{},
    		httpPort: make(chan int, 1),
    		grpcPort: make(chan int, 1),
    	}
    }
    
    func main() {
    	flag.Parse()
    	s := NewExtAuthzServer()
    	go s.run(fmt.Sprintf(":%s", *httpPort), fmt.Sprintf(":%s", *grpcPort))
    	defer s.stop()
    
    	// Wait for the process to be shutdown.
    	sigs := make(chan os.Signal, 1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. pkg/test/framework/components/jwt/server.go

    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    // Server for JWT tokens.
    type Server interface {
    	Namespace() namespace.Instance
    	FQDN() string
    	HTTPPort() int
    	HTTPSPort() int
    	JwksURI() string
    }
    
    // New creates a new JWT Server.
    func New(ctx resource.Context, ns namespace.Instance) (Server, error) {
    	return newKubeServer(ctx, ns)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top