Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 590 for cheese (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    [[reserved_alias_name]]
    == Use of a reserved alias name
    
    This error indicates that you chose an alias which is a reserved name.
    Typically this happens if you choose an alias which starts with `versions`, `bundles`, or `plugins` or contains `extensions`, `convention`, `class`, as it may clash with generated accessors.
    
    To fix this problem, you must choose a different alias.
    
    [[undefined_version_reference]]
    == Undefined version reference
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. src/hash/test_cases.txt

    It's well we cannot hear the screams/That we create in others' dreams.
    You remind me of a TV show, but that's all right: I watch it anyway.
    C is as portable as Stonehedge!!
    Even if I could be Shakespeare, I think I should still choose to be Faraday. - A. Huxley
    The fugacity of a constituent in a mixture of gases at a given temperature is proportional to its mole fraction.  Lewis-Randall Rule
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions_drq.cc

        registry.insert<TF::TensorFlowDialect>();
      }
    
      void runOnOperation() override;
    
     private:
      Option<OpSet> target_opset_{
          *this, "target-opset", llvm::cl::init(OpSet::TF),
          llvm::cl::desc("Choose target opset."),
          llvm::cl::values(
              clEnumValN(OpSet::TF, "TF",
                         "Uses TF ops that mimic quantization behavior"),
              clEnumValN(OpSet::XLA, "XLA", "Uses TF XLA ops"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_util.c

    	free(NULL) has a fast-path special case in TSAN, so it doesn't
    	trigger signal delivery.
    	free(malloc(0)) would work (triggering the interceptors in malloc), but
    	it also runs a bunch of user-supplied malloc hooks.
    
    	So we choose strncpy(_, _, 0): it requires an extra header,
    	but it's standard and should be very efficient.
    
    	GCC 7 has an unfortunate habit of optimizing out strncpy calls (see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 18:49:38 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.h

    namespace testing {
    // DO NOT USE IN PRODUCTION.
    //
    // Resets some internal state to let us write reliable unit tests.
    void ResetClusterSequenceNumber();
    
    // Return a list of operation that we choose not to put into the allowlist.
    absl::flat_hash_set<string> GetKnownXLAAllowlistOp();
    }  // namespace testing
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 10 22:46:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousArtifactVariantsFailureDescriber.java

            } else {
                formatter.node("The consumer was configured to find " + describer.describeAttributeSet(failure.getRequestedAttributes().asMap()) + ". However we cannot choose between the following variants of " + failure.getRequestedName());
            }
            formatter.startChildren();
            for (AssessedCandidate assessedCandidate : failure.getCandidates()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. plugin/pkg/admission/storage/storageclass/setdefault/admission_test.go

    			false,
    			"foo",
    		},
    		{
    			"two defaults with same creation time, choose the one with smaller name",
    			[]*storagev1.StorageClass{defaultClass1, defaultClass2, classWithFalseDefault, classWithNoDefault, classWithEmptyDefault},
    			claimWithNoClass,
    			false,
    			defaultClass1.Name,
    		},
    		{
    			"two defaults, choose the one with newer creation time",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 04:00:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  8. android/guava/pom.xml

              <!-- We add the link ourselves, both so that we can choose Java 9 over the version that -source suggests and so that we can solve the JSR305 problem described below. -->
              <detectJavaApiLink>false</detectJavaApiLink>
              <offlineLinks>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPackerTest.groovy

            then:
            targetOutputFile.text == "output"
    
            where:
            type          | fileName
            "ascii-only"  | "input-file.txt"
            "chinese"     | "输入文件.txt"
            "hungarian"   | "Dezső.txt"
            "space"       | "input file.txt"
            "zwnj"        | "input\u200cfile.txt"
            "url-quoted"  | "input%<file>#2.txt"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. hack/grab-profiles.sh

    if [[ -z "${server_addr}" ]]; then
      >&2 echo "Server flag is required"
      exit 1
    fi
    
    if [[ -z "${profile_components}" ]]; then
      >&2 echo "Choose at least one component to profile"
      exit 1
    fi
    
    if [[ -z "${requested_profiles}" ]]; then
      >&2 echo "Choose at least one profiling option"
      exit 1
    fi
    
    gcloud compute ssh "${server_addr}" --ssh-flag=-nN --ssh-flag=-L"${tunnel_port}":localhost:8080 &
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
Back to top