Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 76 for syso (0.04 sec)

  1. src/cmd/go/internal/fsys/fsys.go

    func (f fakeFile) Mode() fs.FileMode  { return f.real.Mode() }
    func (f fakeFile) ModTime() time.Time { return f.real.ModTime() }
    func (f fakeFile) IsDir() bool        { return f.real.IsDir() }
    func (f fakeFile) Sys() any           { return f.real.Sys() }
    
    func (f fakeFile) String() string {
    	return fs.FormatFileInfo(f)
    }
    
    // missingFile provides an fs.FileInfo for an overlaid file where the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K 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. cmd/metacache-server-pool.go

    	"time"
    
    	"github.com/minio/minio/internal/grid"
    	xioutil "github.com/minio/minio/internal/ioutil"
    )
    
    func renameAllBucketMetacache(epPath string) error {
    	// Rename all previous `.minio.sys/buckets/<bucketname>/.metacache` to
    	// to `.minio.sys/tmp/` for deletion.
    	return readDirFn(pathJoin(epPath, minioMetaBucket, bucketMetaPrefix), func(name string, typ os.FileMode) error {
    		if typ == os.ModeDir {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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/syscall_windows.go

    	KeepAlive(filename)
    	if handle != 0 {
    		err = 0
    	}
    	return
    }
    
    // golang.org/x/sys linknames syscall.loadlibrary
    // (in addition to standard package syscall).
    // Do not remove or change the type signature.
    //
    //go:linkname syscall_loadlibrary syscall.loadlibrary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top