Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,120 for covered (0.15 sec)

  1. doc/next/6-stdlib/99-minor/structs/66408.md

    <!-- This is a new package; covered in 6-stdlib/3-structs.md. -->...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 66 bytes
    - Viewed (0)
  2. doc/next/6-stdlib/99-minor/unique/62483.md

    <!-- This is a new package; covered in 6-stdlib/2-unique.md. -->...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:14:07 UTC 2024
    - 65 bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaSerializationEncodingLookup.kt

     * Java object serialization support in the configuration cache.
     */
    @ServiceScope(Scope.BuildTree::class)
    class JavaSerializationEncodingLookup {
        private
        val encodings = ConcurrentHashMap<Class<*>, EncodingDetails>()
    
        /**
         * Returns the proper encoding provider for the given type, or null, if not covered by Java Object serialization.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_hashtables.cc

          return false;
        }
    
        for (auto& use : hashtable->getUses()) {
          Operation* user = use.getOwner();
    
          // Allow consuming hash table ops that can be covered by TensorFlow Lite
          // hash table kernels.
          if (auto find_op = llvm::dyn_cast<TF::LookupTableFindV2Op>(user))
            continue;
          if (auto import_op = llvm::dyn_cast<TF::LookupTableImportV2Op>(user))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/testing/internal/testdeps/deps.go

    	fuzz.SnapshotCoverage()
    }
    
    var CoverMode string
    var Covered string
    
    // These variables below are set at runtime (via code in testmain) to point
    // to the equivalent functions in package internal/coverage/cfile; doing
    // things this way allows us to have tests import internal/coverage/cfile
    // only when -cover is in effect (as opposed to importing for all tests).
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/internal/coverage/cformat/format.go

    // to name them (this is also consistent with the legacy cmd/cover
    // implementation). We do want to include their counts in the overall
    // summary however.
    func (fm *Formatter) EmitFuncs(w io.Writer) error {
    	if fm.cm == coverage.CtrModeInvalid {
    		panic("internal error, counter mode unset")
    	}
    	perc := func(covered, total uint64) float64 {
    		if total == 0 {
    			total = 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. src/internal/weak/pointer.go

    package have not gone through the proposal process. By exposing this
    functionality, we risk locking in the existing semantics due to Hyrum's Law.
    
    If you believe you have a good use-case for weak references not already
    covered by the standard library, file a proposal issue at
    https://github.com/golang/go/issues instead of relying on this package.
    */
    package weak
    
    import (
    	"internal/abi"
    	"runtime"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:13:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

     *
     * Since this fallback is not suitable for symbols from binary libraries in Standalone mode, the symbol names provider absolutely needs to
     * work there. This functionality is covered by package scope tests.
     */
    @OptIn(ExperimentalTopLevelDeclarationsGenerationApi::class)
    internal object DeclarationsInPackageProvider {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/cmd/covdata/covdata.go

    	}
    	fmt.Fprintf(os.Stderr, "usage: go tool covdata [command]\n")
    	fmt.Fprintf(os.Stderr, `
    Commands are:
    
    textfmt     convert coverage data to textual format
    percent     output total percentage of statements covered
    pkglist     output list of package import paths
    func        output coverage profile information for each function
    merge       merge data files together
    subtract    subtract one set of data files from another set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    		MaxRegexSize: 40,
    	},
    
    	// CRD formats
    	// Implementations sourced from strfmt, which kube-openapi uses as its
    	// format library. There are other CRD formats supported, but they are
    	// covered by other portions of the CEL library (like IP/CIDR), or their
    	// use is discouraged (like bsonobjectid, email, etc)
    	"uri": {
    		Name: "URI",
    		ValidateFunc: func(s string) []string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top