Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,579 for notC (0.64 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      Value BacktrackValue(Value value);
    
     private:
      // Returns the analysis for the given region (analyzing the region if it has
      // not yet been analyzed).
      const InfoT& GetOrCreateAnalysis(Region& region) {
        auto it = info_map_.find(&region);
        if (it == info_map_.end()) {
          // Note: Keep object construction and insertion separate. If we use
          // emplace() to construct and insert in a single shot, when analyzing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/edit.go

    	type Retract struct {
    		Low       string
    		High      string
    		Rationale string
    	}
    
    Retract entries representing a single version (not an interval) will have
    the "Low" and "High" fields set to the same value.
    
    Note that this only describes the go.mod file itself, not other modules
    referred to indirectly. For the full set of modules available to a build,
    use 'go list -m -json all'.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
       * <p>This method is not type-safe, as it may be called on elements that are not mutually
       * comparable.
       *
       * @throws ClassCastException if the elements are not mutually comparable
       * @throws NullPointerException if any of {@code elements} is null
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. src/crypto/tls/defaults.go

    // the code advertises as supported in a TLS 1.2+ ClientHello and in a TLS 1.2+
    // CertificateRequest. The two fields are merged to match with TLS 1.3.
    // Note that in TLS 1.2, the ECDSA algorithms are not constrained to P-256, etc.
    var defaultSupportedSignatureAlgorithms = []SignatureScheme{
    	PSSWithSHA256,
    	ECDSAWithP256AndSHA256,
    	Ed25519,
    	PSSWithSHA384,
    	PSSWithSHA512,
    	PKCS1WithSHA256,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	swapControllerAvailabilityOnce.Do(func() {
    		const warn = "Failed to detect the availability of the swap controller, assuming not available"
    		p := "/sys/fs/cgroup/memory/memory.memsw.limit_in_bytes"
    		if isCgroup2UnifiedMode() {
    			// memory.swap.max does not exist in the cgroup root, so we check /sys/fs/cgroup/<SELF>/memory.swap.max
    			_, unified, err := cgroups.ParseCgroupFileUnified("/proc/self/cgroup")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtPsiTypeProvider.kt

         * For instance, it can be used to collect type parameters and use them during the conversion.
         *
         * @receiver [PsiType] to be converted.
         * @return The converted [KaType], or null if conversion is not possible e.g., [PsiType] is not resolved
         */
        public fun PsiType.asKaType(useSitePosition: PsiElement): KaType? = withValidityAssertion {
            analysisSession.psiTypeProvider.asKaType(this, useSitePosition)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/MultiParentClassLoader.java

    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Set;
    import java.util.concurrent.CopyOnWriteArrayList;
    
    /**
     * A {@code ClassLoader} which delegates to multiple parent ClassLoaders.
     *
     * Note: It's usually a good idea to add a {@link CachingClassLoader} between this ClassLoader and any
     * ClassLoaders that use it as a parent, to prevent every path in the ClassLoader graph being searched.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/pilot.libsonnet

            'Push Errors', queries.xdsErrors, |||
              Number of push errors. Many of these are at least potentional fatal and should be explored in-depth via Istiod logs.
              Note: metrics here do not use rate() to avoid missing transition from "No series"; series are not reported if there are no errors at all.
            |||
          ),
          panels.heatmap.base(
            'Push Time', queries.pushTime, |||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization_lib.cc

    using ::mlir::quant::stablehlo::QuantizeWeightOnlyPtq;
    using ::tensorflow::SignatureDef;
    using ::tensorflow::quantization::PyFunctionLibrary;
    
    // Note for maintainers: the definitions should ONLY mirror existing functions
    // defined in different targets. Do not include any extra business logic that
    // causes divergence from the semantics of mirrored functions.
    
    absl::Status PywrapQuantizeStaticRangePtq(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 02:51:53 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    You can signify that a task is not to be cached by adding the `@DisableCachingByDefault` annotation to it.
    You can also give a human-readable reason for not caching the task by default.
    The annotation can be used on its own, or together with `@CacheableTask`.
    
    NOTE: This annotation is only for documenting the reason behind not caching the task by default.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top