Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 792 for Routing (0.12 sec)

  1. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    				// 1. Mutual TLS origination from egress gateway to https endpoint:
    				//    internalClient ) ---HTTP request (Host: some-external-site.com----> Hits listener 0.0.0.0_80 ->
    				//      VS Routing (add Egress Header) --> Egress Gateway(originates mTLS with client certs)
    				//      --> externalServer(443 with only Simple TLS used and client cert is not verified)
    				"Mutual TLS origination from egress gateway to https endpoint": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. tests/test_route_scope.py

    import pytest
    from fastapi import FastAPI, Request, WebSocket, WebSocketDisconnect
    from fastapi.routing import APIRoute, APIWebSocketRoute
    from fastapi.testclient import TestClient
    
    app = FastAPI()
    
    
    @app.get("/users/{user_id}")
    async def get_user(user_id: str, request: Request):
        route: APIRoute = request.scope["route"]
        return {"user_id": user_id, "path": route.path}
    
    
    @app.websocket("/items/{item_id}")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 08 10:23:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/syscall/route_netbsd.go

    		p := (*InterfaceAddrMessage)(unsafe.Pointer(any))
    		return &InterfaceAddrMessage{Header: p.Header, Data: b[SizeofIfaMsghdr:any.Msglen]}
    	}
    	return nil
    }
    
    // InterfaceAnnounceMessage represents a routing message containing
    // network interface arrival and departure information.
    //
    // Deprecated: Use golang.org/x/net/route instead.
    type InterfaceAnnounceMessage struct {
    	Header IfAnnounceMsghdr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 15 20:55:56 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  4. src/syscall/netlink_linux.go

    // properly.
    func rtaAlignOf(attrlen int) int {
    	return (attrlen + RTA_ALIGNTO - 1) & ^(RTA_ALIGNTO - 1)
    }
    
    // NetlinkRouteRequest represents a request message to receive routing
    // and link states from the kernel.
    type NetlinkRouteRequest struct {
    	Header NlMsghdr
    	Data   RtGenmsg
    }
    
    func (rr *NetlinkRouteRequest) toWireFormat() []byte {
    	b := make([]byte, rr.Header.Len)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. src/syscall/route_openbsd.go

    		p := (*InterfaceAddrMessage)(unsafe.Pointer(any))
    		return &InterfaceAddrMessage{Header: p.Header, Data: b[p.Header.Hdrlen:any.Msglen]}
    	}
    	return nil
    }
    
    // InterfaceAnnounceMessage represents a routing message containing
    // network interface arrival and departure information.
    //
    // Deprecated: Use golang.org/x/net/route instead.
    type InterfaceAnnounceMessage struct {
    	Header IfAnnounceMsghdr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 15 20:55:56 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  6. manifests/helm-profiles/demo.yaml

        - port: 80
          targetPort: 8080
          name: http2
        - port: 443
          targetPort: 8443
          name: https
        - port: 31400
          targetPort: 31400
          name: tcp
          # This is the port where sni routing happens
        - port: 15443
          targetPort: 15443
          name: tls
        resources:
          requests:
            cpu: 10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 01:25:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/route/sys_netbsd.go

    	ifanm := &wireFormat{extOff: sizeofIfAnnouncemsghdrNetBSD7, bodyOff: sizeofIfAnnouncemsghdrNetBSD7}
    	ifanm.parse = ifanm.parseInterfaceAnnounceMessage
    	// NetBSD 6 and above kernels require 64-bit aligned access to
    	// routing facilities.
    	return 8, map[int]*wireFormat{
    		syscall.RTM_ADD:        rtm,
    		syscall.RTM_DELETE:     rtm,
    		syscall.RTM_CHANGE:     rtm,
    		syscall.RTM_GET:        rtm,
    		syscall.RTM_LOSING:     rtm,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. tests/testdata/config/se-example-gw.yaml

    #gateway service (istio-egressgateway.istio-system.svc.cluster.local), as
    #well as route from the gateway to the external service.
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: gateway-routing
      namespace: exampleegressgw
    spec:
      hosts:
      - httpbin.com
      gateways:
      - mesh
      - istio-egressgateway
      http:
      - match:
        - port: 80
          gateways:
          - mesh
        route:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 26 13:51:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  9. manifests/charts/default/files/profile-demo.yaml

        - port: 80
          targetPort: 8080
          name: http2
        - port: 443
          targetPort: 8443
          name: https
        - port: 31400
          targetPort: 31400
          name: tcp
          # This is the port where sni routing happens
        - port: 15443
          targetPort: 15443
          name: tls
        resources:
          requests:
            cpu: 10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. manifests/charts/istio-operator/files/profile-demo.yaml

        - port: 80
          targetPort: 8080
          name: http2
        - port: 443
          targetPort: 8443
          name: https
        - port: 31400
          targetPort: 31400
          name: tcp
          # This is the port where sni routing happens
        - port: 15443
          targetPort: 15443
          name: tls
        resources:
          requests:
            cpu: 10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top