Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NamespacedName (0.28 sec)

  1. pilot/pkg/model/destination_rule.go

    	p.exportTo[resolvedHost] = exportToSet
    }
    
    func ConvertConsolidatedDestRule(cfg *config.Config) *ConsolidatedDestRule {
    	return &ConsolidatedDestRule{
    		rule: cfg,
    		from: []types.NamespacedName{cfg.NamespacedName()},
    	}
    }
    
    // Equals compare l equals r consolidatedDestRule or not.
    func (l *ConsolidatedDestRule) Equals(r *ConsolidatedDestRule) bool {
    	if l == r {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/match/matchers_test.go

    func (f fakeInstance) Instances() echo.Instances {
    	return echo.Instances{f}
    }
    
    func (f fakeInstance) ID() resource.ID {
    	panic("implement me")
    }
    
    func (f fakeInstance) NamespacedName() echo.NamespacedName {
    	return f.Config().NamespacedName()
    }
    
    func (f fakeInstance) PortForName(name string) echo.Port {
    	return f.Config().Ports.MustForName(name)
    }
    
    func (f fakeInstance) Config() echo.Config {
    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. tests/integration/ambient/cnirepair/main_test.go

    	}
    
    	apps.All = echos
    	apps.Uncaptured = match.ServiceName(echo.NamespacedName{Name: Uncaptured, Namespace: apps.Namespace}).GetMatches(echos)
    	apps.Captured = match.ServiceName(echo.NamespacedName{Name: Captured, Namespace: apps.Namespace}).GetMatches(echos)
    	apps.Sidecar = match.ServiceName(echo.NamespacedName{Name: Sidecar, Namespace: apps.Namespace}).GetMatches(echos)
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/revisions/tag_watcher.go

    }
    
    func NewTagWatcher(client kube.Client, revision string) TagWatcher {
    	p := &tagWatcher{
    		revision: revision,
    	}
    	p.queue = controllers.NewQueue("tag", controllers.WithReconciler(func(key types.NamespacedName) error {
    		p.notifyHandlers()
    		return nil
    	}))
    	p.webhooks = kclient.NewFiltered[*admissionregistrationv1.MutatingWebhookConfiguration](client, kubetypes.Filter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    			TargetPort:  uint32(p.TargetPort.IntVal),
    		})
    	}
    
    	addresses, err := slices.MapErr(getVIPs(svc), a.toNetworkAddress)
    	if err != nil {
    		log.Warnf("fail to parse service %v: %v", config.NamespacedName(svc), err)
    		return nil
    	}
    	// handle svc waypoint scenario
    	var waypointAddress *workloadapi.GatewayAddress
    	if w != nil {
    		waypointAddress = a.getWaypointAddress(w)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top