Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for route_name (0.17 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/networking/core/httproute.go

    	}
    
    	return resource, false
    }
    
    func extractListenerPort(routeName string) (int, bool, error) {
    	hasPrefix := strings.HasPrefix(routeName, model.UnixAddressPrefix)
    	index := strings.IndexRune(routeName, ':')
    	if !hasPrefix {
    		routeName = routeName[index+1:]
    	}
    
    	listenerPort, err := strconv.Atoi(routeName)
    	useSniffing := !hasPrefix && index != -1
    	return listenerPort, useSniffing, err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (1)
  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/gateway.go

    			if gateway.IsHTTPSServerWithTLSTermination(server) {
    				routeName := mergedGateway.TLSServerInfo[server].RouteName
    				// This is a HTTPS server, where we are doing TLS termination. Build a http connection manager with TLS context
    				httpFilterChainOpts := configgen.createGatewayHTTPFilterChainOpts(builder.node, server.Port, server,
    					routeName, proxyConfig, istionetworking.TransportProtocolTCP, builder.push)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/bench_test.go

    		}
    		return &model.WatchedResource{ResourceNames: watchedResources}
    	case v3.RouteType:
    		l := s.ConfigGen.BuildListeners(proxy, s.PushContext())
    		routeNames := xdstest.ExtractRoutesFromListeners(l)
    		return &model.WatchedResource{ResourceNames: routeNames}
    	}
    	return nil
    }
    
    // Setup test builds a mock test environment. Note: push context is not initialized, to be able to benchmark separately
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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. istioctl/pkg/proxyconfig/proxyconfig.go

    )
    
    var (
    	fqdn, direction, subset string
    	port                    int
    	verboseProxyConfig      bool
    	waypointProxyConfig     bool
    
    	address, listenerType, statsType string
    
    	routeName string
    
    	clusterName, status string
    
    	// output format (json, yaml or short)
    	outputFormat string
    
    	proxyAdminPort int
    
    	configDumpFile string
    
    	labelSelector = ""
    	loggerName    string
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  10. 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)
Back to top