Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 246 for 8002 (0.04 sec)

  1. tests/test_openapi_servers.py

                {
                    "url": IsOneOf(
                        "http://staging.localhost.tiangolo.com:8000/",
                        # TODO: remove when deprecating Pydantic v1
                        "http://staging.localhost.tiangolo.com:8000",
                    ),
                    "description": "Staging but actually localhost still",
                },
                {
                    "url": IsOneOf(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/controller_test.go

    								{
    									Path: "/test",
    									Backend: net.IngressBackend{
    										Service: &net.IngressServiceBackend{
    											Name: "foo",
    											Port: net.ServiceBackendPort{
    												Number: 8000,
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    				{
    					Host: "my2.host.com",
    					IngressRuleValue: net.IngressRuleValue{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 18:34:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. tests/integration/security/remote_jwks/testdata/requestauthn-with-se.yaml.tmpl

      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "http://example.com:8000/jwks"
        outputPayloadToHeader: "x-test-payload"
        forwardOriginalToken: true
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: jwt-server-se
    spec:
      hosts:
      - example.com
      location: MESH_INTERNAL
      ports:
      - number: 8000
        name: http
        protocol: HTTP
      resolution: DNS
      endpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 628 bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/testdata/routes/k8s-gateway-http-route-path-prefix/configdump.json

            ],
            "routes": [
             {
              "match": {
               "case_sensitive": true,
               "path_separated_prefix": "/get"
              },
              "route": {
               "cluster": "outbound|8000||httpbin.default.svc.cluster.local",
               "timeout": "0s",
               "retry_policy": {
                "retry_on": "connect-failure,refused-stream,unavailable,cancelled,retriable-status-codes",
                "num_retries": 2,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. samples/extauthz/README.md

        ```console
        $ kubectl exec -it $(kubectl get pod -l app=sleep -o jsonpath={.items..metadata.name}) -c sleep -- curl -v ext-authz:8000 -H "x-ext-authz: allow"
           *   Trying 10.97.88.183:8000...
           * Connected to ext-authz-server (10.97.88.183) port 8000 (#0)
           > GET / HTTP/1.1
           > Host: ext-authz-server:8000
           > User-Agent: curl/7.73.0-DEV
           > Accept: */*
           > x-ext-authz: allow
           >
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 13:52:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/conversion_test.go

    											Port: knetworking.ServiceBackendPort{Number: 8000},
    										},
    									},
    								},
    								{
    									Path:     "/test/foo",
    									PathType: &prefix,
    									Backend: knetworking.IngressBackend{
    										Service: &knetworking.IngressServiceBackend{
    											Name: "foo",
    											Port: knetworking.ServiceBackendPort{Number: 8000},
    										},
    									},
    								},
    							},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/testdata/routes/istio-gateway-http-route-prefix/configdump.json

            ],
            "routes": [
             {
              "match": {
               "prefix": "/get",
               "case_sensitive": true
              },
              "route": {
               "cluster": "outbound|8000||httpbin.default.svc.cluster.local",
               "timeout": "0s",
               "retry_policy": {
                "retry_on": "connect-failure,refused-stream,unavailable,cancelled,retriable-status-codes",
                "num_retries": 2,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/maven/bin/mvnDebug

    #   MAVEN_DEBUG_ADDRESS (Optional) Set the debug address. Default value is localhost:8000
    # -----------------------------------------------------------------------------
    
    MAVEN_DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=${MAVEN_DEBUG_ADDRESS:-localhost:8000}"
    
    echo Preparing to execute Maven in debug mode
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jul 25 20:33:33 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  9. samples/jwt-server/jwt-server.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: jwt-server
      labels:
        app: jwt-server
    spec:
      ports:
      - name: http
        port: 8000
        targetPort: 8000
      - name: https
        port: 8443
        targetPort: 8443
      selector:
        app: jwt-server
    ---
    apiVersion: v1
    kind: Secret
    metadata:
      name: jwt-cert-key-secret
    # command to generate certificate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/debugging.md

    ```
    
    </div>
    
    then the internal variable `__name__` in your file, created automatically by Python, will have as value the string `"__main__"`.
    
    So, the section:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    will run.
    
    ---
    
    This won't happen if you import that module (file).
    
    So, if you have another file `importer.py` with:
    
    ```Python
    from myapp import app
    
    # Some more code
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jun 22 17:04:16 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top