Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 130 for ServiceName (0.47 sec)

  1. tests/integration/telemetry/api/setup_test.go

    		return err
    	}
    
    	if err != nil {
    		return err
    	}
    	for _, c := range ctx.Clusters() {
    		ingr = append(ingr, ist.IngressFor(c))
    	}
    	mockProm = match.ServiceName(echo.NamespacedName{Name: "mock-prom", Namespace: apps.Namespace}).GetMatches(apps.Echos().All.Instances())
    	promInst, err = prometheus.New(ctx, prometheus.Config{})
    	if err != nil {
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/match/matchers_test.go

    	return f.Config().Ports.MustForName(name)
    }
    
    func (f fakeInstance) Config() echo.Config {
    	cfg := echo.Config(f)
    	_ = cfg.FillDefaults(nil)
    	return cfg
    }
    
    func (f fakeInstance) ServiceName() string {
    	return f.Config().Service
    }
    
    func (f fakeInstance) NamespaceName() string {
    	return f.Config().NamespaceName()
    }
    
    func (f fakeInstance) ServiceAccountName() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/instances.go

    )
    
    var _ Target = Instances{}
    
    // Instances contains the instances created by the builder with methods for filtering
    type Instances []Instance
    
    func (i Instances) ServiceName() string {
    	return i.Config().Service
    }
    
    func (i Instances) NamespaceName() string {
    	return i.Config().NamespaceName()
    }
    
    func (i Instances) ServiceAccountName() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AbstractIdleServiceTest.java

                return new Executor() {
                  @Override
                  public void execute(Runnable command) {}
                };
              }
    
              @Override
              protected String serviceName() {
                return "Foo";
              }
            };
        TimeoutException e =
            assertThrows(
                TimeoutException.class,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractIdleServiceTest.java

                return new Executor() {
                  @Override
                  public void execute(Runnable command) {}
                };
              }
    
              @Override
              protected String serviceName() {
                return "Foo";
              }
            };
        TimeoutException e =
            assertThrows(
                TimeoutException.class,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. samples/addons/loki.yaml

        app.kubernetes.io/component: single-binary
        app.kubernetes.io/part-of: memberlist
    spec:
      replicas: 1
      podManagementPolicy: Parallel
      updateStrategy:
        rollingUpdate:
          partition: 0
      serviceName: loki-headless
      revisionHistoryLimit: 10
      
      persistentVolumeClaimRetentionPolicy:
        whenDeleted: Delete
        whenScaled: Delete
      selector:
        matchLabels:
          app.kubernetes.io/name: loki
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. tests/integration/security/normalization_test.go

    					istio.GetOrFail(t, t).PatchMeshConfigOrFail(t, t, fmt.Sprintf(`
    pathNormalization:
      normalization: %v`, tt.ntype.String()))
    
    					newTrafficTest(t, apps.Ns1.All.Instances()).
    						FromMatch(match.ServiceName(apps.Ns1.A.NamespacedName())).
    						Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    							for _, expected := range tt.expectations {
    								expected := expected
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/deployment/services.go

    	ProtocolMap         map[core_v1.Protocol]ServiceNames
    	ServiceNames        []string
    	ServiceSpecWithName struct {
    		Name string
    		Spec *core_v1.ServiceSpec
    	}
    )
    
    // targetPort port serviceName
    type targetPortMap map[string]map[int32]string
    
    func (s *ServiceAssociationAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:        "deployment.MultiServiceAnalyzer",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/grpcgen/cds.go

    	return &cluster.Cluster{
    		Name:                 name,
    		ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS},
    		EdsClusterConfig: &cluster.Cluster_EdsClusterConfig{
    			ServiceName: name,
    			EdsConfig: &core.ConfigSource{
    				ConfigSourceSpecifier: &core.ConfigSource_Ads{
    					Ads: &core.AggregatedConfigSource{},
    				},
    			},
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/echotest/filters.go

    // by-pass the sidecar, so tests relying on sidecar logic will sent to disable self-calls by default.
    var NoSelfCalls CombinationFilter = func(from echo.Instance, to echo.Instances) echo.Instances {
    	return match.Not(match.ServiceName(from.NamespacedName())).GetMatches(to)
    }
    
    // HasL7 only allows traffic where there is some L7 processing occurring on the path
    var HasL7 CombinationFilter = func(from echo.Instance, to echo.Instances) echo.Instances {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top