Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for countBits (0.17 sec)

  1. src/internal/fuzz/coverage.go

    // also set in base.
    func hasCoverageBit(base, snapshot []byte) bool {
    	for i := range snapshot {
    		if snapshot[i]&base[i] != 0 {
    			return true
    		}
    	}
    	return false
    }
    
    func countBits(cov []byte) int {
    	n := 0
    	for _, c := range cov {
    		n += bits.OnesCount8(c)
    	}
    	return n
    }
    
    var (
    	coverageEnabled  = len(coverage()) > 0
    	coverageSnapshot = make([]byte, len(coverage()))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/internal/fuzz/fuzz.go

    								result.entry.Path,
    								result.entry.Parent,
    								result.entry.Generation,
    								countBits(keepCoverage),
    								countBits(c.coverageMask),
    								inputSize,
    								result.entryDuration,
    							)
    						}
    					}
    				} else {
    					if shouldPrintDebugInfo() {
    						c.debugLogf(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    8. If the distribution and/or use of the Program is restricted in
    certain countries either by patents or by copyrighted interfaces, the
    original copyright holder who places the Program under this License may
    add an explicit geographical distribution limitation excluding those
    countries, so that distribution is permitted only in or among countries
    not thus excluded. In such case, this License incorporates the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. tensorflow/c/eager/tape.h

          continue;
        }
        CHECK(result.op_tape.emplace(op_id, op_it->second).second);
        for (auto it : op_it->second.input_tensor_id) {
          auto count_it = result.tensor_usage_counts.find(it);
          if (count_it != result.tensor_usage_counts.end()) {
            count_it->second++;
          } else {
            result.tensor_usage_counts[it] = 1;
            if (tensor_tape.find(it) != tensor_tape.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/language.go

    // IsPrivateUse reports whether this script code is reserved for private use.
    func (s Script) IsPrivateUse() bool {
    	return s.scriptID.IsPrivateUse()
    }
    
    // Region is an ISO 3166-1 or UN M.49 code for representing countries and regions.
    type Region struct {
    	regionID language.Region
    }
    
    // EncodeM49 returns the Region for the given UN M.49 code.
    // It returns an error if r is not a valid code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. CREDITS

    infringement under applicable copyright law, except executing it on a
    computer or modifying a private copy.  Propagation includes copying,
    distribution (with or without modification), making available to the
    public, and in some countries other activities as well.
    
      To "convey" a work means any kind of propagation that enables other
    parties to make or receive copies.  Mere interaction with a user through
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  7. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    # IdnaMappingTable.txt
    # Date: 2023-08-10, 22:32:27 GMT
    # © 2023 Unicode®, Inc.
    # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
    # For terms of use, see https://www.unicode.org/terms_of_use.html
    #
    # Unicode IDNA Compatible Preprocessing for UTS #46
    # Version: 15.1.0
    #
    # For documentation and usage, see https://www.unicode.org/reports/tr46
    #
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
Back to top