Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 330 for lmhosts (0.55 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tests/integration/pilot/label_test.go

    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			cfg := `apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: {{.Destination}}
    spec:
      hosts:
      - {{.Destination}}
      http:
      - route:
        - destination:
            host: {{.Destination}}
            subset: my-subset
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/InsecureExtendedTrustManager.kt

    import javax.net.ssl.X509ExtendedTrustManager
    import okhttp3.internal.peerName
    import org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
    
    /**
     * This extends [X509ExtendedTrustManager] to disable verification for a set of hosts.
     *
     * Note that the superclass [X509ExtendedTrustManager] isn't available on Android until version 7
     * (API level 24).
     */
    @IgnoreJRERequirement
    internal class InsecureExtendedTrustManager(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util.go

    		},
    	}
    }
    
    // SortVirtualHosts sorts a slice of virtual hosts by name.
    //
    // Envoy computes a hash of RDS to see if things have changed - hash is affected by order of elements in the filter. Therefore
    // we sort virtual hosts by name before handing them back so the ordering is stable across HTTP Route Configs.
    func SortVirtualHosts(hosts []*route.VirtualHost) {
    	if len(hosts) < 2 {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/common/deployment/namespace.go

    	cfg.Eval(ns.Name(), map[string]any{
    		"Namespaces": namespaces,
    	}, `
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: restrict-to-namespace
    spec:
      egress:
      - hosts:
        - "istio-system/*"
    {{ range $ns := .Namespaces }}
        - "{{ $ns.Name }}/*"
    {{ end }}
    `)
    
    	if !t.Settings().DisableDefaultExternalServiceConnectivity {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. cmd/endpoint.go

    		}
    	}
    	return foundSet.ToSlice()
    }
    
    // hostsSorted will return all hosts found.
    // The LOCAL host will be nil, but the indexes of all hosts should
    // remain consistent across the cluster.
    func (l EndpointServerPools) hostsSorted() []*xnet.Host {
    	peers, localPeer := l.peers()
    	sort.Strings(peers)
    	hosts := make([]*xnet.Host, len(peers))
    	for i, hostStr := range peers {
    		if hostStr == localPeer {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top