Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 62 for Prompt (0.04 seconds)

  1. docs/es/docs/advanced/security/http-basic-auth.md

    Si no lo recibe, devuelve un error HTTP 401 "Unauthorized".
    
    Y devuelve un header `WWW-Authenticate` con un valor de `Basic`, y un parámetro `realm` opcional.
    
    Eso le dice al navegador que muestre el prompt integrado para un nombre de usuario y contraseña.
    
    Luego, cuando escribes ese nombre de usuario y contraseña, el navegador los envía automáticamente en el header.
    
    ## Simple HTTP Basic Auth { #simple-http-basic-auth }
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 16 16:33:45 GMT 2025
    - 5.4K bytes
    - Click Count (0)
  2. architecture/standards/0005-introduce-core-ui-architecture-module.md

    2024-02-07
    
    ## Context
    
    The Gradle core platform provides many services to the Gradle platforms and builds logic. One such group of services allows logic to interact with the build user, to provide diagnostics, progress information, prompt for questions, and so on. Currently, these services are part of the core platform runtime architecture module.
    
    A downside of this structure is that it is difficult to do focused work on the Gradle UI.
    
    ## Decision
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Jan 07 08:43:32 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  3. .teamcity/src/main/kotlin/util/UpdateWrapper.kt

        requirements {
            requiresOs(Os.LINUX)
        }
    
        params {
            text(
                "wrapperVersion",
                "should-be-overridden",
                display = ParameterDisplay.PROMPT,
                allowEmpty = false,
                description =
                    "The version of Gradle to update to. " +
                        "Can be a specific version or one of 'latest', 'release-candidate', 'release-milestone'",
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Jul 24 03:08:48 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  4. docs/pt/docs/advanced/security/http-basic-auth.md

    Caso ela não receba, ela retorna um erro HTTP 401 "Unauthorized".
    
    E retorna um cabeçalho `WWW-Authenticate` com o valor `Basic`, e um parâmetro opcional `realm`.
    
    Isso sinaliza ao navegador para mostrar o prompt integrado para um usuário e senha.
    
    Então, quando você digitar o usuário e senha, o navegador os envia automaticamente no cabeçalho.
    
    ## HTTP Basic Auth Simples { #simple-http-basic-auth }
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Nov 12 16:23:57 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  5. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

                    description = "The published distribution version looks like '8.13-branch-%branch.qualifier%-20241217145847+0000'.",
                    display = ParameterDisplay.PROMPT,
                    allowEmpty = false,
                )
            }
        }
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Mar 20 06:13:56 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  6. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                params {
                    text(
                        "reverse.dep.*.performance.baselines",
                        type.defaultBaselines,
                        display = ParameterDisplay.PROMPT,
                        allowEmpty = true,
                        description = "The baselines you want to run performance tests against. Empty means default baseline.",
                    )
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Dec 22 07:15:16 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  7. cmd/fmt-gen.go

    FLAGS:
      {{range .VisibleFlags}}{{.}}
      {{end}}{{end}}
    EXAMPLES:
      1. Generate format.json.zip containing format.json files for all drives in a distributed MinIO server pool of 32 nodes with 32 drives each.
         {{.Prompt}} {{.HelpName}} http://node{1...32}.example.com/mnt/export{1...32}
    
    `,
    }
    
    func fmtGenMain(ctxt *cli.Context) {
    	deploymentID := ctxt.String("deployment-id")
    	err := buildServerCtxt(ctxt, &globalServerCtxt)
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 3.7K bytes
    - Click Count (0)
  8. src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java

         * @param url the URL that requires authentication
         * @param sae the authentication exception that was thrown
         * @return credentials returned by prompt or null if none available
         */
    
        public static NtlmPasswordAuthentication requestNtlmPasswordAuthentication(final String url, final SmbAuthException sae) {
            if (auth == null) {
                return null;
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 3.7K bytes
    - Click Count (0)
  9. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

                params {
                    text(
                        "performance.baselines",
                        type.defaultBaselines,
                        display = ParameterDisplay.PROMPT,
                        allowEmpty = true,
                        description = "The baselines you want to run performance tests against. Empty means default baseline.",
                    )
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Dec 22 07:15:16 GMT 2025
    - 6K bytes
    - Click Count (0)
  10. docs/debugging/inspect/main.go

    			}
    
    			if b, err := os.ReadFile(fn); err == nil {
    				privateKeys = append(privateKeys, b)
    				fmt.Println("Added private key from", fn)
    			} else {
    				break
    			}
    			n++
    		}
    
    		// Prompt for decryption key if no --key or --private-key are provided
    		if len(privateKeys) == 0 && !*stdin {
    			reader := bufio.NewReader(os.Stdin)
    			fmt.Print("Enter Decryption Key: ")
    
    			text, _ := reader.ReadString('\n')
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Mon Feb 17 17:09:42 GMT 2025
    - 5.7K bytes
    - Click Count (0)
Back to Top