Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for has_name (0.12 sec)

  1. pilot/pkg/model/sidecar_test.go

    			},
    		},
    	}
    
    	services1 = []*Service{
    		{
    			Hostname: "bar",
    		},
    	}
    
    	services2 = []*Service{
    		{
    			Hostname: "bar",
    			Ports:    port8000,
    		},
    		{
    			Hostname: "barprime",
    		},
    	}
    
    	services3 = []*Service{
    		{
    			Hostname: "bar",
    			Ports:    port9000,
    		},
    		{
    			Hostname: "barprime",
    		},
    	}
    
    	services4 = []*Service{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. src/encoding/json/decode_test.go

    	{CaseName: Name(""), in: `-5`, ptr: new(int16), out: int16(-5)},
    	{CaseName: Name(""), in: `2`, ptr: new(Number), out: Number("2"), useNumber: true},
    	{CaseName: Name(""), in: `2`, ptr: new(Number), out: Number("2")},
    	{CaseName: Name(""), in: `2`, ptr: new(any), out: float64(2.0)},
    	{CaseName: Name(""), in: `2`, ptr: new(any), out: Number("2"), useNumber: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileAuthenticationCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setHostname_SpanTerm(String hostname) {
            setHostname_SpanTerm("hostname", null);
        }
    
        public void setHostname_SpanTerm(String hostname, ConditionOptionCall<SpanTermQueryBuilder> opLambda) {
            SpanTermQueryBuilder builder = regSpanTermQ("hostname", hostname);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsWebAuthenticationCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setHostname_SpanTerm(String hostname) {
            setHostname_SpanTerm("hostname", null);
        }
    
        public void setHostname_SpanTerm(String hostname, ConditionOptionCall<SpanTermQueryBuilder> opLambda) {
            SpanTermQueryBuilder builder = regSpanTermQ("hostname", hostname);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 95.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    	hostname := "*"
    	if l.Hostname != nil {
    		hostname = string(*l.Hostname)
    	}
    
    	resp := []string{}
    	for _, ns := range namespacesFromSelector(localNamespace, r, l.AllowedRoutes) {
    		// This check is necessary to prevent adding a hostname with an invalid empty namespace
    		if len(ns) > 0 {
    			resp = append(resp, fmt.Sprintf("%s/%s", ns, hostname))
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    }
    
    // ServiceForHostname returns the service associated with a given hostname following SidecarScope
    func (ps *PushContext) ServiceForHostname(proxy *Proxy, hostname host.Name) *Service {
    	if proxy != nil && proxy.SidecarScope != nil {
    		return proxy.SidecarScope.servicesByHostname[hostname]
    	}
    
    	// SidecarScope shouldn't be null here. If it is, we can't disambiguate the hostname to use for a namespace,
    	// so the selection must be undefined.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context_test.go

    					},
    					Hostname: e.Name,
    				}
    			})
    			resolveServiceAliases(inps, nil)
    			out := slices.Map(inps, func(e *Service) service {
    				return service{
    					Name: e.Hostname,
    					Aliases: slices.Map(e.Attributes.Aliases, func(e NamespacedHostname) host.Name {
    						return e.Hostname
    					}),
    					ExternalName: e.Attributes.K8sAttributes.ExternalName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

    				"inbound|8082||": nil,
    				"inbound|8083||": nil,
    			},
    			telemetry: map[string][]string{
    				"inbound|8080||": {string(service.Hostname)},
    				"inbound|8081||": {string(service.Hostname)},
    				"inbound|8082||": {string(serviceAlt.Hostname)},
    				"inbound|8083||": {string(serviceAlt.Hostname)},
    			},
    		},
    		{
    			name:     "multiple services with same service port and target",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.pb.go

    	Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
    	// Hostname represents the FQDN of the service.
    	// For Kubernetes, this would be <name>.<namespace>.svc.<cluster domain>.
    	// TODO: support this field
    	Hostname string `protobuf:"bytes,3,opt,name=hostname,proto3" json:"hostname,omitempty"`
    	// Address represents the addresses the service can be reached at.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsWebAuthenticationCA.java

        public void setHostname_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setHostname_Terms("hostname", opLambda, null);
        }
    
        public void setHostname_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsWebAuthenticationCA> aggsLambda) {
            setHostname_Terms("hostname", opLambda, aggsLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top