Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 328 for 8002 (0.03 sec)

  1. docs/sts/web-identity.py

    token_url = "http://localhost:8080/auth/realms/minio/protocol/openid-connect/token"
    
    # callback url specified when the application was defined
    callback_uri = "http://localhost:8000/oauth2/callback"
    
    # keycloak id and secret
    client_id = 'account'
    client_secret = 'daaa3008-80f0-40f7-80d7-e15167531ff0'
    
    sts_client = boto3.client(
        'sts',
        region_name='us-east-1',
        use_ssl=False,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 28 01:37:51 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/bin/mvnDebug.cmd

    @REM   MAVEN_SKIP_RC       (Optional) Flag to disable loading of mavenrc files.
    @REM   MAVEN_DEBUG_ADDRESS (Optional) Set the debug address. Default value is localhost:8000
    @REM -----------------------------------------------------------------------------
    
    @REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
    @echo off
    @REM set title of command window
    title %0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jul 25 20:33:33 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    /*
     *  Automated Interface (generates HTML Report Files).
     *
     *  Feb 2002      Initial implementation (AK)
     *
     *  13-Feb-2002   Single interface to automated_run_tests. (AK)
     *
     *  20-Jul-2004   New interface, doxygen comments. (JDS)
     */
    
    /** @file
     * Automated testing interface with xml output (user interface).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. test/fixedbugs/issue5841.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5841: 8g produces invalid CMPL $0, $0.
    // Similar to issue 5002, used to fail at link time.
    
    package main
    
    func main() {
    	var y int
    	if y%1 == 0 {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 331 bytes
    - Viewed (0)
  5. docs_src/debugging/tutorial001.py

    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def root():
        a = "a"
        b = "b" + a
        return {"hello world": b}
    
    
    if __name__ == "__main__":
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 223 bytes
    - Viewed (0)
  6. tests/integration/security/remote_jwks/testdata/requestauthn-no-se.yaml.tmpl

    kind: RequestAuthentication
    metadata:
      name: request-authn
    spec:
      selector:
        matchLabels:
          app: {{ .dst }}
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "http://example.com:8000/jwks"
        outputPayloadToHeader: "x-test-payload"
        forwardOriginalToken: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 330 bytes
    - Viewed (0)
  7. test/fixedbugs/bug409.out

    +1.000000e+000 +2.000000e+000 +3.000000e+000 +4.000000e+000...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 15:25:13 UTC 2012
    - 60 bytes
    - Viewed (0)
  8. docs/zh/docs/tutorial/debugging.md

    所以,下面这部分代码才会运行:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    ---
    
    如果你是导入这个模块(文件)就不会这样。
    
    因此,如果你的另一个文件 `importer.py` 像这样:
    
    ```Python
    from myapp import app
    
    # Some more code
    ```
    
    在这种情况下,`myapp.py` 内部的自动变量不会有值为 `"__main__"` 的变量 `__name__`。
    
    所以,下面这一行不会被执行:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 27 17:51:51 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  9. docs/em/docs/tutorial/debugging.md

    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    🔜 🏃.
    
    ---
    
    👉 🏆 🚫 🔨 🚥 👆 🗄 👈 🕹 (📁).
    
    , 🚥 👆 ✔️ ➕1️⃣ 📁 `importer.py` ⏮️:
    
    ```Python
    from myapp import app
    
    # Some more code
    ```
    
    👈 💼, 🏧 🔢 🔘 `myapp.py` 🔜 🚫 ✔️ 🔢 `__name__` ⏮️ 💲 `"__main__"`.
    
    , ⏸:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    🔜 🚫 🛠️.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. samples/httpbin/gateway-api/httpbin-gateway.yaml

    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: httpbin
    spec:
      parentRefs:
      - name: httpbin-gateway
      rules:
      - backendRefs:
        - name: httpbin
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 19:04:07 UTC 2023
    - 442 bytes
    - Viewed (0)
Back to top