Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 590 for cheese (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/caching/internal/packaging/BuildCacheEntryPackingIntegrationTest.groovy

        private static final NON_ASCII_NAME = [
            "ascii-only": "ascii",
            "space": " ",
            "zwnj": "\u200c",
            "chinese": "敏捷的棕色狐狸跳过了懒狗",
            "cyrillic": "здравствуйте",
            "hungarian": "Árvíztűrő tükörfúrógép",
        ].values().join("-")
    
        private static final DEFAULT_ENCODINGS = [
            "UTF-8",
            "ISO-8859-1",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/rename_entrypoint_to_main.cc

          auto entrypoint = entrypoints.begin()->second;
          Builder builder(entrypoint);
          entrypoint.setName(builder.getStringAttr("main"));
          return;
        }
    
        // In case we have more than 1 entry points, choose the one with
        // 'tf.entry_function' attribute set.
        llvm::SmallVector<func::FuncOp, 4> candidate_funcs;
        for (auto& entrypoint : entrypoints) {
          if (entrypoint.second->hasAttr("tf.entry_function")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. pkg/registry/core/service/allocator/bitmap.go

    // by counting the set bits in r.allocated.
    //
    // TODO: use RLE and compact the allocator to minimize space.
    type AllocationBitmap struct {
    	// strategy carries the details of how to choose the next available item out of the range
    	strategy bitAllocator
    	// max is the maximum size of the usable items in the range
    	max int
    	// rangeSpec is the range specifier, matching RangeAllocation.Range
    	rangeSpec string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core-api/src/main/java/org/gradle/api/attributes/DisambiguationRuleChain.java

         * method to tell that a candidate is the best one.</p>
         *
         * <p>It is not mandatory for a rule to choose, and it is not an error to select multiple candidates.</p>
         *
         * @param rule the rule to add
         * @since 4.0
         */
        void add(Class<? extends AttributeDisambiguationRule<T>> rule);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_ambiguous_pkg.txt

    # Both example.net/ambiguous v0.1.0 and example.net/ambiguous/pkg v0.1.0 exist.
    # 'go mod tidy' would arbitrarily choose the one with the longer path,
    # but 'go mod tidy' also arbitrarily chooses the latest version.
    
    cp go.mod go.mod.orig
    
    
    # From a clean slate, 'go get' currently does the same thing as 'go mod tidy':
    # it resolves the package from the module with the longest matching prefix.
    
    go get example.net/ambiguous/nested/pkg@v0.1.0
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  10. 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)
Back to top