Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 422 for lmhosts (0.15 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/extensions.v1beta1.Ingress.yaml

                kind: kindValue
                name: nameValue
              serviceName: serviceNameValue
              servicePort: servicePortValue
            path: pathValue
            pathType: pathTypeValue
      tls:
      - hosts:
        - hostsValue
        secretName: secretNameValue
    status:
      loadBalancer:
        ingress:
        - hostname: hostnameValue
          ip: ipValue
          ports:
          - error: errorValue
            port: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. README.md

    <img src="https://github.com/kubernetes/kubernetes/raw/master/logo/logo.png" width="100">
    
    ----
    
    Kubernetes, also known as K8s, is an open source system for managing [containerized applications]
    across multiple hosts. It provides basic mechanisms for the deployment, maintenance,
    and scaling of applications.
    
    Kubernetes builds upon a decade and a half of experience at Google running
    production workloads at scale using a system called [Borg],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/net/http/routing_index_test.go

    		}
    		pats = append(pats, pat)
    	}
    
    	var (
    		methods   = []string{"", "GET ", "HEAD ", "POST "}
    		hosts     = []string{"", "h1", "h2"}
    		segs      = []string{"/a", "/b", "/{x}"}
    		finalSegs = []string{"/a", "/b", "/{f}", "/{m...}", "/{$}"}
    	)
    
    	g := genConcat(
    		genChoice(methods),
    		genChoice(hosts),
    		genStar(3, genChoice(segs)),
    		genChoice(finalSegs))
    	g(collect)
    	return pats
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/retry/retry.go

    // DefaultPolicy gets a copy of the default retry policy.
    func DefaultPolicy() *route.RetryPolicy {
    	policy := defaultPolicy()
    	policy.RetryHostPredicate = []*route.RetryPolicy_RetryHostPredicate{
    		// to configure retries to prefer hosts that haven’t been attempted already,
    		// the builtin `envoy.retry_host_predicates.previous_hosts` predicate can be used.
    		xdsfilters.RetryPreviousHosts,
    	}
    	return policy
    }
    
    func defaultPolicy() *route.RetryPolicy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		})
    		se.Endpoints = endpoints
    		return &c
    	}()
    
    	stringsToHosts := func(hosts []string) []host.Name {
    		ret := make([]host.Name, len(hosts))
    		for i, hostname := range hosts {
    			ret[i] = host.Name(hostname)
    		}
    		return ret
    	}
    
    	cases := []struct {
    		name    string
    		current *config.Config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. docs/distributed/CONFIG.md

    additional burden to have sequential hostnames for us to make sure that we can provide horizontal distribution, however we have come across situations where sometimes this is not feasible and there are no easier alternatives without modifying /etc/hosts on the host system as root user.  Many times in airgapped deployments this is not allowed or requires audits and approvals.
    
    MinIO server configuration file allows users to provide topology that allows for heterogeneous hostnames, allowing MinIO...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/cluster_tf_ops_pass.mlir

    // RUN: tf-opt --cluster-tf-ops-by-host %s | FileCheck %s
    
    // The @main function is a Multi-hosts function which contains two parts:
    //   - A local subgraph which contains both local ops and remote_run kernel to
    //     trigger remote subgraph
    //   - A remote subgraph which contains remote ops on worker:1.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context_test.go

    		},
    		Egress: []*networking.IstioEgressListener{
    			{
    				Hosts: []string{"default/*"},
    			},
    		},
    		OutboundTrafficPolicy: &networking.OutboundTrafficPolicy{},
    	}
    	sidecarWithoutWorkloadSelector := &networking.Sidecar{
    		Egress: []*networking.IstioEgressListener{
    			{
    				Hosts: []string{"default/*"},
    			},
    		},
    		OutboundTrafficPolicy: &networking.OutboundTrafficPolicy{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  9. tests/integration/pilot/workloadentry_test.go

    			seTmpl := `
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: serviceentry.mesh.global
    spec:
      addresses:
      - 240.240.240.240
      hosts: 
      - serviceentry.mesh.global
      ports:
      - number: 80
        targetPort: 18080
        name: http
        protocol: HTTP
      resolution: STATIC
      location: MESH_INTERNAL
      workloadSelector:
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. cmd/metrics-v3-cache.go

    	loadCPUMetrics := func(ctx context.Context) (v madmin.CPUMetrics, err error) {
    		var types madmin.MetricType = madmin.MetricsCPU
    
    		m := collectLocalMetrics(types, collectMetricsOpts{
    			hosts: map[string]struct{}{
    				globalLocalNodeName: {},
    			},
    		})
    
    		for _, hm := range m.ByHost {
    			if hm.CPU != nil {
    				v = *hm.CPU
    				break
    			}
    		}
    
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top