Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for tennis (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/interface.go

    	NewForLabelValuesSafe(initialNumerator, initialDenominator float64, labelValues []string) RatioedGauge
    }
    
    //////////////////////////////// Pairs ////////////////////////////////
    //
    // API Priority and Fairness tends to use RatioedGaugeVec members in pairs,
    // one for requests waiting in a queue and one for requests being executed.
    // The following definitions are a convenience layer that adds support for that
    // particular pattern of usage.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 13 03:37:15 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. docs/tr/docs/tutorial/request-forms.md

    HTML formlarının (`<form></form>`) verileri sunucuya gönderirken JSON'dan farklı özel bir kodlama kullanır.
    
    **FastAPI** bu verilerin JSON yerine doğru şekilde okunmasını sağlayacaktır.
    
    !!! note "Teknik Detaylar"
        Form verileri normalde `application/x-www-form-urlencoded` medya tipiyle kodlanır.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed May 08 19:10:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. docs/fr/docs/benchmarks.md

    Mais en prêtant attention aux tests de performance et aux comparaisons, il faut tenir compte de ce qu'il suit.
    
    ## Tests de performance et rapidité
    
    Lorsque vous vérifiez les tests de performance, il est commun de voir plusieurs outils de différents types comparés comme équivalents.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:49:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. docs/tr/docs/fastapi-people.md

    {% endif %}
    {% endfor %}
    
    </div>
    
    {% endfor %}
    {% endif %}
    
    ## Veriler - Teknik detaylar
    
    Bu sayfanın temel amacı, topluluğun başkalarına yardım etme çabasını vurgulamaktır.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. manifests/charts/UPDATING-CHARTS.md

    # Updating charts and values.yaml
    
    ## Acceptable Pull Requests
    
    Helm charts `values.yaml` represent a complex user facing API that tends to grow uncontrollably over time
    due to design choices in Helm.
    The underlying Kubernetes resources we configure have 1000s of fields; given enough users and bespoke use cases,
    eventually someone will want to customize every one of those fields.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/errors/wrap_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package errors_test
    
    import (
    	"errors"
    	"fmt"
    	"io/fs"
    	"os"
    	"reflect"
    	"testing"
    )
    
    func TestIs(t *testing.T) {
    	err1 := errors.New("1")
    	erra := wrapped{"wrap 2", err1}
    	errb := wrapped{"wrap 3", erra}
    
    	err3 := errors.New("3")
    
    	poser := &poser{"either 1 or 3", func(err error) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:49 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. docs/es/docs/python-types.md

    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    ### Edítalo
    
    Es un programa muy simple.
    
    Ahora, imagina que lo estás escribiendo desde ceros.
    
    En algún punto habrías comenzado con la definición de la función, tenías los parámetros listos...
    
    Pero, luego tienes que llamar "ese método que convierte la primera letra en una mayúscula".
    
    Era `upper`? O era `uppercase`? `first_uppercase`? `capitalize`?
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/background-tasks.md

    This includes, for example:
    
    * Email notifications sent after performing an action:
        * As connecting to an email server and sending an email tends to be "slow" (several seconds), you can return the response right away and send the email notification in the background.
    * Processing data:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. cmd/preferredimports/preferredimports.go

    	if err != nil {
    		return err
    	}
    	if info.IsDir() {
    		// Ignore hidden directories (.git, .cache, etc)
    		if len(path) > 1 && path[0] == '.' ||
    			// OS-specific vendor code tends to be imported by OS-specific
    			// packages. We recursively typecheck imported vendored packages for
    			// each OS, but don't typecheck everything for every OS.
    			path == "vendor" ||
    			path == "_output" ||
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/numberlines.go

    	// If the value is the last one in the block, too bad, it will have to do
    	// (this assumes that the value ordering vaguely corresponds to the source
    	// program execution order, which tends to be true directly after ssa is
    	// first built).
    	if i >= len(b.Values)-1 {
    		return i
    	}
    	// Skip the likely-ephemeral/fragile opcodes expected to vanish in a rewrite.
    	if !isPoorStatementOp(v.Op) {
    		return i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top