Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,637 for cheese (0.23 sec)

  1. 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)
  2. 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)
  3. tensorflow/cc/gradients/image_grad_test.cc

      // Note that Y_T is always float for this op. We choose
      // double for the jacobian to capture the higher precision
      // between X_T and Y_T.
      TestResize<double, float, double>(RESIZE_BILINEAR);
    }
    
    TEST_F(ImageGradTest, TestBicubic) {
      TestResizedShape(RESIZE_BICUBIC);
      TestResize<float, float, float>(RESIZE_BICUBIC);
      // Note that Y_T is always float for this op. We choose
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 04:08:05 UTC 2019
    - 12.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. operator/cmd/mesh/root.go

    	"istio.io/istio/pkg/url"
    	"istio.io/istio/pkg/version"
    )
    
    var (
    	baseVersion    = binversion.OperatorVersionString
    	setFlagHelpStr = `Override an IstioOperator value, e.g. to choose a profile
    (--set profile=demo), enable or disable components (--set components.cni.enabled=true), or override Istio
    settings (--set meshConfig.enableTracing=true). See documentation for more info:` + url.IstioOperatorSpec
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

    import java.util.List;
    import java.util.Set;
    import java.util.function.IntFunction;
    
    /**
     * This is the heart of the attribute matching algorithm and is used whenever there are multiple candidates to choose from.
     * <p>
     * <ol>
     * <li>
     * For each candidate, check whether its attribute values are compatible (according to the {@link AttributeSelectionSchema}) with the values that were requested.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Predicate.java

      /**
       * Indicates whether another object is equal to this predicate.
       *
       * <p>Most implementations will have no reason to override the behavior of {@link Object#equals}.
       * However, an implementation may also choose to return {@code true} whenever {@code object} is a
       * {@link Predicate} that it considers <i>interchangeable</i> with this one. "Interchangeable"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/hash/MessageDigestHashFunctionTest.java

      // From "How Provider Implementations Are Requested and Supplied" from
      // http://docs.oracle.com/javase/6/docs/technotes/guides/security/crypto/CryptoSpec.html
      //  - Some providers may choose to also include alias names.
      //  - For example, the "SHA-1" algorithm might be referred to as "SHA1".
      //  - The algorithm name is not case-sensitive.
      private static final ImmutableMap<String, HashFunction> ALGORITHMS =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top