Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for prefixer (0.08 sec)

  1. pilot/pkg/networking/core/listener_waypoint.go

    			cidr := util.ConvertAddressToCidr(svc.GetAddressForProxy(lb.node))
    			rangeMatcher := &matcher.IPMatcher_IPRangeMatcher{
    				Ranges: []*xds.CidrRange{{
    					AddressPrefix: cidr.AddressPrefix,
    					PrefixLen:     cidr.PrefixLen,
    				}},
    				OnMatch: match.ToMatcher(portMapper.Matcher),
    			}
    			ipMatcher.RangeMatchers = append(ipMatcher.RangeMatchers, rangeMatcher)
    		}
    	}
    
    	{
    		// Direct pod access chain.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    * `prefix`: to set the path prefix for a router. Up to now, this was only possible when calling `include_router`.
    * `tags`: OpenAPI tags to apply to all the *path operations* in this router.
    
    For example:
    
    ```Python
    from fastapi import APIRouter, Depends
    
    
    async def some_dependency():
        return
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top