Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 723 for Route (0.12 sec)

  1. istioctl/pkg/util/configdump/route.go

    		route := &route.RouteConfiguration{}
    		err = drc[i].RouteConfig.UnmarshalTo(route)
    		if err != nil {
    			return nil, err
    		}
    		sort.Slice(route.VirtualHosts, func(i, j int) bool {
    			return route.VirtualHosts[i].Name < route.VirtualHosts[j].Name
    		})
    		drc[i].RouteConfig = protoconv.MessageToAny(route)
    	}
    
    	if stripVersions {
    		for i := range drc {
    			drc[i].VersionInfo = ""
    			drc[i].LastUpdated = nil
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Route.kt

     *    requires an IP address. The DNS server may return multiple IP addresses to attempt.
     *
     * Each route is a specific selection of these options.
     */
    class Route(
      @get:JvmName("address") val address: Address,
      /**
       * Returns the [Proxy] of this route.
       *
       * **Warning:** This may disagree with [Address.proxy] when it is null. When the address's proxy
       * is null, the proxy selector is used.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/route.go

    	}
    	for _, route := range routes {
    		if filter.Verify(route) {
    			if includeConfigType {
    				route.Name = fmt.Sprintf("route/%s", route.Name)
    			}
    			if filter.Verbose {
    				for _, vhosts := range route.GetVirtualHosts() {
    					for _, r := range vhosts.Routes {
    						if !isPassthrough(r.GetAction()) {
    							fmt.Fprintf(w, "%v\t%s\t%s\t%s\t%s\n",
    								route.Name,
    								vhosts.Name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    func buildDefaultHTTPRoute(clusterName string, operation string) *route.Route {
    	routeAction := &route.RouteAction{
    		ClusterSpecifier: &route.RouteAction_Cluster{Cluster: clusterName},
    	}
    	val := &route.Route{
    		Match: TranslateRouteMatch(config.Config{}, nil, true),
    		Decorator: &route.Decorator{
    			Operation: operation,
    		},
    		Action: &route.Route_Route{
    			Route: routeAction,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/route.go

    // specifies target information like the following:
    //
    //	route.RouteMessage{
    //		Version: RTM_VERSION,
    //		Type: RTM_GET,
    //		Flags: RTF_UP | RTF_HOST,
    //		ID: uintptr(os.Getpid()),
    //		Seq: 1,
    //		Addrs: []route.Addrs{
    //			RTAX_DST: &route.Inet4Addr{ ... },
    //			RTAX_IFP: &route.LinkAddr{ ... },
    //			RTAX_BRD: &route.Inet4Addr{ ... },
    //		},
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. samples/websockets/route.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: tornado
    spec:
      hosts:
      - "*"
      gateways:
      - tornado-gateway
      http:
      - match:
        - uri:
            prefix: /
        route:
        - destination:
            host: tornado
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 28 17:30:43 UTC 2019
    - 495 bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

          namespaces:
            from: All
          kinds:
          - kind: HTTPRoute
      - name: same-namespace
        hostname: "*.same-namespace.example"
        port: 80
        protocol: HTTP
      - name: scope-route
        hostname: "*.scope-route.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
          kinds:
          - kind: TCPRoute
      - name: slctr-labels
        hostname: "*.slctr-labels.example"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/compare/route.go

    Xiaopeng Han <******@****.***> 1710237729 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. releasenotes/notes/route-collapse.yaml

    John Howard <******@****.***> 1622650204 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 02 16:10:04 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml

    Frank Budinsky <******@****.***> 1697669019 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top