Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 130 for fairy (0.06 sec)

  1. docs/fr/docs/python-types.md

    Vous verrez bien plus d'exemples de son utilisation dans [Tutoriel - Guide utilisateur](tutorial/index.md){.internal-link target=_blank}.
    
    ## Les annotations de type dans **FastAPI**
    
    **FastAPI** utilise ces annotations pour faire différentes choses.
    
    Avec **FastAPI**, vous déclarez des paramètres grâce aux annotations de types et vous obtenez :
    
    * **du support de l'éditeur**
    * **de la vérification de types**
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. pilot/pkg/features/pilot.go

    			"cannot be applied to the ExternalName service. "+
    			"If disabled, ExternalName behaves in fairly unexpected manner. Port matters, while it does not in Kubernetes. If it is a TCP port, "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    The more you can migrate in one go the better, but risk comes with the number of custom steps within the Ant build that will be affected by the changes.
    
    For example, if the Ant build follows a fairly standard approach for compilation, static resources, packaging and unit tests, then it is probably worth migrating all of those together.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/codehost.go

    	// Include those too, so that if any new one appears, we'll invalidate the cache entry.
    	// This will lead to spurious invalidation of version list results,
    	// but tags of this form being created should be fairly rare
    	// (and invalidate pseudo-version results anyway).
    	c := semver.Canonical(tag)
    	return c != "" && strings.HasPrefix(tag, c) && !module.IsPseudoVersion(tag)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

        return countMap.size();
      }
    
      @Override
      public boolean isEmpty() {
        return countMap.isEmpty();
      }
    
      @Override
      Iterator<Entry<E>> entryIterator() {
        // AbstractIterator makes this fairly clean, but it doesn't support remove(). To support
        // remove(), we create an AbstractIterator, and then use ForwardingIterator to delegate to it.
        Iterator<Entry<E>> readOnlyIterator =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    				if cast, ok := tombstone.Obj.(*corev1.ConfigMap); ok {
    					return cast.Namespace == configMapNamespace && cast.Name == configMapName
    				}
    			}
    			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
    - 18.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    	)
    	apiserverFairFracs = compbasemetrics.NewGauge(
    		&compbasemetrics.GaugeOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "seat_fair_frac",
    			Help:           "Fair fraction of server's concurrency to allocate to each priority level that can use it",
    			StabilityLevel: compbasemetrics.ALPHA,
    		})
    	apiserverCurrentConcurrencyLimits = compbasemetrics.NewGaugeVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  8. src/time/zoneinfo_read.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Parse "zoneinfo" time zone file.
    // This is a fairly standard file format used on OS X, Linux, BSD, Sun, and others.
    // See tzfile(5), https://en.wikipedia.org/wiki/Zoneinfo,
    // and ftp://munnari.oz.au/pub/oldtz/
    
    package time
    
    import (
    	"errors"
    	"internal/bytealg"
    	"runtime"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_device.cc

                                                /*num_threads=*/1));
    
      // We have multiple device to device streams to allow for some concurrency
      // between transfers. The particular value of '4' is chosen fairly
      // arbitrarily. It may be necessary to make this tunable via
      // XlaDevice::Options.
      static constexpr int kNumDeviceToDeviceStreams = 4;
      device_to_device_streams_.resize(kNumDeviceToDeviceStreams);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/schedule.go

    		if c := len(x.Args) - len(y.Args); c != 0 {
    			return c > 0 // smaller args come later
    		}
    	}
    	if c := x.Uses - y.Uses; c != 0 {
    		return c > 0 // smaller uses come later
    	}
    	// These comparisons are fairly arbitrary.
    	// The goal here is stability in the face
    	// of unrelated changes elsewhere in the compiler.
    	if c := x.AuxInt - y.AuxInt; c != 0 {
    		return c < 0
    	}
    	if cmp := x.Type.Compare(y.Type); cmp != types.CMPeq {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top