Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 130 for fairy (0.08 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_controller.go

    				if cast, ok := tombstone.Obj.(*corev1.ConfigMap); ok {
    					return cast.Name == c.configmapName && cast.Namespace == c.configmapNamespace
    				}
    			}
    			return true // always return true just in case.  The checks are fairly cheap
    		},
    		Handler: cache.ResourceEventHandlerFuncs{
    			// we have a filter, so any time we're called, we may as well queue. We only ever check one configmap
    			// so we don't have to be choosy about our key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/internal/buildid/buildid.go

    // stores the build ID as non-instruction bytes at the very beginning
    // of the text segment, which should appear near the beginning
    // of the file. This is clumsy but fairly portable. Custom locations
    // can be added for other binary types as needed, like we did for ELF.
    func readBinary(name string, f *os.File) (id string, err error) {
    	// Read the first 32 kB of the binary file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
  3. docs/fr/docs/tutorial/first-steps.md

    Le schéma inclut les chemins de votre API, les paramètres potentiels de chaque chemin, etc.
    
    #### "Schéma" de données
    
    Le terme "schéma" peut aussi faire référence à la forme de la donnée, comme un contenu JSON.
    
    Dans ce cas, cela signifierait les attributs JSON, ainsi que les types de ces attributs, etc.
    
    #### OpenAPI et JSON Schema
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. docs/fr/docs/tutorial/query-params-str-validations.md

    Si vous vous sentez perdu avec le concept d'**expression régulière**, pas d'inquiétudes. Il s'agit d'une notion difficile pour beaucoup, et l'on peut déjà réussir à faire beaucoup sans jamais avoir à les manipuler.
    
    Mais si vous décidez d'apprendre à les utiliser, sachez qu'ensuite vous pouvez les utiliser directement dans **FastAPI**.
    
    ## Valeurs par défaut
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:53:21 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. docs/LICENSE

         fulfilling obligations under Article 11 of the WIPO Copyright
         Treaty adopted on December 20, 1996, and/or similar international
         agreements.
    
      e. Exceptions and Limitations means fair use, fair dealing, and/or
         any other exception or limitation to Copyright and Similar Rights
         that applies to Your use of the Licensed Material.
    
      f. Licensed Material means the artistic or literary work, database,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 10 16:50:06 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    	seatDemandIntegrator metrics.Gauge
    	theSet               *queueSet
    	qCfg                 fq.QueuingConfig
    	dealer               *shufflesharding.Dealer
    }
    
    // queueSet implements the Fair Queuing for Server Requests technique
    // described in this package's doc, and a pointer to one implements
    // the QueueSet interface.  The fields listed before the lock
    // should not be changed; the fields listed after the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/inlheur/scoring.go

    		st := "---"
    		expinl := false
    		switch {
    		case hairyval <= bud && score <= bud:
    			// "Normal" inlined case: hairy val sufficiently low that
    			// it would have been inlined anyway without heuristics.
    			expinl = true
    		case hairyval > bud && score > bud:
    			// "Normal" not inlined case: hairy val sufficiently high
    			// and scoring didn't lower it.
    		case hairyval > bud && score <= bud:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/watch/mux.go

    	watchQueueLength int
    	// If one of the watch channels is full, don't wait for it to become empty.
    	// Instead just deliver it to the watchers that do have space in their
    	// channels and move on to the next event.
    	// It's more fair to do this on a per-watcher basis than to do it on the
    	// "incoming" channel, which would allow one slow watcher to prevent all
    	// other watchers from getting new events.
    	fullChannelBehavior FullChannelBehavior
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 16 15:26:36 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  9. docs/fr/docs/features.md

    ### Court
    
    Des **valeurs par défaut** sont définies pour tout, des configurations optionnelles sont présentent partout. Tous ces paramètres peuvent être ajustés afin de faire ce que vous voulez et définir l'API dont vous avez besoin.
    
    Mais, **tout fonctionne** par défaut.
    
    ### Validation
    
    * Validation pour la plupart (ou tous?) les **types de données** Python incluant:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/runtime/runtime.go

    // from nanotime that we can use (some platforms have a really coarse system time granularity).
    // We require some amount of time to pass to ensure that the conversion rate is fairly accurate
    // in aggregate. But because we compute this rate lazily, there's a pretty good chance a decent
    // amount of time has passed by the time we get here.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top