Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toKey (0.02 sec)

  1. pkg/test/framework/components/echo/echotest/filters_test.go

    							fromKey := from.Config().ClusterLocalFQDN()
    							toKey := to.Config().ClusterLocalFQDN()
    							if testTopology[fromKey] == nil {
    								testTopology[fromKey] = map[string]int{}
    							}
    							testTopology[fromKey][toKey]++
    						})
    				},
    				expect: map[string]map[string]int{
    					"a.echo1.svc.cluster.local": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    					res[fromKey] = map[Reference]*Grants{}
    				}
    				if _, f := res[fromKey][toKey]; !f {
    					res[fromKey][toKey] = &Grants{
    						AllowedNames: sets.New[string](),
    					}
    				}
    				if to.Name != nil {
    					res[fromKey][toKey].AllowedNames.Insert(string(*to.Name))
    				} else {
    					res[fromKey][toKey].AllowAll = true
    				}
    			}
    		}
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top