Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,645 for wall (0.41 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

            """
            buildFile << """
                apply plugin: 'cpp-library'
    
                library {
                    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: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  2. src/internal/profile/profile.go

    		}
    	}
    
    	return nil
    }
    
    // HasFunctions determines if all locations in this profile have
    // symbolized function information.
    func (p *Profile) HasFunctions() bool {
    	for _, l := range p.Location {
    		if l.Mapping == nil || !l.Mapping.HasFunctions {
    			return false
    		}
    	}
    	return true
    }
    
    // HasFileLines determines if all locations in this profile have
    // symbolized file and line number information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go

    	VSTATUS                           = 0x12
    	VSTOP                             = 0xd
    	VSUSP                             = 0xa
    	VTIME                             = 0x11
    	VWERASE                           = 0x4
    	WALL                              = 0x8
    	WALLSIG                           = 0x8
    	WALTSIG                           = 0x4
    	WCLONE                            = 0x4
    	WCOREFLAG                         = 0x80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.8K bytes
    - Viewed (0)
Back to top