Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,218 for programs (0.17 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Program.kt

         */
        data class Script(val source: ProgramSource) : Program()
    
        /**
         * A [Stage1] program followed by a stage 2 [Script] program.
         */
        data class Staged(val stage1: Stage1, val stage2: Script) : Program()
    
        /**
         * Any stage 1 program, one of [Buildscript], [Plugins] or [a sequence of the two][Stage1Sequence].
         */
        abstract class Stage1 : Program()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/config/config.go

    	ucfg.goversion = set(ucfg.GoVersion)
    	ucfg.program = make(map[string]bool, len(ucfg.Programs))
    	ucfg.pgversion = make(map[pgkey]bool, len(ucfg.Programs))
    	ucfg.pgcounter = make(map[pgkey]bool, len(ucfg.Programs))
    	ucfg.pgcounterprefix = make(map[pgkey]bool, len(ucfg.Programs))
    	ucfg.pgstack = make(map[pgkey]bool, len(ucfg.Programs))
    	ucfg.rate = make(map[pgkey]float64)
    	for _, p := range ucfg.Programs {
    		ucfg.program[p.Name] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/os/signal/doc.go

    delivered to the Notify channel, and the write will fail with an EPIPE
    error.
    
    This means that, by default, command line programs will behave like
    typical Unix command line programs, while other programs will not
    crash with SIGPIPE when writing to a closed network connection.
    
    # Go programs that use cgo or SWIG
    
    In a Go program that includes non-Go code, typically C/C++ code
    accessed using cgo or SWIG, Go's startup code normally runs first. It
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/cmd/pprof/README

    with "go get") should work with Go programs, but we cannot guarantee that.
    What we test is that the "go tool pprof" shipped with each Go release works
    with programs from that release.
    
    2. Pprof is used inside Google for C++, Java, and Go programs.
    Because it was developed for that broader context, it is overgeneralized
    when used here for the specific use case of profiling standard Go programs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 19:51:01 UTC 2017
    - 905 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/script_wait.txt

    ! stdout foo
    
    # Wait should set the output to the concatenated outputs of the background
    # programs, in the order in which they were started.
    wait
    stdout 'foo\nbar'
    
    # The end of the test should interrupt or kill any remaining background
    # programs, but that should not cause the test to fail if it does not
    # care about the exit status of those programs.
    [exec:sleep] ? exec sleep 86400 &
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:10 UTC 2022
    - 693 bytes
    - Viewed (0)
  6. src/cmd/pprof/doc.go

    // license that can be found in the LICENSE file.
    
    // Pprof interprets and displays profiles of Go programs.
    //
    // Basic usage:
    //
    //	go tool pprof binary profile
    //
    // For detailed usage information:
    //
    //	go tool pprof -h
    //
    // For an example, see https://blog.golang.org/profiling-go-programs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 419 bytes
    - Viewed (0)
  7. src/strings/clone.go

    // It guarantees to make a copy of s into a new allocation,
    // which can be important when retaining only a small substring
    // of a much larger string. Using Clone can help such programs
    // use less memory. Of course, since using Clone makes a copy,
    // overuse of Clone can make programs use more memory.
    // Clone should typically be used only rarely, and only when
    // profiling indicates that it is needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 809 bytes
    - Viewed (0)
  8. src/cmd/vet/README

    overhead of the added check. A new check that finds only a handful of problems
    across all existing programs, even if the problem is significant, is not worth
    adding to the suite everyone runs daily.
    
    Precision:
    
    Most of vet's checks are heuristic and can generate both false positives (flagging
    correct programs) and false negatives (not flagging incorrect ones). The rate of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 04:15:59 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/README.md

    variable.
    Test names are defined as the name of the `.go` file that generates the
    trace, but with the `.go` extension removed.
    
    ## Trace test programs
    
    The trace test programs in the `testprog` directory generate traces to
    stdout.
    Otherwise they're just normal programs.
    
    ## Trace debug commands
    
    The `cmd` directory contains helpful tools for debugging traces.
    
    * `gotraceraw` parses traces without validation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/README.md

    ## Notable Packages
    
    - The [x/telemetry/counter](https://pkg.go.dev/golang.org/x/telemetry/counter)
      package provides a library for instrumenting programs with counters and stack
      reports.
    - The [x/telemetry/upload](https://pkg.go.dev/golang.org/x/telemetry/upload)
      package provides a hook for Go toolchain programs to upload telemetry data,
      if the user has opted in to telemetry uploading.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top