Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for syso (0.15 sec)

  1. go.work.sum

    golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
    golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
    golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
    golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
    golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:12 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. src/runtime/slice.go

    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"runtime/internal/math"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    type slice struct {
    	array unsafe.Pointer
    	len   int
    	cap   int
    }
    
    // A notInHeapSlice is a slice backed by runtime/internal/sys.NotInHeap memory.
    type notInHeapSlice struct {
    	array *notInHeap
    	len   int
    	cap   int
    }
    
    func panicmakeslicelen() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. cmd/config-current.go

    			Key:             config.IdentityOpenIDSubSys,
    			Description:     "enable OpenID SSO support",
    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:         config.IdentityLDAPSubSys,
    			Description: "enable LDAP SSO support",
    		},
    		config.HelpKV{
    			Key:         config.IdentityTLSSubSys,
    			Description: "enable X.509 TLS certificate SSO support",
    		},
    		config.HelpKV{
    			Key:         config.IdentityPluginSubSys,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  4. src/os/exec.go

    func (p *ProcessState) Success() bool {
    	return p.success()
    }
    
    // Sys returns system-dependent exit information about
    // the process. Convert it to the appropriate underlying
    // type, such as [syscall.WaitStatus] on Unix, to access its contents.
    func (p *ProcessState) Sys() any {
    	return p.sys()
    }
    
    // SysUsage returns system-dependent resource usage information about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/deadcode.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ld
    
    import (
    	"cmd/internal/goobj"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"fmt"
    	"internal/abi"
    	"internal/buildcfg"
    	"strings"
    	"unicode"
    )
    
    var _ = fmt.Print
    
    type deadcodePass struct {
    	ctxt *Link
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/main.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ld
    
    import (
    	"bufio"
    	"cmd/internal/goobj"
    	"cmd/internal/objabi"
    	"cmd/internal/quoted"
    	"cmd/internal/sys"
    	"cmd/internal/telemetry"
    	"cmd/link/internal/benchmark"
    	"flag"
    	"internal/buildcfg"
    	"log"
    	"os"
    	"runtime"
    	"runtime/pprof"
    	"strconv"
    	"strings"
    )
    
    var (
    	pkglistfornote []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	swapControllerAvailabilityOnce.Do(func() {
    		const warn = "Failed to detect the availability of the swap controller, assuming not available"
    		p := "/sys/fs/cgroup/memory/memory.memsw.limit_in_bytes"
    		if isCgroup2UnifiedMode() {
    			// memory.swap.max does not exist in the cgroup root, so we check /sys/fs/cgroup/<SELF>/memory.swap.max
    			_, unified, err := cgroups.ParseCgroupFileUnified("/proc/self/cgroup")
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top