Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 159 for tipten (0.09 seconds)

  1. docs/es/docs/alternatives.md

    Por lo tanto, la validación de datos, la serialización y la documentación, tienen que hacerse en código, no automáticamente. O tienen que implementarse como un framework sobre Falcon, como Hug. Esta misma distinción ocurre en otros frameworks que se inspiran en el diseño de Falcon, de tener un objeto request y un objeto response como parámetros.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 24.5K bytes
    - Click Count (0)
  2. cmd/data-scanner-metric.go

    			globalTrace.Publish(scannerTrace(s, startTime, duration, strings.Join(paths, " "), custom))
    		}
    	}
    }
    
    // time n scanner actions.
    // Use for s < scannerMetricLastRealtime
    func (p *scannerMetrics) timeN(s scannerMetric) func(n int) {
    	startTime := time.Now()
    	return func(n int) {
    		duration := time.Since(startTime)
    
    		atomic.AddUint64(&p.operations[s], uint64(n))
    		if s < scannerMetricLastRealtime {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Oct 01 06:06:01 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  3. docs/es/docs/advanced/generate-clients.md

    Ahora, si generas el cliente de nuevo, verás que tiene los nombres de métodos mejorados:
    
    <img src="/img/tutorial/generate-clients/image07.png">
    
    Como ves, los nombres de métodos ahora tienen el tag y luego el nombre de la función, ahora no incluyen información del path de la URL y la operación HTTP.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  4. docs/de/docs/advanced/security/oauth2-scopes.md

    Diese werden für jede *Pfadoperation* unabhängig überprüft.
    
    ## Es testen { #check-it }
    
    Wenn Sie die API-Dokumentation öffnen, können Sie sich authentisieren und angeben, welche Scopes Sie autorisieren möchten.
    
    <img src="/img/tutorial/security/image11.png">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 15.7K bytes
    - Click Count (0)
  5. cmd/sftp-server.go

    		SSHConfig:            sshConfig,
    		HandleSFTPSession:    handleSFTPSession,
    	})
    	if err != nil {
    		logger.Fatal(err, "Unable to start SFTP Server")
    	}
    
    	err = sftpServer.Listen()
    	if err != nil {
    		logger.Fatal(err, "SFTP Server had an unrecoverable error while accepting connections")
    	}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 16.5K bytes
    - Click Count (0)
  6. docs/es/docs/advanced/settings.md

    ///
    
    ## Tipos y validación { #types-and-validation }
    
    Estas variables de entorno solo pueden manejar strings de texto, ya que son externas a Python y tienen que ser compatibles con otros programas y el resto del sistema (e incluso con diferentes sistemas operativos, como Linux, Windows, macOS).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  7. internal/grid/muxclient.go

    		ticker := time.NewTicker(m.clientPingInterval)
    		defer ticker.Stop()
    		pingTimer = ticker.C
    		atomic.StoreInt64(&m.LastPong, time.Now().UnixNano())
    	}
    
    	// Listen for client messages.
    reqLoop:
    	for !errState {
    		select {
    		case <-m.ctx.Done():
    			if debugPrint {
    				fmt.Println("Client sending disconnect to mux", m.MuxID)
    			}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  8. docs/en/data/translation_reviewers.yml

      count: 2
      avatarUrl: https://avatars.githubusercontent.com/u/36267498?v=4
      url: https://github.com/eghbalpoorMH
    Tiazen:
      login: Tiazen
      count: 2
      avatarUrl: https://avatars.githubusercontent.com/u/16170159?u=0ce5e32f76e3f10733c8f25d97db9e31b753838c&v=4
      url: https://github.com/Tiazen
    jfunez:
      login: jfunez
      count: 2
      avatarUrl: https://avatars.githubusercontent.com/u/805749?v=4
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 07:31:54 GMT 2026
    - 66K bytes
    - Click Count (0)
  9. docs/es/docs/tutorial/first-steps.md

    #### Esquema de Datos { #data-schema }
    
    El término "esquema" también podría referirse a la forma de algunos datos, como el contenido JSON.
    
    En ese caso, significaría los atributos del JSON, los tipos de datos que tienen, etc.
    
    #### OpenAPI y JSON Schema { #openapi-and-json-schema }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  10. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    you see, Alice had learnt several things of this sort in her
    lessons in the schoolroom, and though this was not a VERY good
    opportunity for showing off her knowledge, as there was no one to
    listen to her, still it was good practice to say it over) `--yes,
    that's about the right distance--but then I wonder what Latitude
    or Longitude I've got to?'  (Alice had no idea what Latitude was,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Click Count (0)
Back to Top