Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for cmode (0.27 sec)

  1. src/cmd/cover/cover.go

    			cmode = coverage.CtrModeCount
    		case "atomic":
    			counterStmt = atomicCounterStmt
    			cmode = coverage.CtrModeAtomic
    		case "regonly":
    			counterStmt = nil
    			cmode = coverage.CtrModeRegOnly
    		case "testmain":
    			counterStmt = nil
    			cmode = coverage.CtrModeTestMain
    		default:
    			return fmt.Errorf("unknown -mode %v", *mode)
    		}
    
    		if flag.NArg() == 0 {
    			return fmt.Errorf("missing source file(s)")
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. src/internal/coverage/decodemeta/decodefile.go

    func (r *CoverageMetaFileReader) NumPackages() uint64 {
    	return r.hdr.Entries
    }
    
    // CounterMode returns the counter mode (set, count, atomic) used
    // when building for coverage for the program that produce this
    // meta-data file.
    func (r *CoverageMetaFileReader) CounterMode() coverage.CounterMode {
    	return r.hdr.CMode
    }
    
    // CounterGranularity returns the counter granularity (single counter per
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 14 22:30:23 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func libfuzzerHookStrCmp(string, string, uint)
    func libfuzzerHookEqualFold(string, string, uint)
    
    func addCovMeta(p unsafe.Pointer, len uint32, hash [16]byte, pkpath string, pkgId int, cmode uint8, cgran uint8) uint32
    
    // architecture variants
    var x86HasPOPCNT bool
    var x86HasSSE41 bool
    var x86HasFMA bool
    var armHasVFPv4 bool
    var arm64HasATOMICS bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/internal/coverage/defs.go

    type CounterMode uint8
    
    const (
    	CtrModeInvalid  CounterMode = iota
    	CtrModeSet                  // "set" mode
    	CtrModeCount                // "count" mode
    	CtrModeAtomic               // "atomic" mode
    	CtrModeRegOnly              // registration-only pseudo-mode
    	CtrModeTestMain             // testmain pseudo-mode
    )
    
    func (cm CounterMode) String() string {
    	switch cm {
    	case CtrModeSet:
    		return "set"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    		if includeMain && p.Name == "main" && !haveMatch {
    			haveMatch = true
    			cmode = "regonly"
    		}
    
    		// Mark package for instrumentation.
    		p.Internal.Cover.Mode = cmode
    		covered = append(covered, p)
    
    		// Force import of sync/atomic into package if atomic mode.
    		if cfg.BuildCoverMode == "atomic" {
    			EnsureImport(p, "sync/atomic")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/mode.go

    }
    
    // SetMode sets the global telemetry mode to the given value.
    //
    // See the documentation of [Mode] for a description of the supported mode
    // values.
    //
    // An error is returned if the provided mode value is invalid, or if an error
    // occurs while persisting the mode value to the file system.
    func SetMode(mode string) error {
    	return telemetry.Default.SetMode(mode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/offline-mode.apt

    ~~ under the License.
    
      ---
      Offline Mode Design
      ---
      John Casey
      ---
      2005-04-08
      ---
    
    Offline Mode Design
    
    * UPDATE: 18-April-2005
    
      We cannot take the approach outlined below of detecting which remote
      repositories are "really" offline, since offline mode is more of a behavior,
      and this will lead to counter-intuitive results. A different feature may exist
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/code.go

    	}
    	buf.WriteString("<pre><code")
    	if b.Info != "" {
    		// https://spec.commonmark.org/0.30/#info-string
    		// “The first word of the info string is typically used to
    		// specify the language of the code sample...”
    		// No definition of what “first word” means though.
    		// The Dingus splits on isUnicodeSpace, but Goldmark only uses space.
    		lang := b.Info
    		for i, c := range lang {
    			if isUnicodeSpace(c) {
    				lang = lang[:i]
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/testdata/accesslog/mode-server.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: logs
    spec:
      accessLogging:
        - providers:
            - name: envoy
          match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 19 17:39:03 UTC 2022
    - 175 bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/testdata/accesslog/mode-clientserver.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: logs
    spec:
      accessLogging:
        - providers:
            - name: envoy
          match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 19 17:39:03 UTC 2022
    - 186 bytes
    - Viewed (0)
Back to top