Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 791 for sw_vers (0.64 sec)

  1. okhttp-tls/README.md

    Recommendations
    ---------------
    
    Typically servers need a held certificate plus a chain of intermediates. Servers only need the
    private key for their own certificate. The chain served by a server doesn't need the root
    certificate.
    
    The trusted roots don't need to be the same for client and server when using client authentication.
    Clients might rely on the platform certificates and servers might use a private
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/api_enablement.go

    	cliflag "k8s.io/component-base/cli/flag"
    )
    
    // APIEnablementOptions contains the options for which resources to turn on and off.
    // Given small aggregated API servers, this option isn't required for "normal" API servers
    type APIEnablementOptions struct {
    	RuntimeConfig cliflag.ConfigurationMap
    }
    
    func NewAPIEnablementOptions() *APIEnablementOptions {
    	return &APIEnablementOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. tests/testdata/config/ingressgateway.yaml

      namespace: testns
    spec:
      selector:
        # DO NOT CHANGE THESE LABELS
        # The ingressgateway is defined in install/kubernetes/helm/istio/values.yaml
        # with these labels
        istio: ingressgateway
      servers:
      - port:
          number: 80 #also declared in gateway's deployment files
          name: http
          protocol: HTTP
        hosts:
        - uk.bookinfo.com
        #tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 914 bytes
    - Viewed (0)
  4. cluster/addons/calico-policy-controller/bgpconfigurations-crd.yaml

            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
    - 5.8K bytes
    - Viewed (0)
  5. fastapi/openapi/utils.py

        if contact:
            info["contact"] = contact
        if license_info:
            info["license"] = license_info
        output: Dict[str, Any] = {"openapi": openapi_version, "info": info}
        if servers:
            output["servers"] = servers
        components: Dict[str, Dict[str, Any]] = {}
        paths: Dict[str, Dict[str, Any]] = {}
        webhook_paths: Dict[str, Dict[str, Any]] = {}
        operation_ids: Set[str] = set()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/README.md

    # apimachinery
    
    Scheme, typing, encoding, decoding, and conversion packages for Kubernetes and Kubernetes-like API objects.
    
    
    ## Purpose
    
    This library is a shared dependency for servers and clients to work with Kubernetes API infrastructure without direct
    type dependencies. Its first consumers are `k8s.io/kubernetes`, `k8s.io/client-go`, and `k8s.io/apiserver`.
    
    
    ## Compatibility
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"kind": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/testdata/localhost.yaml

    # This shows an example local config for ztunnel that adds a workload for localhost.
    # This allows local testing by sending requests through the local ztunnel to other servers running on localhost.
    workloads:
    - uid: cluster1//v1/Pod/default/local
      name: local
      namespace: default
      serviceAccount: default
      workloadIps: ["127.0.0.1"]
      protocol: HBONE
      node: local
      network: ""
      services:
        "default/example.com":
          80: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. samples/tcp-echo/tcp-echo-all-v1.yaml

    #   limitations under the License.
    
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: tcp-echo-gateway
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 31400
          name: tcp
          protocol: TCP
        hosts:
        - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: tcp-echo-destination
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 07 22:48:00 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. samples/multicluster/expose-istiod-https.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: istiod-gateway
    spec:
      selector:
        istio: eastwestgateway
      servers:
        - port:
            name: https-istiod
            number: 15012
            protocol: https
          tls:
            mode: SIMPLE
            # use a valid credential here
            credentialName: "$CREDENTIAL_NAME"
          hosts:
          # use a valid gateway host and domain for istiod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top