Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 441 for startm (0.61 sec)

  1. src/cmd/go/internal/bug/bug.go

    	"cmd/go/internal/envcmd"
    	"cmd/go/internal/web"
    	"cmd/go/internal/work"
    )
    
    var CmdBug = &base.Command{
    	Run:       runBug,
    	UsageLine: "go bug",
    	Short:     "start a bug report",
    	Long: `
    Bug opens the default browser and starts a new bug report.
    The report includes useful system information.
    	`,
    }
    
    func init() {
    	CmdBug.Flag.BoolVar(&cfg.BuildV, "v", false, "")
    	base.AddChdirFlag(&CmdBug.Flag)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/ServiceLifecycleTest.groovy

            }
            def action2 = {
                thread.blockUntil.action1Started
                instant.action2Done
            }
    
            when:
            async {
                start {
                    lifecycle.use(action1)
                }
                start {
                    lifecycle.use(action2)
                }
            }
    
            then:
            instant.action1Done > instant.action2Done
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/runtime/trace/trace_test.go

    	if IsEnabled() {
    		t.Skip("skipping because -test.trace is set")
    	}
    	Stop()
    	buf := new(bytes.Buffer)
    	if err := Start(buf); err != nil {
    		t.Fatalf("failed to start tracing: %v", err)
    	}
    	if err := Start(buf); err == nil {
    		t.Fatalf("succeed to start tracing second time")
    	}
    	Stop()
    	Stop()
    }
    
    func saveTrace(t *testing.T, buf *bytes.Buffer, name string) {
    	if !*saveTraces {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/DefaultStandardOutputRedirectorTest.groovy

            redirector.redirectStandardOutputTo(stdOutListener)
            redirector.start()
            System.out.print('this is stdout')
            System.out.flush()
    
            then:
            1 * stdOutListener.onOutput('this is stdout')
        }
    
        def canRedirectMultipleTimes() {
            when:
            redirector.redirectStandardErrorTo(stdErrListener)
            redirector.start()
            redirector.stop()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/objdump/main.go

    // symbols with names matching the regular expression.
    //
    // Alternate usage:
    //
    //	go tool objdump binary start end
    //
    // In this mode, objdump disassembles the binary starting at the start address and
    // stopping at the end address. The start and end addresses are program
    // counters written in hexadecimal with optional leading 0x prefix.
    // In this mode, objdump prints a sequence of stanzas of the form:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/trace/testdata/testprog/main.go

    	cpuHog(20 * time.Millisecond)
    }
    
    func cpuHog(dt time.Duration) {
    	start := time.Now()
    	for i := 0; ; i++ {
    		if i%1000 == 0 && time.Since(start) > dt {
    			return
    		}
    	}
    }
    
    func allocHog(dt time.Duration) {
    	start := time.Now()
    	var s [][]byte
    	for i := 0; ; i++ {
    		if i%1000 == 0 {
    			if time.Since(start) > dt {
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/trace/goroutinegen.go

    	}
    	if !from.Executing() && to.Executing() {
    		start := ev.Time()
    		if from == trace.GoUndetermined {
    			// Back-date the event to the start of the trace.
    			start = ctx.startTime
    		}
    		gs.start(start, goID, ctx)
    	}
    
    	if from == trace.GoWaiting {
    		// Goroutine unblocked.
    		gs.unblock(ev.Time(), ev.Stack(), ev.Goroutine(), ctx)
    	}
    	if from == trace.GoNotExist && to == trace.GoRunnable {
    		// Goroutine was created.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/testprog/wait-on-pipe.go

    		}
    		done <- struct{}{}
    	}()
    
    	// Give the goroutine ample chance to block on the pipe.
    	time.Sleep(10 * time.Millisecond)
    
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    
    	// This isn't enough to have a full generation pass by default,
    	// but it is generally enough in stress mode.
    	time.Sleep(100 * time.Millisecond)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/testprog/gomaxprocs.go

    			runtime.GC()
    			time.Sleep(1 * time.Millisecond)
    		}
    	}()
    
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    	// Run GOMAXPROCS a bunch of times, up and down.
    	for i := 1; i <= 16; i *= 2 {
    		runtime.GOMAXPROCS(i)
    		time.Sleep(1 * time.Millisecond)
    	}
    	for i := 16; i >= 1; i /= 2 {
    		runtime.GOMAXPROCS(i)
    		time.Sleep(1 * time.Millisecond)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 967 bytes
    - Viewed (0)
  10. manifests/addons/dashboards/lib/lib-grid.libsonnet

          then all panels below it will be folded into the row.
    
          Optional `startY` can be provided to place generated grid above or below existing panels.
        |||,
        args=[
          d.arg('panels', d.T.array),
          d.arg('panelHeight', d.T.number),
          d.arg('startY', d.T.number),
        ],
      ),
      makeGrid(panels, panelHeight=8, startY=0):
        local sanitizePanels(ps, row) = std.map(
          function(p)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top