Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 122 for Terminate (0.29 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go

    	{10, "SIGBUS", "bus error"},
    	{11, "SIGSEGV", "segmentation fault"},
    	{12, "SIGSYS", "bad system call"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGURG", "urgent I/O condition"},
    	{17, "SIGSTOP", "suspended (signal)"},
    	{18, "SIGTSTP", "suspended"},
    	{19, "SIGCONT", "continued"},
    	{20, "SIGCHLD", "child exited"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 83.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go

    	{10, "SIGBUS", "bus error"},
    	{11, "SIGSEGV", "segmentation fault"},
    	{12, "SIGSYS", "bad system call"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGURG", "urgent I/O condition"},
    	{17, "SIGSTOP", "suspended (signal)"},
    	{18, "SIGTSTP", "suspended"},
    	{19, "SIGCONT", "continued"},
    	{20, "SIGCHLD", "child exited"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  3. src/testing/testing.go

    // The directory is automatically removed when the test and
    // all its subtests complete.
    // Each subsequent call to t.TempDir returns a unique directory;
    // if the directory creation fails, TempDir terminates the test by calling Fatal.
    func (c *common) TempDir() string {
    	c.checkFuzzFn("TempDir")
    	// Use a single parent directory for all the temporary directories
    	// created by a test, each numbered sequentially.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			jobCreateError: &errors.StatusError{ErrStatus: metav1.Status{Details: &metav1.StatusDetails{Causes: []metav1.StatusCause{
    				{
    					Type:    v1.NamespaceTerminatingCause,
    					Message: fmt.Sprintf("namespace %s is being terminated", metav1.NamespaceDefault),
    					Field:   "metadata.namespace",
    				}}}}},
    			concurrencyPolicy:          "Allow",
    			schedule:                   onTheHour,
    			deadline:                   noDead,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  5. src/os/os_test.go

    		t.Skip(err)
    	}
    	data, err := ReadFile(name)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(data) == 0 || data[len(data)-1] != '\n' {
    		t.Fatalf("read %s: not newline-terminated: %q", name, data)
    	}
    }
    
    func TestDirFSReadFileProc(t *testing.T) {
    	t.Parallel()
    
    	fsys := DirFS("/")
    	name := "proc/sys/fs/pipe-max-size"
    	if _, err := fs.Stat(fsys, name); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // containers, we have reduced the number of outstanding init containers still
    // present. This reduces load on the container garbage collector by only
    // preserving the most recent terminated init container.
    func (m *kubeGenericRuntimeManager) pruneInitContainersBeforeStart(ctx context.Context, pod *v1.Pod, podStatus *kubecontainer.PodStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. src/fmt/fmt_test.go

    		}
    		// make sure the match ends here
    		loc += len(a[i])
    		if loc >= len(s) || (s[loc] != ' ' && s[loc] != ']') {
    			t.Errorf("map print: %q not properly terminated in %q", a[i], s)
    		}
    	}
    }
    
    func TestMapPrinter(t *testing.T) {
    	m0 := make(map[int]string)
    	s := Sprint(m0)
    	if s != "map[]" {
    		t.Errorf("empty map printed as %q not %q", s, "map[]")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    }
    
    // Consume a group of adjacent comments, add it to the parser's
    // comments list, and return it together with the line at which
    // the last comment in the group ends. An empty line or non-comment
    // token terminates a comment group.
    func (p *parser) consumeCommentGroup() (comments *ast.CommentGroup, endline int) {
    	var list []*ast.Comment
    	endline = p.file.Line(p.pos)
    	for p.tok == token.COMMENT && endline+1 >= p.file.Line(p.pos) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. src/go/printer/nodes.go

    	// tokens between)
    	if p.commentOffset == infinity {
    		p.nextComment() // get comment ready for use
    	}
    }
    
    type exprListMode uint
    
    const (
    	commaTerm exprListMode = 1 << iota // list is optionally terminated by a comma
    	noIndent                           // no extra indentation in multi-line lists
    )
    
    // If indent is set, a multi-line identifier list is indented after the
    // first linebreak encountered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    	pending.startValue = v.ID
    	for i, slot := range state.varSlots[varID] {
    		pending.pieces[i] = curLoc[slot]
    	}
    }
    
    // writePendingEntry writes out the pending entry for varID, if any,
    // terminated at endBlock/Value.
    func (state *debugState) writePendingEntry(varID VarID, endBlock, endValue ID) {
    	pending := state.pendingEntries[varID]
    	if !pending.present {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top