Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for uncommon (0.12 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      addInterfaces<TensorFlowLiteInlinerInterface,
                    TensorFlowLiteDialectFoldInterface>();
      addTypes<ControlType>();
    }
    
    //===----------------------------------------------------------------------===//
    // Common support logic
    //===----------------------------------------------------------------------===//
    
    namespace {
    
    // Returns true if the dimensions in `a` is a suffix of the ones in `b`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	klet.runner = runtime
    
    	runtimeCache, err := kubecontainer.NewRuntimeCache(klet.containerRuntime, runtimeCacheRefreshPeriod)
    	if err != nil {
    		return nil, err
    	}
    	klet.runtimeCache = runtimeCache
    
    	// common provider to get host file system usage associated with a pod managed by kubelet
    	hostStatsProvider := stats.NewHostStatsProvider(kubecontainer.RealOS{}, func(podUID types.UID) string {
    		return getEtcHostsPath(klet.getPodDir(podUID))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	}
    	return "no Go files in " + e.Package.Dir
    }
    
    // setLoadPackageDataError presents an error found when loading package data
    // as a *PackageError. It has special cases for some common errors to improve
    // messages shown to users and reduce redundancy.
    //
    // setLoadPackageDataError returns true if it's safe to load information about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

    import os
    from typing import Mapping, Optional, Sequence, Tuple, Union
    
    from absl.testing import parameterized
    import numpy as np
    import tensorflow  # pylint: disable=unused-import
    
    from tensorflow.compiler.mlir.quantization.common.python import testing
    from tensorflow.compiler.mlir.quantization.stablehlo import quantization_config_pb2 as stablehlo_quant_config_pb2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	// That could potentially last until other goroutines become ready
    	// to run. That said, we need to find a way to hedge
    	//
    	// Calling wakep() here is the best bet, it will do nothing in the
    	// common case (no racing on `sched.npidle`), while it could wake one
    	// more P to execute G's, which might end up with >1 P's: the first one
    	// wakes another P and so forth until there is no more work, but this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // haphazard; in some states these domains resolve as addresses, while in others
    // only subdomains are available, or even nothing at all. We include the
    // most common ones where it's clear that different sites are different
    // entities.
    k12.ak.us
    k12.al.us
    k12.ar.us
    k12.as.us
    k12.az.us
    k12.ca.us
    k12.co.us
    k12.ct.us
    k12.dc.us
    k12.de.us
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    </p>
    
    
    <h3 id="Appending_and_copying_slices">Appending to and copying slices</h3>
    
    <p>
    The built-in functions <code>append</code> and <code>copy</code> assist in
    common slice operations.
    For both functions, the result is independent of whether the memory referenced
    by the arguments overlaps.
    </p>
    
    <p>
    The <a href="#Function_types">variadic</a> function <code>append</code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top