Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 408 for lmhosts (1.88 sec)

  1. pilot/pkg/networking/core/listener_test.go

    					Port: &networking.SidecarPort{
    						Number:   15021,
    						Protocol: "GRPC",
    						Name:     "http",
    					},
    					Hosts: []string{"*/*"},
    				},
    				{
    					Port: &networking.SidecarPort{
    						Number:   15001,
    						Protocol: "HTTP",
    						Name:     "http",
    					},
    					Hosts: []string{"*/*"},
    				},
    			},
    		},
    	}
    	testcases := []struct {
    		name             string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1/types.go

    type IngressTLS struct {
    	// hosts is a list of hosts included in the TLS certificate. The values in
    	// this list must match the name/s used in the tlsSecret. Defaults to the
    	// wildcard host setting for the loadbalancer controller fulfilling this
    	// Ingress, if left unspecified.
    	// +listType=atomic
    	// +optional
    	Hosts []string `json:"hosts,omitempty" protobuf:"bytes,1,rep,name=hosts"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. docs/distributed/DESIGN.md

    > http://host1/export6
    > http://host2/export6
    > http://host1/export7
    > http://host2/export7
    > http://host1/export8
    > http://host2/export8
    ```
    
    *A noticeable trait of this expansion is that it chooses unique hosts such the setup provides maximum protection and availability.*
    
    - Choosing an erasure set for the object is decided during `PutObject()`, object names are used to find the right erasure set using the following pseudo code.
    
    ```go
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/grpcgen/grpcecho_test.go

            version: v1
        - name: v2
          labels:
            version: v2
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: echo-vs
      namespace: default
    spec:
      hosts:
      - echo-app.default.svc.cluster.local
      http:
      - route:
        - destination:
            host: echo-app.default.svc.cluster.local
            subset: v1
          weight: 20
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. operator/pkg/util/merge_iop.go

    }
    
    type meshConfigServiceSettings struct {
    	Settings *v1alpha13.MeshConfig_ServiceSettings_Settings `json:"settings" patchStrategy:"merge"`
    	Hosts    []string                                       `json:"hosts" patchStrategy:"merge"`
    }
    
    type telemetryConfig struct {
    	V2 *telemetryV2Config `json:"v2" patchStrategy:"merge"`
    }
    
    type telemetryV2Config struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceregistry_test.go

    		Meta: config.Meta{
    			Name:             "service-entry",
    			Namespace:        namespace,
    			GroupVersionKind: gvk.ServiceEntry,
    			Domain:           "cluster.local",
    		},
    		Spec: &networking.ServiceEntry{
    			Hosts: []string{"service.namespace.svc.cluster.local"},
    			Ports: []*networking.ServicePort{port},
    			WorkloadSelector: &networking.WorkloadSelector{
    				Labels: labels,
    			},
    			Resolution: networking.ServiceEntry_STATIC,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  7. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java

            }
        }
    
        protected Client createClient() {
            final String[] hosts =
                    split(address, ",").get(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).toArray(n -> new String[n]));
            final Settings settings = Settings.builder().putList("http.hosts", hosts).build();
            return new HttpClient(settings, null);
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation_test.go

    	}
    }
    
    func TestServiceSettings(t *testing.T) {
    	cases := []struct {
    		name  string
    		hosts []string
    		valid bool
    	}{
    		{
    			name: "good",
    			hosts: []string{
    				"*.foo.bar",
    				"bar.baz.svc.cluster.local",
    			},
    			valid: true,
    		},
    		{
    			name: "bad",
    			hosts: []string{
    				"foo.bar.*",
    			},
    			valid: false,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tls.go

    	svcConfigs := make([]config.Config, 0)
    	for _, cfg := range configs {
    		virtualService := cfg.Spec.(*v1alpha3.VirtualService)
    		for _, vsHost := range virtualService.Hosts {
    			if filterNamespace != "" && filterNamespace != cfg.Namespace {
    				continue
    			}
    			if host.Name(vsHost).Matches(hostname) {
    				svcConfigs = append(svcConfigs, cfg)
    				break
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. internal/grid/grid_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    	grid, err := SetupTestGrid(2)
    	errFatal(err)
    	t.Cleanup(grid.Cleanup)
    
    	local := grid.Managers[0]
    	localHost := grid.Hosts[0]
    	remote := grid.Managers[1]
    	remoteHost := grid.Hosts[1]
    
    	connLocalToRemote := local.Connection(remoteHost)
    	connRemoteLocal := remote.Connection(localHost)
    
    	t.Run("testStreamRoundtrip", func(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top