Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 791 for sw_vers (0.23 sec)

  1. pilot/pkg/config/kube/gateway/testdata/tcp.yaml.golden

        internal.istio.io/parents: Gateway/gateway/default.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*'
        port:
          name: default
          number: 34000
          protocol: TCP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1019 bytes
    - Viewed (0)
  2. tests/test_tutorial/test_behind_a_proxy/test_tutorial004.py

        response = client.get("/openapi.json")
        assert response.status_code == 200
        assert response.json() == {
            "openapi": "3.1.0",
            "info": {"title": "FastAPI", "version": "0.1.0"},
            "servers": [
                {
                    "url": IsOneOf(
                        "https://stag.example.com/",
                        # TODO: remove when deprecating Pydantic v1
                        "https://stag.example.com",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/doc.go

    // Package kubeapiserver holds code that is common to both the kube-apiserver
    // and the federation-apiserver, but isn't part of a generic API server.
    // For instance, the non-delegated authorization options are used by those two
    // servers, but no generic API server is likely to use them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 05 19:25:32 UTC 2019
    - 884 bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/operator/output/operator-remove.yaml

        status: {}
      validation:
        openAPIV3Schema:
          properties:
            apiVersion:
              description: 'APIVersion defines the versioned schema of this representation
                of an object. Servers should convert recognized schemas to the latest
                internal value, and may reject unrecognized values.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 21 01:45:21 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/gateway/certificate.go

    			continue
    		}
    
    		gatewayInstance := context.Find(gvk.Gateway, gatewayFullName)
    		gateway := gatewayInstance.Message.(*v1alpha3.Gateway)
    		for _, currentServer := range currentGateway.Servers {
    			for _, server := range gateway.Servers {
    				// make sure have TLS configuration
    				if currentServer.Tls == nil || server.Tls == nil {
    					continue
    				}
    
    				if haveSameCertificate(currentServer.Tls, server.Tls) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/hostendpoints-crd.yaml

      - name: v1
        schema:
          openAPIV3Schema:
            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/testdata/benchmarks/knative-gateway.yaml

    spec:
      selector:
        istio.io/benchmark: "true"
      servers:
      - hosts:
        - '*'
        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: knative-local-gateway
      namespace: knative-serving
    spec:
      selector:
        istio.io/benchmark: "true"
      servers:
      - hosts:
        - '*'
        port:
          name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 19 16:50:51 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  8. pkg/dns/client/dns.go

    	// upstream resolvers as is.
    	if dnsConfig != nil {
    		for _, s := range dnsConfig.Servers {
    			h.resolvConfServers = append(h.resolvConfServers, net.JoinHostPort(s, dnsConfig.Port))
    		}
    		h.searchNamespaces = dnsConfig.Search
    	}
    
    	log.WithLabels("search", h.searchNamespaces, "servers", h.resolvConfServers).Debugf("initialized DNS")
    
    	if addr == "" {
    		addr = "localhost:15053"
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. subprojects/distributions-full/src/toplevel/README

    For more information about Gradle, please visit: https://gradle.org
    
    If you are using the "all" distribution, the User Manual is included in your distribution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 15 06:58:16 UTC 2020
    - 976 bytes
    - Viewed (0)
  10. tests/testdata/config/ingress.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: istio-ingress
      namespace: testns
    spec:
      selector:
        istio: ingress
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "*"
      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - "*"
        tls:
          mode: SIMPLE
          serverCertificate: /etc/certs/servercert.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 949 bytes
    - Viewed (0)
Back to top