Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,516 for wall (0.05 sec)

  1. src/runtime/mgclimit.go

    //
    // It is safe to call concurrently with other operations.
    func (l *gcCPULimiterState) limiting() bool {
    	return l.enabled.Load()
    }
    
    // startGCTransition notifies the limiter of a GC transition.
    //
    // This call takes ownership of the limiter and disables all other means of
    // updating the limiter. Release ownership by calling finishGCTransition.
    //
    // It is safe to call concurrently with other operations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/internal/fuzz/fuzz.go

    	// Log is a writer for logging progress messages and warnings.
    	// If nil, io.Discard will be used instead.
    	Log io.Writer
    
    	// Timeout is the amount of wall clock time to spend fuzzing after the corpus
    	// has loaded. If zero, there will be no time limit.
    	Timeout time.Duration
    
    	// Limit is the number of random values to generate and test. If zero,
    	// there will be no limit on the number of generated values.
    	Limit int64
    
    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. src/cmd/go/internal/work/gccgo.go

    }
    
    func (tools gccgoToolchain) link(b *Builder, root *Action, out, importcfg string, allactions []*Action, buildmode, desc string) error {
    	sh := b.Shell(root)
    
    	// gccgo needs explicit linking with all package dependencies,
    	// and all LDFLAGS from cgo dependencies.
    	afiles := []string{}
    	shlibs := []string{}
    	ldflags := b.gccArchArgs()
    	cgoldflags := []string{}
    	usesCgo := false
    	cxx := false
    	objc := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/runtime/metrics/description.go

    		Cumulative:  true,
    	},
    }
    
    func init() {
    	// Insert all the non-default-reporting GODEBUGs into the table,
    	// preserving the overall sort order.
    	i := 0
    	for i < len(allDesc) && allDesc[i].Name < "/godebug/" {
    		i++
    	}
    	more := make([]Description, i, len(allDesc)+len(godebugs.All))
    	copy(more, allDesc)
    	for _, info := range godebugs.All {
    		if !info.Opaque {
    			more = append(more, Description{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    // profile.
    func (p *Profile) SetLabel(key string, value []string) {
    	for _, sample := range p.Sample {
    		if sample.Label == nil {
    			sample.Label = map[string][]string{key: value}
    		} else {
    			sample.Label[key] = value
    		}
    	}
    }
    
    // RemoveLabel removes all labels associated with the specified key for all
    // samples in the profile.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/runtime/metrics/doc.go

    		measurements. Compare only with other /cpu/classes metrics.
    		Sum of all metrics in /cpu/classes/scavenge.
    
    	/cpu/classes/total:cpu-seconds
    		Estimated total available CPU time for user Go code or the Go
    		runtime, as defined by GOMAXPROCS. In other words, GOMAXPROCS
    		integrated over the wall-clock duration this process has been
    		executing for. This metric is an overestimate, and not directly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. src/syscall/zerrors_linux_386.go

    	TUNSETPERSIST                    = 0x400454cb
    	TUNSETSNDBUF                     = 0x400454d4
    	TUNSETTXFILTER                   = 0x400454d1
    	TUNSETVNETHDRSZ                  = 0x400454d8
    	WALL                             = 0x40000000
    	WCLONE                           = 0x80000000
    	WCONTINUED                       = 0x8
    	WEXITED                          = 0x4
    	WNOHANG                          = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_amd64.go

    	TUNSETPERSIST                    = 0x400454cb
    	TUNSETSNDBUF                     = 0x400454d4
    	TUNSETTXFILTER                   = 0x400454d1
    	TUNSETVNETHDRSZ                  = 0x400454d8
    	WALL                             = 0x40000000
    	WCLONE                           = 0x80000000
    	WCONTINUED                       = 0x8
    	WEXITED                          = 0x4
    	WNOHANG                          = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  9. src/syscall/zerrors_linux_arm.go

    	TUNSETPERSIST                    = 0x400454cb
    	TUNSETSNDBUF                     = 0x400454d4
    	TUNSETTXFILTER                   = 0x400454d1
    	TUNSETVNETHDRSZ                  = 0x400454d8
    	WALL                             = 0x40000000
    	WCLONE                           = 0x80000000
    	WCONTINUED                       = 0x8
    	WEXITED                          = 0x4
    	WNOHANG                          = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.9K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            and:
            buildFile << """
                apply plugin: 'cpp-application'
    
                application {
                    binaries.configureEach {
                        compileTask.get().compilerArgs.add("-Wall")
                        compileTask.get().compilerArgs.add("-Werror")
                    }
                }
             """
    
            expect:
            succeeds "assemble"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top