Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for PORT (0.12 sec)

  1. tests/integration/pilot/common/routing.go

    	for _, c := range t.Apps.A {
    		for _, d := range t.Apps.B {
    			for _, port := range []int{15001, 15006} {
    				c, d, port := c, d, port
    				t.RunTraffic(TrafficTestCase{
    					name: fmt.Sprint(port),
    					call: c.CallOrFail,
    					opts: echo.CallOptions{
    						ToWorkload: d,
    						Port:       echo.Port{ServicePort: port, Protocol: protocol.HTTP},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. 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)
  3. pkg/proxy/ipvs/proxier_test.go

    						Protocol:  "SCTP",
    						Port:      uint16(3001),
    						Scheduler: "rr",
    					},
    					{
    						IP:       "100.101.102.104",
    						Port:     3001,
    						Protocol: "SCTP",
    					}: {
    						Address:   netutils.ParseIPSloppy("100.101.102.104"),
    						Protocol:  "SCTP",
    						Port:      uint16(3001),
    						Scheduler: "rr",
    					},
    					{
    						IP:       "100.101.102.105",
    						Port:     3001,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    	servicePort := model.PortList{
    		&model.Port{
    			Name:     "default",
    			Port:     8080,
    			Protocol: protocol.HTTP,
    		},
    		&model.Port{
    			Name:     "auto",
    			Port:     9090,
    			Protocol: protocol.Unsupported,
    		},
    	}
    	http2ServicePort := model.PortList{
    		&model.Port{
    			Name:     "default",
    			Port:     8080,
    			Protocol: protocol.HTTP2,
    		},
    		&model.Port{
    			Name:     "auto",
    			Port:     9090,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		errs = AppendValidation(errs, agent.ValidatePort(int(port.Number)))
    	}
    	// nolint: staticcheck
    	if port.TargetPort > 0 {
    		errs = AppendValidation(errs, fmt.Errorf("targetPort has no impact on Gateways"))
    	}
    
    	if port.Name == "" {
    		errs = AppendValidation(errs, fmt.Errorf("port name must be set: %v", port))
    	}
    	return
    }
    
    func validateServerBind(port *networking.Port, bind string) (errs error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    			"port", "",
    		},
    		{
    			"duplicate port names",
    			&networking.Gateway{
    				Servers: []*networking.Server{
    					{
    						Hosts: []string{"foo.bar.com"},
    						Port:  &networking.Port{Name: "foo", Number: 80, Protocol: "http"},
    					},
    					{
    						Hosts: []string{"scooby.doo.com"},
    						Port:  &networking.Port{Name: "foo", Number: 8080, Protocol: "http"},
    					},
    				},
    			},
    			"port names", "",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    }
    
    func buildTestClusters(c clusterTest) []*cluster.Cluster {
    	c = c.fillDefaults()
    
    	servicePort := model.PortList{
    		&model.Port{
    			Name:     "default",
    			Port:     8080,
    			Protocol: protocol.HTTP,
    		},
    		&model.Port{
    			Name:     "auto",
    			Port:     9090,
    			Protocol: protocol.Unsupported,
    		},
    	}
    
    	service := &model.Service{
    		Hostname:     host.Name(c.serviceHostname),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier_test.go

    	if len(healthCheckNodePorts) != 1 {
    		t.Errorf("expected 1 healthcheck port, got %v", healthCheckNodePorts)
    	} else {
    		nsn := makeNSN("somewhere", "only-local-load-balancer")
    		if port, found := healthCheckNodePorts[nsn]; !found || port != 345 {
    			t.Errorf("expected healthcheck port [%q]=345: got %v", nsn, healthCheckNodePorts)
    		}
    	}
    
    	// Remove some stuff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (!op) return nullptr;
      auto& port = value_port.port;
    
      if (port.empty()) {
        LLVM_DEBUG(llvm::dbgs() << "skipping, port outside spec of " << op << "\n");
        return nullptr;
      }
    
      ElementsAttr attr;
      if (matchPattern(op, m_Constant(&attr))) {
        if (port.size() == 1 && port[0] == 0) return attr;
        if (port.size() == 2) {
          assert(port[0] == 0);
          DenseIntElementsAttr value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

      name: istiod
      namespace: istio-system
    spec:
      ports:
      - name: grpc-xds
        port: 15010
        protocol: TCP
      - name: https-dns
        port: 15012
        protocol: TCP
      - name: https-webhook
        port: 443
        protocol: TCP
        targetPort: 15017
      - name: http-monitoring
        port: 15014
        protocol: TCP
      selector:
        app: istiod
        istio: pilot
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
Back to top