Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for route_name (0.22 sec)

  1. pilot/pkg/model/telemetry_logging.go

    		Fields: map[string]*structpb.Value{
    			"start_time":                        {Kind: &structpb.Value_StringValue{StringValue: "%START_TIME%"}},
    			"route_name":                        {Kind: &structpb.Value_StringValue{StringValue: "%ROUTE_NAME%"}},
    			"method":                            {Kind: &structpb.Value_StringValue{StringValue: "%REQ(:METHOD)%"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging_test.go

    							Fields: map[string]*structpb.Value{
    								"start_time":                     {Kind: &structpb.Value_StringValue{StringValue: "%START_TIME%"}},
    								"route_name":                     {Kind: &structpb.Value_StringValue{StringValue: "%ROUTE_NAME%"}},
    								"method":                         {Kind: &structpb.Value_StringValue{StringValue: "%REQ(:METHOD)%"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway.go

    							}
    							ms := mergedServers[serverPort]
    							ms.RouteName = routeName
    							ms.Servers = append(ms.Servers, s)
    						} else {
    							// Merge this to current known port with same bind.
    							ms := mergedServers[current]
    							ms.Servers = append(ms.Servers, s)
    						}
    						serversByRouteName[routeName] = append(serversByRouteName[routeName], s)
    					} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

    					r := xdstest.ExtractRouteConfigurations(sim.Routes)
    					vh := r[tt.routeName]
    					exp := tt.expected
    					if variant == "httproute" && tt.expectedGateway != nil {
    						exp = tt.expectedGateway
    					}
    					if vh == nil && exp != nil {
    						t.Fatalf("route %q not found, have %v", tt.routeName, xdstest.MapKeys(r))
    					}
    					gotHosts := xdstest.ExtractVirtualHosts(vh)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    			os.MkdirAll(vp, 0755)
    
    			// Arrange 2 - populate DSW
    			outerName := filepath.Base(tc.volumePath)
    			pod, pv, pvc := getPodPVCAndPV(tc.volumeMode, "pod1", outerName, "pvc1")
    			volumeSpec := &volume.Spec{PersistentVolume: pv}
    			kubeClient := createtestClientWithPVPVC(pv, pvc, v1.AttachedVolume{
    				Name:       v1.UniqueVolumeName(fmt.Sprintf("fake-plugin/%s", outerName)),
    				DevicePath: "fake/path",
    			})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_waypoint.go

    	if match != nil && match.Port != 0 && match.Port != uint32(listenPort) {
    		return nil
    	}
    
    	routeName := in.Name
    	if match != nil && match.Name != "" {
    		routeName = routeName + "." + match.Name
    	}
    
    	out := &route.Route{
    		Name:     routeName,
    		Match:    istio_route.TranslateRouteMatch(virtualService, match, true),
    		Metadata: util.BuildConfigInfoMetadata(virtualService.Meta),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    				reportUnreachable(routeName(route, rulen), "only the last rule can have no matches")
    			}
    			emptyMatchEncountered = rulen
    			continue
    		}
    
    		duplicateMatches := 0
    		for matchn, match := range route.Match {
    			dupn, ok := matchesEncountered[asJSON(match)]
    			if ok {
    				reportIneffective(routeName(route, rulen), requestName(match, matchn), routeName(routes[dupn], dupn))
    				duplicateMatches++
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. pilot/pkg/simulation/traffic.go

    			return
    		}
    
    		// Fetch inline route
    		rc := hcm.GetRouteConfig()
    		if rc == nil {
    			// If not set, fallback to RDS
    			routeName := hcm.GetRds().RouteConfigName
    			result.RouteConfigMatched = routeName
    			rc = xdstest.ExtractRouteConfigurations(sim.Routes)[routeName]
    		}
    		hostHeader := ""
    		if len(input.Headers["Host"]) > 0 {
    			hostHeader = input.Headers["Host"][0]
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                if (id != null) {
                    renderValue(id, printer, renderSymbolsFully)
                } else {
                    val outerName = (symbol as? KaPossiblyNamedSymbol)?.name ?: SpecialNames.NO_NAME_PROVIDED
                    printer.append("<local>/" + outerName.asString())
                }
            }
    
            if (renderSymbolsFully || symbol is KaBackingFieldSymbol ||
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar.go

    		// return as is
    		if e.IstioListener == nil || e.IstioListener.Port == nil {
    			return e
    		}
    
    		// Check if the ports match
    		// for unix domain sockets (i.e. port == 0), check if the bind is equal to the routeName
    		if int(e.IstioListener.Port.Number) == port {
    			if port == 0 { // unix domain socket
    				if e.IstioListener.Bind == bind {
    					return e
    				}
    				// no match.. continue searching
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top