Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 347 for exit_1 (0.14 sec)

  1. src/testing/benchmark.go

    			pb := &PB{
    				globalN: &n,
    				grain:   grain,
    				bN:      uint64(b.N),
    			}
    			body(pb)
    		}()
    	}
    	wg.Wait()
    	if n.Load() <= uint64(b.N) && !b.Failed() {
    		b.Fatal("RunParallel: body exited without pb.Next() == false")
    	}
    }
    
    // SetParallelism sets the number of goroutines used by [B.RunParallel] to p*GOMAXPROCS.
    // There is usually no need to call SetParallelism for CPU-bound benchmarks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/syscall/zerrors_linux_386.go

    	9:  "killed",
    	10: "user defined signal 1",
    	11: "segmentation fault",
    	12: "user defined signal 2",
    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "stack fault",
    	17: "child exited",
    	18: "continued",
    	19: "stopped (signal)",
    	20: "stopped",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "urgent I/O condition",
    	24: "CPU time limit exceeded",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  3. src/runtime/traceruntime.go

    //
    // Must be paired with a traceExitedSyscall call.
    func traceExitingSyscall() {
    	trace.exitingSyscall.Add(1)
    }
    
    // traceExitedSyscall marks a goroutine as having exited the syscall slow path.
    func traceExitedSyscall() {
    	trace.exitingSyscall.Add(-1)
    }
    
    // Gomaxprocs emits a ProcsChange event.
    func (tl traceLocker) Gomaxprocs(procs int32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/wasm/asm.go

    			writeUleb128(ctxt.Out, uint64(idx)) // funcidx
    		}
    		writeName(ctxt.Out, "mem") // inst.exports.mem in wasm_exec.js
    		ctxt.Out.WriteByte(0x02)   // mem export
    		writeUleb128(ctxt.Out, 0)  // memidx
    	default:
    		ld.Exitf("internal error: writeExportSec: unrecognized GOOS %s", buildcfg.GOOS)
    	}
    
    	writeSecSize(ctxt, sizeOffset)
    }
    
    // writeElementSec writes the section that initializes the tables declared by the "table" section.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/runtime/mfinal.go

    //
    // The finalizer is scheduled to run at some arbitrary time after the
    // program can no longer reach the object to which obj points.
    // There is no guarantee that finalizers will run before a program exits,
    // so typically they are useful only for releasing non-memory resources
    // associated with an object during a long-running program.
    // For example, an [os.File] object could use a finalizer to close the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/testing/testing_test.go

    		doRace()
    	}
    
    	m.Run()
    
    	// Note: m.Run currently prints the final "PASS" line, so if any race is
    	// reported here (after m.Run but before the process exits), it will print
    	// "PASS", then print the stack traces for the race, then exit with nonzero
    	// status.
    	//
    	// This is a somewhat fundamental race: because the race detector hooks into
    	// the runtime at a very low level, no matter where we put the printing it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    			t.Errorf("No container defined with name %v", name)
    		}
    		info.Spec.Memory.Limit = memoryLimitOverride
    		infos[name] = info
    	}
    	// any container for which cadvisor should return no stats (as might be the case for an exited init container)
    	nostatsOverrides := []string{
    		"/pod3-c0-init",
    	}
    	for _, name := range nostatsOverrides {
    		info, found := infos[name]
    		if !found {
    			t.Errorf("No container defined with name %v", name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. src/syscall/zerrors_darwin_amd64.go

    	12: "bad system call",
    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "urgent I/O condition",
    	17: "suspended (signal)",
    	18: "suspended",
    	19: "continued",
    	20: "child exited",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "I/O possible",
    	24: "cputime limit exceeded",
    	25: "filesize limit exceeded",
    	26: "virtual timer expired",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{15, "SIGTERM", "terminated"},
    	{16, "SIGUSR1", "user defined signal 1"},
    	{17, "SIGUSR2", "user defined signal 2"},
    	{18, "SIGABND", "abend"},
    	{19, "SIGCONT", "continued"},
    	{20, "SIGCHLD", "child exited"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    	{22, "SIGTTOU", "stopped (tty output)"},
    	{23, "SIGIO", "I/O possible"},
    	{24, "SIGQUIT", "quit"},
    	{25, "SIGTSTP", "stopped"},
    	{26, "SIGTRAP", "trace/breakpoint trap"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  10. src/syscall/zerrors_freebsd_arm.go

    	12: "bad system call",
    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "urgent I/O condition",
    	17: "suspended (signal)",
    	18: "suspended",
    	19: "continued",
    	20: "child exited",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "I/O possible",
    	24: "cputime limit exceeded",
    	25: "filesize limit exceeded",
    	26: "virtual timer expired",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.3K bytes
    - Viewed (0)
Back to top