Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 136 for PORT (0.23 sec)

  1. pilot/pkg/serviceregistry/serviceentry/store_test.go

    	}
    
    	expectedServices := []*model.Service{
    		makeService("*.istio.io", "httpDNSRR", constants.UnspecifiedIP, map[string]int{"http-port": 80, "http-alt-port": 8080}, true, model.DNSRoundRobinLB),
    		makeService("*.istio.io", "httpDNSRR", constants.UnspecifiedIP, map[string]int{"http-port": 80, "http-alt-port": 8080}, true, model.DNSLB),
    	}
    
    	store.updateServices(httpDNSRR.NamespacedName(), expectedServices)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. hack/lib/etcd.sh

        exit 1
      }
    
      # validate etcd port is free
      local port_check_command
      if command -v ss &> /dev/null && ss -Version | grep 'iproute2' &> /dev/null; then
        port_check_command="ss"
      elif command -v netstat &>/dev/null; then
        port_check_command="netstat"
      else
        kube::log::usage "unable to identify if etcd is bound to port ${ETCD_PORT}. unable to find ss or netstat utilities."
        exit 1
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/services_test.go

    					Hostname:  "a.example.com",
    					Addresses: []*workloadapi.NetworkAddress{{
    						Network: testNW,
    						Address: netip.AddrFrom4([4]byte{1, 2, 3, 4}).AsSlice(),
    					}},
    					Ports: []*workloadapi.Port{{
    						ServicePort: 80,
    						TargetPort:  80,
    					}},
    					SubjectAltNames: []string{"san1"},
    				},
    				{
    					Name:      "name",
    					Namespace: "ns",
    					Hostname:  "b.example.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/TestableDaemon.groovy

        @Override
        void changeTokenVisibleToClient() {
            registryProbe.resetToken()
        }
    
        @Override
        int getPort() {
            Pattern pattern = Pattern.compile("^.*" + DaemonMessages.ADVERTISING_DAEMON + ".*port:(\\d+).*",
                Pattern.MULTILINE + Pattern.DOTALL);
    
            Matcher matcher = pattern.matcher(daemonLog.text);
            assert matcher.matches(): "Unable to find daemon address in the daemon log. Daemon: $context"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/webhook.go

    	istiolog "istio.io/istio/pkg/log"
    )
    
    type httpServerErrorLogWriter struct{}
    
    // Webhook http.Server.ErrorLog handler specifically to filter
    // http: TLS handshake error from 127.0.0.1:<PORT>: EOF
    // messages that occur when clients send RST while TLS handshake is still in progress.
    // httpsReadyClient can trigger this periodically when multiple concurrent probes are hitting this endpoint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. hack/testdata/multi-resource-list-modify.json

              "name":"mock",
              "labels":{
                "app":"mock",
                "status":"replaced"
              }
            },
            "spec":{
              "ports": [{
                "protocol": "TCP",
                "port": 99,
                "targetPort": 9949
              }],
              "selector":{
                "app":"mock"
              }
            }
          },
          {
             "kind":"ReplicationController",
             "apiVersion":"v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/string_utils.cc

      // TODO(b/165919229): This code will need changing if/when we port to a
      // big-endian platform.
      memcpy(*buffer, &num_strings, sizeof(int32_t));
    
      // Set offset of strings.
      int32_t start = sizeof(int32_t) * (num_strings + 2);
      for (size_t i = 0; i < offset_.size(); i++) {
        // TODO(b/165919229): This code will need changing if/when we port to a
        // big-endian platform.
        int32_t offset = start + offset_[i];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. hack/testdata/multi-resource-yaml.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: mock
      labels:
        app: mock
    spec:
      ports:
      - port: 99
        protocol: TCP
        targetPort: 9949
      selector:
        app: mock
    ---
    apiVersion: v1
    kind: ReplicationController
    metadata:
      name: mock
    spec:
      replicas: 1
      selector:
        app: mock
      template:
        metadata:
          labels:
            app: mock
        spec:
          containers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 511 bytes
    - Viewed (0)
  9. hack/testdata/multi-resource-json.json

    {
       "kind":"Service",
       "apiVersion":"v1",
       "metadata":{
         "name":"mock",
         "labels":{
           "app":"mock"
         }
       },
       "spec":{
         "ports": [{
           "protocol": "TCP",
           "port": 99,
           "targetPort": 9949
         }],
         "selector":{
           "app":"mock"
         }
       }
    }
    {
       "kind":"ReplicationController",
       "apiVersion":"v1",
       "metadata":{
         "name":"mock",
         "labels":{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 879 bytes
    - Viewed (0)
  10. hack/testdata/multi-resource-list.json

            "metadata":{
              "name":"mock",
              "labels":{
                "app":"mock"
              }
            },
            "spec":{
              "ports": [{
                "protocol": "TCP",
                "port": 99,
                "targetPort": 9949
              }],
              "selector":{
                "app":"mock"
              }
            }
          },
          {
             "kind":"ReplicationController",
             "apiVersion":"v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top