Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 805 for PORT (0.04 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.json

                    "port": "portValue",
                    "host": "hostValue",
                    "scheme": "schemeValue",
                    "httpHeaders": [
                      {
                        "name": "nameValue",
                        "value": "valueValue"
                      }
                    ]
                  },
                  "tcpSocket": {
                    "port": "portValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

                    "port": "portValue",
                    "host": "hostValue",
                    "scheme": "schemeValue",
                    "httpHeaders": [
                      {
                        "name": "nameValue",
                        "value": "valueValue"
                      }
                    ]
                  },
                  "tcpSocket": {
                    "port": "portValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceregistry_test.go

    		makeIstioObject(t, store, workloadEntry)
    
    		instances := []EndpointResponse{
    			{Address: pod.Status.PodIP, Port: 80},
    			{Address: pod.Status.PodIP, Port: 80},
    			{Address: workloadEntry.Spec.(*networking.WorkloadEntry).Address, Port: 80},
    			{Address: workloadEntry.Spec.(*networking.WorkloadEntry).Address, Port: 80},
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_test.go

    						Servers: []*networking.Server{
    							{
    								Port: &networking.Port{Name: "http", Number: 80, Protocol: "HTTP"},
    							},
    							{
    								Port:  &networking.Port{Name: "http", Number: 8080, Protocol: "HTTP"},
    								Hosts: []string{"externalgatewayclient.com"},
    							},
    							{
    								Port:  &networking.Port{Name: "http", Number: 8080, Protocol: "HTTP"},
    								Bind:  "127.0.0.1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/gateway/gateway.go

    				if svcSelector.Matches(podLabels) {
    					for _, port := range service.Ports {
    						if port.Protocol == "TCP" {
    							// Because the Gateway's server port is the port on which the proxy should listen for incoming connections,
    							// the actual port associated with the service is the `TargetPort` that reaches the sidecar *workload instances*.
    							if tp := port.TargetPort.IntValue(); tp != 0 {
    								servicePorts[uint32(tp)] = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    			{Port: port, Protocol: simulation.HTTP, TLS: simulation.Plaintext, HostHeader: "foo"},
    			{Port: port, Protocol: simulation.HTTP, TLS: simulation.TLS, HostHeader: "foo"},
    			{Port: port, Protocol: simulation.HTTP, TLS: simulation.TLS, HostHeader: "foo", Alpn: "http/1.1"},
    			{Port: port, Protocol: simulation.TCP, TLS: simulation.Plaintext, HostHeader: "foo"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. istioctl/pkg/dashboard/dashboard.go

    	kiali.PersistentFlags().IntVar(&kialiPort, "ui-port", defaultKialiPort, "The component dashboard UI port.")
    	dashboardCmd.AddCommand(kiali)
    
    	prom := promDashCmd(cliContext)
    	prom.PersistentFlags().IntVar(&promPort, "ui-port", defaultPrometheusPort, "The component dashboard UI port.")
    	dashboardCmd.AddCommand(prom)
    
    	graf := grafanaDashCmd(cliContext)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. pkg/registry/core/service/portallocator/allocator_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    
    		for port := range tc {
    			if err := r.Allocate(port); err != nil {
    				t.Errorf("[%d] error allocating port %v: %v", i, port, err)
    			}
    			if !r.Has(port) {
    				t.Errorf("[%d] expected port %v allocated", i, port)
    			}
    		}
    
    		calls := sets.NewInt()
    		r.ForEach(func(port int) {
    			calls.Insert(port)
    		})
    		if len(calls) != len(tc) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandlerTest.groovy

        def "reserving port is safely reentrant"() {
            when:
            int port = handler.reservePort()
    
            then:
            handler.reservePort() == port
        }
    
        def "cannot reserve port when the handler was stopped"() {
            handler.stop()
    
            when:
            handler.reservePort()
    
            then:
            thrown(IllegalStateException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/gateway.go

    		Port:  opts.port,
    		Class: istionetworking.ListenerClassGateway,
    	}, model.WasmPluginTypeNetwork)
    	if p.IsHTTP() {
    		// We have a list of HTTP servers on this port. Build a single listener for the server port.
    		port := &networking.Port{Number: port.Number, Protocol: port.Protocol}
    		httpFilterChainOpts := configgen.createGatewayHTTPFilterChainOpts(builder.node, port, nil, serversForPort.RouteName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top