Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,054 for died (0.05 sec)

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

    	{93, "ENOTCAPABLE", "capabilities insufficient"},
    	{94, "ECAPMODE", "not permitted in capability mode"},
    	{95, "ENOTRECOVERABLE", "state not recoverable"},
    	{96, "EOWNERDEAD", "previous owner died"},
    	{97, "EINTEGRITY", "integrity check failed"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go

    	{93, "ENOTCAPABLE", "capabilities insufficient"},
    	{94, "ECAPMODE", "not permitted in capability mode"},
    	{95, "ENOTRECOVERABLE", "state not recoverable"},
    	{96, "EOWNERDEAD", "previous owner died"},
    	{97, "EINTEGRITY", "integrity check failed"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go

    	{93, "ENOTCAPABLE", "capabilities insufficient"},
    	{94, "ECAPMODE", "not permitted in capability mode"},
    	{95, "ENOTRECOVERABLE", "state not recoverable"},
    	{96, "EOWNERDEAD", "previous owner died"},
    	{97, "EINTEGRITY", "integrity check failed"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  4. src/syscall/zerrors_linux_loong64.go

    	124: "wrong medium type",
    	125: "operation canceled",
    	126: "required key not available",
    	127: "key has expired",
    	128: "key has been revoked",
    	129: "key was rejected by service",
    	130: "owner died",
    	131: "state not recoverable",
    	132: "operation not possible due to RF-kill",
    	133: "memory page has hardware error",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 82.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go

    	{93, "ENOTCAPABLE", "capabilities insufficient"},
    	{94, "ECAPMODE", "not permitted in capability mode"},
    	{95, "ENOTRECOVERABLE", "state not recoverable"},
    	{96, "EOWNERDEAD", "previous owner died"},
    	{97, "EINTEGRITY", "integrity check failed"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 83.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go

    	{93, "ENOTCAPABLE", "capabilities insufficient"},
    	{94, "ECAPMODE", "not permitted in capability mode"},
    	{95, "ENOTRECOVERABLE", "state not recoverable"},
    	{96, "EOWNERDEAD", "previous owner died"},
    	{97, "EINTEGRITY", "integrity check failed"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  7. src/cmd/link/link_test.go

    	cmd = testenv.Command(t, testenv.GoToolPath(t), "tool", "link", "-importcfg="+importcfgfile, "-o", exe, xObj)
    	out, err = cmd.CombinedOutput()
    	if err == nil {
    		t.Fatalf("link did not fail")
    	}
    	if !bytes.Contains(out, []byte("unlinkable object")) {
    		t.Errorf("did not see expected error message. out:\n%s", out)
    	}
    
    	// It is okay to omit -p for (only) main package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  8. docs/vi/docs/features.md

    * Điều này cho phép tự động hóa **trình sinh code client** cho nhiều ngôn ngữ lập trình khác nhau.
    
    ### Tự động hóa tài liệu
    
    
    Tài liệu tương tác API và web giao diện người dùng. Là một framework được dựa trên OpenAPI do đó có nhiều tùy chọn giao diện cho tài liệu API, 2 giao diện bên dưới là mặc định.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/dwtest/dwtest.go

    		ret[i] = ex.entryFromIdx(k)
    	}
    	return ret
    }
    
    // Returns parent DIE for DIE 'idx', or nil if the DIE is top level
    func (ex *Examiner) Parent(idx int) *dwarf.Entry {
    	p, found := ex.parent[idx]
    	if !found {
    		return nil
    	}
    	return ex.entryFromIdx(p)
    }
    
    // ParentCU returns the enclosing compilation unit DIE for the DIE
    // with a given index, or nil if for some reason we can't establish a
    // parent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	// of such pods should not be changed, and there is no need to sync them.
    	// TODO: the logic here does not handle two cases:
    	//   1. If the containers were removed immediately after they died, kubelet
    	//      may fail to generate correct statuses, let alone filtering correctly.
    	//   2. If kubelet restarted before writing the terminated status for a pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top