Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for 0_9443 (0.11 sec)

  1. tests/integration/telemetry/policy/helper_test.go

    	// As defined below, the tcp-conflict and https-conflict ports are 9443 and 9091
    	ServiceEntry = `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: http
    spec:
      hosts:
      - istio.io
      location: MESH_EXTERNAL
      ports:
      - name: http-for-https
        number: 9443
        protocol: HTTP
      - name: http-for-tcp
        number: 9091
        protocol: HTTP
      resolution: DNS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_test.go

    									{
    										Port: 9443,
    									},
    								},
    								Route: []*networking.RouteDestination{
    									{
    										Destination: &networking.Destination{
    											Host: "foo.com",
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			[]string{"0.0.0.0_443", "0.0.0.0_9443"},
    		},
    		{
    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/envoy/agent_test.go

    	"listener.0.0.0.0_15006.downstream_cx_active: 0 \n" +
    	"listener.0.0.0.0_15021.downstream_cx_active: 0 \n" +
    	"listener.0.0.0.0_8443.downstream_cx_active: 6 \n" +
    	"listener.0.0.0.0_9093.downstream_cx_active: 8 \n" +
    	"listener.10.112.32.70_9043.downstream_cx_active: 1 \n" +
    	"listener.10.112.33.230_2181.downstream_cx_active: 0 \n" +
    	"listener.10.112.40.186_2181.downstream_cx_active: 1 \n" +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 19 20:22:09 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. releasenotes/notes/49443.yaml

    Xiaopeng Han <******@****.***> 1709306674 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 15:24:34 UTC 2024
    - 168 bytes
    - Viewed (0)
  5. test/codegen/constants.go

    // A contiguous set of 1 bits, potentially wrapping.
    func contiguousMaskConstants(out [64]uint64) {
    	// ppc64x: "MOVD\t[$]-1", "RLDC\tR[0-9]+, [$]44, [$]63,"
    	out[0] = 0xFFFFF00000000001
    	// ppc64x: "MOVD\t[$]-1", "RLDC\tR[0-9]+, [$]43, [$]63,"
    	out[1] = 0xFFFFF80000000001
    	// ppc64x: "MOVD\t[$]-1", "RLDC\tR[0-9]+, [$]43, [$]4,"
    	out[2] = 0x0FFFF80000000000
    	// ppc64x/power8: "MOVD\t[$]-1", "RLDC\tR[0-9]+, [$]33, [$]63,"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 14:03:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. pilot/pkg/xds/testdata/none_lds_tcp.json

                        }
                      }
                    }
                  }
                }
              ]
            }
          ],
          "listener_filters": null
        },
        "127.0.0.1_2443": {
          "name": "127.0.0.1_2443",
          "address": {
            "Address": {
              "SocketAddress": {
                "address": "127.0.0.1",
                "PortSpecifier": {
                  "PortValue": 2443
                }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 22.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/gateway_simulation_test.go

    						Port:       443,
    						HostHeader: "example.com",
    						Protocol:   simulation.HTTP,
    						TLS:        simulation.TLS,
    					},
    					Result: simulation.Result{
    						ListenerMatched:    "0.0.0.0_443",
    						VirtualHostMatched: "example.com:443",
    						RouteConfigMatched: "https.443.https.gateway.default",
    						ClusterMatched:     "outbound|443||b.default",
    						StrictMatch:        true,
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/tests/compute-cost.mlir

      %3 = "tfl.reshape"(%1, %2) {tac.device = "CPU", tac.inference_type = "QUANTIZED_INT8"} : (tensor<384x128x!quant.uniform<i8:f32, 0.9:-4>>, tensor<3xi32>) -> tensor<1x384x128x!quant.uniform<i8:f32, 0.9:-4>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:29:10 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  9. pilot/pkg/xds/lds_test.go

    	}
    
    	// TODO: This is flimsy. The ADSC code treats any listener with http connection manager as a HTTP listener
    	// instead of looking at it as a listener with multiple filter chains
    	l := adsc.GetHTTPListeners()["0.0.0.0_443"]
    
    	if l != nil {
    		if len(l.FilterChains) != 3 {
    			t.Fatalf("Expected 3 filter chains, got %d\n", len(l.FilterChains))
    		}
    	}
    }
    
    // TestLDS is running LDS tests.
    func TestLDS(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go

    	0x1436: 0x0002, 0x1437: 0x0002, 0x1438: 0x0002, 0x1439: 0x0002, 0x143a: 0x0003, 0x143b: 0x0003,
    	0x143c: 0x000a, 0x143d: 0x009a, 0x143e: 0x008a,
    	// Block 0x51, offset 0x1440
    	0x1440: 0x0002, 0x1441: 0x0002, 0x1442: 0x0002, 0x1443: 0x0002, 0x1444: 0x0002, 0x1445: 0x0002,
    	0x1446: 0x0002, 0x1447: 0x0002, 0x1448: 0x0002, 0x1449: 0x0002, 0x144a: 0x0003, 0x144b: 0x0003,
    	0x144c: 0x000a, 0x144d: 0x009a, 0x144e: 0x008a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 116.6K bytes
    - Viewed (0)