Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 792 for Routing (0.15 sec)

  1. pkg/jwt/routing.go

    // limitations under the License.
    
    package jwt
    
    import (
    	"strings"
    )
    
    // HeaderJWTClaim is the special header name used in virtual service for routing based on JWT claims.
    const HeaderJWTClaim = "@request.auth.claims"
    
    type Separator int
    
    const (
    	Dot Separator = iota
    	Square
    )
    
    type RoutingClaim struct {
    	Match     bool
    	Separator Separator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. fastapi/routing.py

        is_body_allowed_for_status_code,
    )
    from pydantic import BaseModel
    from starlette import routing
    from starlette.concurrency import run_in_threadpool
    from starlette.exceptions import HTTPException
    from starlette.requests import Request
    from starlette.responses import JSONResponse, Response
    from starlette.routing import (
        BaseRoute,
        Match,
        compile_path,
        get_name,
        request_response,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    John Howard <******@****.***> 1715205171 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/route/route.go

    // information for the given address prefix, to add a new route, and
    // to delete or modify the existing route from the routing information
    // base inside the kernel by writing and reading route messages on a
    // routing socket.
    //
    // For the manipulation of routing information, the route message must
    // contain appropriate fields that include:
    //
    //	Version       = <must be specified>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. src/syscall/route_bsd.go

    		// routing facilities.
    		salign = 4
    	} else if netbsd32Bit {
    		// NetBSD 6 and beyond kernels require 64-bit aligned
    		// access to routing facilities.
    		salign = 8
    	} else if runtime.GOOS == "freebsd" {
    		// In the case of kern.supported_archs="amd64 i386",
    		// we need to know the underlying kernel's
    		// architecture because the alignment for routing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/route/message.go

    }
    
    // A SysType represents a type of operating system-specific
    // information.
    type SysType int
    
    const (
    	SysMetrics SysType = iota
    	SysStats
    )
    
    // ParseRIB parses b as a routing information base and returns a list
    // of routing messages.
    func ParseRIB(typ RIBType, b []byte) ([]Message, error) {
    	if !typ.parseable() {
    		return nil, errUnsupportedMessage
    	}
    	var msgs []Message
    	nmsgs, nskips := 0, 0
    	for len(b) > 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. fastapi/openapi/utils.py

    
    def generate_operation_summary(*, route: routing.APIRoute, method: str) -> str:
        if route.summary:
            return route.summary
        return route.name.replace("_", " ").title()
    
    
    def get_openapi_operation_metadata(
        *, route: routing.APIRoute, method: str, operation_ids: Set[str]
    ) -> Dict[str, Any]:
        operation: Dict[str, Any] = {}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. samples/helloworld/gateway-api/README.md

    Confirm the sample is running using curl:
    
    ```bash
    for run in {1..10}; do curl http://$INGRESS_HOST/hello; done
    ```
    
    Since no version routing has been configured, you should see an equal split of traffic, about half handled by helloworld-v1 and the other half handled by helloworld-v2.
    
    ## Configure weight-based routing
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 22:24:09 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. releasenotes/notes/route-collapse.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 28659
    releaseNotes:
    - |
      **Optimized** generated routing configuration to merge virtual hosts with the same routing configuration. This improves performance for Virtual Services with multiple hostnames defined.
    
    upgradeNotes:
    - title: EnvoyFilter `match.routeConfiguration.vhost.name` semantics change
      content: |
    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. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

            }
    
            public void setPreference(String preference) {
                this.preference = preference;
            }
    
            public void setRouting(String routing) {
                this.routing = routing;
            }
    
            public void setSearchType(String searchType) {
                this.searchType = searchType;
            }
    
            public void setTimeoutInMillis(long timeoutInMillis) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top