Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 113 for syso (0.04 sec)

  1. cmd/format-erasure.go

    type formatErasureVersionDetect struct {
    	Erasure struct {
    		Version string `json:"version"`
    	} `json:"xl"`
    }
    
    // Represents the V1 backend disk structure version
    // under `.minio.sys` and actual data namespace.
    // formatErasureV1 - structure holds format config version '1'.
    type formatErasureV1 struct {
    	formatMetaV1
    	Erasure struct {
    		Version string `json:"version"` // Version of 'xl' format.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. src/syscall/exec_linux_test.go

    func prepareCgroupFD(t *testing.T) (int, string) {
    	t.Helper()
    
    	const O_PATH = 0x200000 // Same for all architectures, but for some reason not defined in syscall for 386||amd64.
    
    	// Requires cgroup v2.
    	const prefix = "/sys/fs/cgroup"
    	selfCg, err := os.ReadFile("/proc/self/cgroup")
    	if err != nil {
    		if os.IsNotExist(err) || os.IsPermission(err) {
    			t.Skip(err)
    		}
    		t.Fatal(err)
    	}
    
    	// Expect a single line like this:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. src/runtime/netpoll.go

    // license that can be found in the LICENSE file.
    
    //go:build unix || (js && wasm) || wasip1 || windows
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // Integrated network poller (platform-independent part).
    // A particular implementation (epoll/kqueue/port/AIX/Windows)
    // must define the following functions:
    //
    // func netpollinit()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. src/runtime/mgcwork.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const (
    	_WorkbufSize = 2048 // in bytes; larger values result in less contention
    
    	// workbufAlloc is the number of bytes to allocate at a time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. go.mod

    	go.uber.org/goleak v1.3.0
    	go.uber.org/mock v0.4.0
    	go.uber.org/zap v1.26.0
    	golang.org/x/crypto v0.23.0
    	golang.org/x/net v0.25.0
    	golang.org/x/oauth2 v0.20.0
    	golang.org/x/sync v0.7.0
    	golang.org/x/sys v0.20.0
    	golang.org/x/term v0.20.0
    	golang.org/x/time v0.3.0
    	golang.org/x/tools v0.21.0
    	google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d
    	google.golang.org/grpc v1.59.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server_linux.go

    			// whether to drain the node and restart docker.  Occurs in other container runtimes
    			// as well.
    			// TODO(random-liu): Remove this when the docker bug is fixed.
    			const message = "CRI error: /sys is read-only: " +
    				"cannot modify conntrack limits, problems may arise later (If running Docker, see docker issue #24000)"
    			s.Recorder.Eventf(s.NodeRef, nil, v1.EventTypeWarning, err.Error(), "StartKubeProxy", message)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. docs/sts/web-identity.md

    ```
    $ mc admin config set myminio identity_openid --env
    KEY:
    identity_openid[:name]  enable OpenID SSO support
    
    ARGS:
    MINIO_IDENTITY_OPENID_ENABLE*               (on|off)    enable identity_openid target, default is 'off'
    MINIO_IDENTITY_OPENID_DISPLAY_NAME          (string)    Friendly display name for this Provider/App
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/objfile.go

    		if r.Sym != nil {
    			name = r.Sym.Name
    			if ctxt.Debugasm > 1 {
    				ver = fmt.Sprintf("<%d>", r.Sym.ABI())
    			}
    		} else if r.Type == objabi.R_TLS_LE {
    			name = "TLS"
    		}
    		if ctxt.Arch.InFamily(sys.ARM, sys.PPC64) {
    			fmt.Fprintf(ctxt.Bso, "\trel %d+%d t=%v %s%s+%x\n", int(r.Off), r.Siz, r.Type, name, ver, uint64(r.Add))
    		} else {
    			fmt.Fprintf(ctxt.Bso, "\trel %d+%d t=%v %s%s+%d\n", int(r.Off), r.Siz, r.Type, name, ver, r.Add)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. src/runtime/iface.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const itabInitSize = 512
    
    var (
    	itabLock      mutex                               // lock for accessing itab table
    	itabTable     = &itabTableInit                    // pointer to current table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. src/runtime/cgocall.go

    		// Restore sp saved by cgocallback during
    		// unwind of g's stack (see comment at top of file).
    		mp := acquirem()
    		sched := &mp.g0.sched
    		sched.sp = *(*uintptr)(unsafe.Pointer(sched.sp + alignUp(sys.MinFrameSize, sys.StackAlign)))
    
    		// Do the accounting that cgocall will not have a chance to do
    		// during an unwind.
    		//
    		// In the case where a Go call originates from C, ncgo is 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top