Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 238 for shminfo (0.14 sec)

  1. src/runtime/defs_arm_linux.go

    /*
    #cgo CFLAGS: -I/usr/src/linux-headers-2.6.26-2-versatile/include
    
    #define __ARCH_SI_UID_T int
    #include <asm/signal.h>
    #include <asm/mman.h>
    #include <asm/sigcontext.h>
    #include <asm/ucontext.h>
    #include <asm/siginfo.h>
    #include <linux/time.h>
    
    struct xsiginfo {
    	int si_signo;
    	int si_errno;
    	int si_code;
    	char _sifields[4];
    };
    
    #undef sa_handler
    #undef sa_flags
    #undef sa_restorer
    #undef sa_mask
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  2. src/runtime/defs_linux.go

    // a separate file, defs1.go.
    
    #define	_SYS_TYPES_H	// avoid inclusion of sys/types.h
    #include <asm/posix_types.h>
    #define size_t __kernel_size_t
    #include <asm/signal.h>
    #include <asm/siginfo.h>
    #include <asm/mman.h>
    #include <asm-generic/errno.h>
    #include <asm-generic/poll.h>
    #include <linux/eventpoll.h>
    #include <linux/time.h>
    */
    import "C"
    
    const (
    	EINTR  = C.EINTR
    	EAGAIN = C.EAGAIN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  3. src/internal/sysinfo/cpuinfo_stub.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !(darwin || freebsd || linux || netbsd || openbsd)
    
    package sysinfo
    
    func osCPUInfoName() string {
    	return ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:42:42 UTC 2024
    - 283 bytes
    - Viewed (0)
  4. src/internal/sysinfo/export_test.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sysinfo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:42:42 UTC 2024
    - 212 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

            }
    
        }
    
        static void initializeProbes() {
            // Force probes to be loaded
            ProcessProbe.getInstance();
            OsProbe.getInstance();
            JvmInfo.jvmInfo();
        }
    
        public static void main(final String[] args) {
            final Options options = new Options();
    
            final CmdLineParser parser = new CmdLineParser(options);
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/internal/sysinfo/cpuinfo_bsd.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build darwin || freebsd || netbsd || openbsd
    
    package sysinfo
    
    import "syscall"
    
    func osCPUInfoName() string {
    	cpu, _ := syscall.Sysctl("machdep.cpu.brand_string")
    	return cpu
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:42:42 UTC 2024
    - 344 bytes
    - Viewed (0)
  7. pkg/controller/serviceaccount/tokens_controller.go

    		sa = &v1.ServiceAccount{ObjectMeta: metav1.ObjectMeta{Namespace: saInfo.namespace, Name: saInfo.name, UID: saInfo.uid}}
    		retry, err = e.deleteTokens(sa)
    		if err != nil {
    			logger.Error(err, "Error deleting serviceaccount tokens", "namespace", saInfo.namespace, "serviceaccount", saInfo.name)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. cmd/metrics-v3-cache.go

    	}
    
    	return cachevalue.NewFromFunc(1*time.Minute,
    		cachevalue.Opts{ReturnLastGood: true},
    		loadCPUMetrics)
    }
    
    func newMemoryMetricsCache() *cachevalue.Cache[madmin.MemInfo] {
    	loadMemoryMetrics := func(ctx context.Context) (v madmin.MemInfo, err error) {
    		var types madmin.MetricType = madmin.MetricsMem
    
    		m := collectLocalMetrics(types, collectMetricsOpts{
    			hosts: map[string]struct{}{
    				globalLocalNodeName: {},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/runtime/runtime_linux_test.go

    func TestKernelStructSize(t *testing.T) {
    	// Check that the Go definitions of structures exchanged with the kernel are
    	// the same size as what the kernel defines.
    	if have, want := unsafe.Sizeof(Siginfo{}), uintptr(SiginfoMaxSize); have != want {
    		t.Errorf("Go's siginfo struct is %d bytes long; kernel expects %d", have, want)
    	}
    	if have, want := unsafe.Sizeof(Sigevent{}), uintptr(SigeventMaxSize); have != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 20:20:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/runtime/defs2_linux.go

    #define size_t __kernel_size_t
    #define pid_t int
    #include <asm/signal.h>
    #include <asm/mman.h>
    #include <asm/sigcontext.h>
    #include <asm/ucontext.h>
    #include <asm/siginfo.h>
    #include <asm-generic/errno.h>
    #include <asm-generic/fcntl.h>
    #include <asm-generic/poll.h>
    #include <linux/eventpoll.h>
    
    // This is the sigaction structure from the Linux 2.1.68 kernel which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top