Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 109 of 109 for enter_0 (0.22 sec)

  1. src/internal/godebug/godebug.go

    // name of a Setting for which Value has been called
    // at least once, or if the name has ever appeared in
    // a name=value pair in the $GODEBUG environment variable.
    // Once entered into the map, the name is never removed.
    var cache sync.Map // name string -> value *atomic.Pointer[string]
    
    var empty value
    
    // Value returns the current value for the GODEBUG setting s.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    == Step 1. Viewing available Tasks
    A _task_ is a basic unit of work that can be done by Gradle as part of the build.
    
    In the `tutorial` directory, enter the command below to list all the available tasks in the project:
    [source,text]
    ----
    $ ./gradlew tasks
    ----
    
    The list includes tasks contributed by the `application` plugin and the plugin it applies:
    
    [source,text]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/compress/bzip2/huffman.go

    		// mechanism.
    		if level == 31 {
    			// Since len(codes) >= 2 the only way that the values
    			// can match at all 32 bits is if they are equal, which
    			// is invalid. This ensures that we never enter
    			// infinite recursion.
    			return 0, StructuralError("equal symbols in Huffman tree")
    		}
    
    		if len(left) == 0 {
    			return buildHuffmanNode(t, right, level+1)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/security/first-steps.md

    Oauth2๏ธโƒฃ ๐Ÿ”ง ๐Ÿ‘ˆ ๐Ÿ‘ฉโ€๐Ÿ’ป โš–๏ธ ๐Ÿ› ๏ธ ๐Ÿ’ช ๐Ÿ”ฌ ๐Ÿ’ฝ ๐Ÿ‘ˆ ๐Ÿ”“ ๐Ÿ‘ฉโ€๐Ÿ’ป.
    
    โœ‹๏ธ ๐Ÿ‘‰ ๐Ÿ’ผ, ๐ŸŽ **FastAPI** ๐Ÿˆธ ๐Ÿ”œ ๐Ÿต ๐Ÿ› ๏ธ & ๐Ÿค.
    
    , โžก๏ธ ๐Ÿ“„ โšซ๏ธ โšช๏ธโžก๏ธ ๐Ÿ‘ˆ ๐Ÿ“‰ โ˜ ๐ŸŽ‘:
    
    * ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ†Ž `username` & `password` ๐Ÿ•ธ, & ๐ŸŽฏ `Enter`.
    * ๐Ÿ•ธ (๐Ÿƒโ€โ™‚ ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ–ฅ) ๐Ÿ“จ ๐Ÿ‘ˆ `username` & `password` ๐ŸŽฏ ๐Ÿ“› ๐Ÿ‘† ๐Ÿ› ๏ธ (๐Ÿ“ฃ โฎ๏ธ `tokenUrl="token"`).
    * ๐Ÿ› ๏ธ โœ… ๐Ÿ‘ˆ `username` & `password`, & ๐Ÿ“จ โฎ๏ธ "๐Ÿค" (๐Ÿ‘ฅ ๐Ÿšซ ๐Ÿ› ๏ธ ๐Ÿ™† ๐Ÿ‘‰).
        *  "๐Ÿค" ๐ŸŽป โฎ๏ธ ๐ŸŽš ๐Ÿ‘ˆ ๐Ÿ‘ฅ ๐Ÿ’ช โš™๏ธ โช โœ” ๐Ÿ‘‰ ๐Ÿ‘ฉโ€๐Ÿ’ป.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/runtime/traceevent.go

    	traceEvGoBlock             // goroutine blocks [timestamp, reason, stack ID]
    	traceEvGoUnblock           // goroutine is unblocked [timestamp, goroutine ID, goroutine seq, stack ID]
    	traceEvGoSyscallBegin      // syscall enter [timestamp, P seq, stack ID]
    	traceEvGoSyscallEnd        // syscall exit [timestamp]
    	traceEvGoSyscallEndBlocked // syscall exit and it blocked at some point [timestamp]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. docs/tls/README.md

    O = MyOrg
    OU = MyOU
    CN = MyServerName
    
    [v3_req]
    subjectAltName = @alt_names
    
    [alt_names]
    IP.1 = 127.0.0.1
    DNS.1 = localhost
    ```
    
    Run `openssl` by specifying the configuration file and enter a passphrase if prompted:
    
    ```sh
    openssl req -new -x509 -nodes -days 730 -keyout private.key -out public.crt -config openssl.conf
    ```
    
    ### 3.3 Use GnuTLS (for Windows) to Generate a Certificate
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  7. samples/ambient-argo/README.md

     * A connection to your repository (for private repos)
    
    To deploy Istio, supporting software, and the bookinfo sample application, copy this folder to the root of your repo and run:
    
    ```bash
    read -p 'Please enter the URL to your repo:'
    OLD_REPO='{repo-placeholder}'
    find . \( -type d -name .git -prune \) -o -type f -name '*.yaml' -print0 | xargs -0 sed -i s,$OLD_REPO,$NEW_REPO,g
    argocd create application -f meta-application.json
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/security/first-steps.md

    Mas nesse caso, a mesma aplicaรงรฃo **FastAPI** irรก lidar com a API e a autenticaรงรฃo.
    
    Entรฃo, vamos rever de um ponto de vista simplificado:
    
    * O usuรกrio digita o `username` e a `senha` no frontend e aperta `Enter`.
    * O frontend (rodando no browser do usuรกrio) manda o `username` e a `senha` para uma URL especรญfica na sua API (declarada com `tokenUrl="token"`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/security/first-steps.md

    But in this case, the same **FastAPI** application will handle the API and the authentication.
    
    So, let's review it from that simplified point of view:
    
    * The user types the `username` and `password` in the frontend, and hits `Enter`.
    * The frontend (running in the user's browser) sends that `username` and `password` to a specific URL in our API (declared with `tokenUrl="token"`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top