Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,224 for cheese (0.11 sec)

  1. pkg/kubelet/cm/topologymanager/numa_info.go

    	if m1.IsNarrowerThan(m2) {
    		return m1
    	}
    	return m2
    }
    
    func (n *NUMAInfo) Closest(m1 bitmask.BitMask, m2 bitmask.BitMask) bitmask.BitMask {
    	// If the length of both bitmasks aren't the same, choose the one that is narrowest.
    	if m1.Count() != m2.Count() {
    		return n.Narrowest(m1, m2)
    	}
    
    	m1Distance := n.NUMADistances.CalculateAverageFor(m1)
    	m2Distance := n.NUMADistances.CalculateAverageFor(m2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. docs/pl/docs/tutorial/index.md

        ```
    
        Zainstaluj też `uvicorn`, który będzie służył jako serwer:
    
        ```
        pip install "uvicorn[standard]"
        ```
    
        Tak samo możesz zainstalować wszystkie dodatkowe biblioteki, których chcesz użyć.
    
    ## Zaawansowany poradnik
    
    Jest też **Zaawansowany poradnik**, który możesz przeczytać po lekturze tego **Samouczka**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/BigDecimalMath.java

      /**
       * Returns {@code x}, rounded to a {@code double} with the specified rounding mode. If {@code x}
       * is precisely representable as a {@code double}, its {@code double} value will be returned;
       * otherwise, the rounding will choose between the two nearest representable values with {@code
       * mode}.
       *
       * <p>For the case of {@link RoundingMode#HALF_DOWN}, {@code HALF_UP}, and {@code HALF_EVEN},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/admission_test.go

    	}{
    		{
    			name:             "matches",
    			all:              []string{"one", "two"},
    			enabled:          []string{"one", "two"},
    			expectedDisabled: []string{},
    		},
    		{
    			name:             "choose one",
    			all:              []string{"one", "two"},
    			enabled:          []string{"one"},
    			expectedDisabled: []string{"two"},
    		},
    	}
    
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 15 01:51:35 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  5. architecture/ambient/ztunnel.md

    For this purpose, we chose to use xDS transport protocol due to our expertise and existing infrastructure, and because the protocol is well suited to our needs.
    
    However, while we chose to use the xDS *transport protocol*, we chose to not use the xDS resource types, such as Clusters and Listeners.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolver.java

         * If a single version can satisfy all of the selectors, the result will reflect this.
         * If not, a minimal set of versions will be provided in the result, and conflict resolution will be required to choose.
         */
        private List<T> buildResolveResults(ModuleSelectors<? extends ResolvableSelectorState> selectors, VersionSelector allRejects) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 14:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  7. src/strconv/ftoaryu.go

    	e2 := exp
    	if b := bits.Len32(mant); b < 25 {
    		mant <<= uint(25 - b)
    		e2 += b - 25
    	}
    	// Choose an exponent such that rounded mant*(2^e2)*(10^q) has
    	// at least prec decimal digits, i.e
    	//     mant*(2^e2)*(10^q) >= 10^(prec-1)
    	// Because mant >= 2^24, it is enough to choose:
    	//     2^(e2+24) >= 10^(-q+prec-1)
    	// or q = -mulByLog2Log10(e2+24) + prec - 1
    	q := -mulByLog2Log10(e2+24) + prec - 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  8. docs/pt/docs/help-fastapi.md

    Assim podendo tentar ajudar a resolver essas questões.
    
    ## Faça perguntas
    
    É possível <a href="https://github.com/tiangolo/fastapi/issues/new/choose" class="external-link" target="_blank">criar uma nova pergunta</a> no repositório do GitHub, por exemplo:
    
    * Faça uma **pergunta** ou pergunte sobre um **problema**.
    * Sugira novos **recursos**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/extra-data-types.md

        * O Pydantic também permite representá-lo como uma "codificação ISO 8601 diferença de tempo", <a href="https://docs.pydantic.dev/latest/concepts/serialization/" class="external-link" target="_blank">cheque a documentação para mais informações</a>.
    * `frozenset`:
        * Em requisições e respostas, será tratado da mesma forma que um `set`:
            * Nas requisições, uma lista será lida, eliminando duplicadas e convertendo-a em um `set`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu_arm64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cpu
    
    import "runtime"
    
    // cacheLineSize is used to prevent false sharing of cache lines.
    // We choose 128 because Apple Silicon, a.k.a. M1, has 128-byte cache line size.
    // It doesn't cost much and is much more future-proof.
    const cacheLineSize = 128
    
    func initOptions() {
    	options = []option{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top