Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 438 for Routing (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/org/codelibs/fess/es/user/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)
  7. src/main/java/org/codelibs/fess/es/config/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)
  8. releasenotes/notes/fix-external-name.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
        **Fixed** a regression in Istio 1.21.0 causing `VirtualService`s routing to `ExternalName` services to not work when 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:48 UTC 2024
    - 264 bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/run_linux.go

    			}
    			tproxyMark, err := strconv.Atoi(cfg.InboundTProxyMark)
    			if err != nil {
    				return fmt.Errorf("failed to parse InboundTProxyMark: %v", err)
    			}
    			// Route all packets marked in chain ISTIODIVERT using routing table ${INBOUND_TPROXY_ROUTE_TABLE}.
    			// Equivalent to `ip rule add fwmark <tproxyMark> lookup <tproxyTable>`
    			families := []int{unix.AF_INET}
    			if cfg.EnableIPv6 {
    				families = append(families, unix.AF_INET6)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/README.md

       --->| ingress |                                  | egress |--->
           +---------+                                  +--------+
    ```
    
    where the `[*]` represents a routing decision, and all of the boxes except in the top row
    represent netfilter hooks. More detailed versions of this diagram can be seen at
    https://en.wikipedia.org/wiki/Netfilter#/media/File:Netfilter-packet-flow.svg and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top