Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 113 for syso (0.07 sec)

  1. src/runtime/mstats.go

    	// TotalAlloc increases as heap objects are allocated, but
    	// unlike Alloc and HeapAlloc, it does not decrease when
    	// objects are freed.
    	TotalAlloc uint64
    
    	// Sys is the total bytes of memory obtained from the OS.
    	//
    	// Sys is the sum of the XSys fields below. Sys measures the
    	// virtual address space reserved by the Go runtime for the
    	// heap, stacks, and other internal data structures. It's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. src/runtime/debuglog.go

    // This facility can be enabled by passing -tags debuglog when
    // building. Without this tag, dlog calls compile to nothing.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // debugLogBytes is the size of each per-M ring buffer. This is
    // allocated off-heap to avoid blowing up the M and hence the GC'd
    // heap size.
    const debugLogBytes = 16 << 10
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. cmd/handler-api.go

    	gzipObjects                 bool
    	rootAccess                  bool
    	syncEvents                  bool
    	objectMaxVersions           int64
    }
    
    const (
    	cgroupV1MemLimitFile = "/sys/fs/cgroup/memory/memory.limit_in_bytes"
    	cgroupV2MemLimitFile = "/sys/fs/cgroup/memory.max"
    	cgroupMemNoLimit     = 9223372036854771712
    )
    
    func cgroupMemLimit() (limit uint64) {
    	buf, err := os.ReadFile(cgroupV2MemLimitFile)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure.sh

          -o "${tmp_kube_env}" \
          http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-env
        # Convert the yaml format file into a shell-style file.
        eval "$(python3 -c '''
    import pipes,sys,yaml
    items = yaml.load(sys.stdin, Loader=yaml.BaseLoader).items()
    for k, v in items:
        print("readonly {var}={value}".format(var=k, value=pipes.quote(str(v))))
    ''' < "${tmp_kube_env}" > "${KUBE_HOME}/kube-env")"
        rm -f "${tmp_kube_env}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. src/runtime/runtime.go

    	return old
    }
    
    // auxv is populated on relevant platforms but defined here for all platforms
    // so x/sys/cpu can assume the getAuxv symbol exists without keeping its list
    // of auxv-using GOOS build tags in sync.
    //
    // It contains an even number of elements, (tag, value) pairs.
    var auxv []uintptr
    
    // golang.org/x/sys/cpu uses getAuxv via linkname.
    // Do not remove or change the type signature.
    // (See go.dev/issue/57336.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

    #include <dirent.h>
    #include <errno.h>
    #include <fcntl.h>
    #include <limits.h>
    #include <stdint.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <sys/mman.h>
    #include <sys/stat.h>
    #include <unistd.h>
    
    #include "tensorflow/c/experimental/filesystem/filesystem_interface.h"
    #include "tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem_helper.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/ssa/config.go

    // and shared across all compilations.
    type Config struct {
    	arch           string // "amd64", etc.
    	PtrSize        int64  // 4 or 8; copy of cmd/internal/sys.Arch.PtrSize
    	RegSize        int64  // 4 or 8; copy of cmd/internal/sys.Arch.RegSize
    	Types          Types
    	lowerBlock     blockRewriter  // block lowering function, first round
    	lowerValue     valueRewriter  // value lowering function, first round
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package loader
    
    import (
    	"bytes"
    	"cmd/internal/goobj"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/sym"
    	"fmt"
    	"testing"
    )
    
    // dummyAddSym adds the named symbol to the loader as if it had been
    // read from a Go object file. Note that it allocates a global
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. 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)
Back to top