Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for syscalls (0.11 sec)

  1. docs/metrics/prometheus/grafana/minio-dashboard.json

              "expr": "rate(minio_node_syscall_write_total{job=~\"$scrape_jobs\"}[$__rate_interval])",
              "interval": "",
              "legendFormat": "Write Syscalls [{{server}}]",
              "refId": "B"
            }
          ],
          "title": "Syscalls",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_windows.go

    	r0, _, e1 := Syscall(procGetCurrentProcess.Addr(), 0, 0, 0, 0)
    	pseudoHandle = Handle(r0)
    	if pseudoHandle == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func getCurrentProcessId() (pid uint32) {
    	r0, _, _ := Syscall(procGetCurrentProcessId.Addr(), 0, 0, 0, 0)
    	pid = uint32(r0)
    	return
    }
    
    func GetEnvironmentStrings() (envs *uint16, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //go:linkname syscall_prlimit syscall.prlimit
    func syscall_prlimit(pid, resource int, newlimit, old *syscall.Rlimit) error
    
    func Prlimit(pid, resource int, newlimit, old *Rlimit) error {
    	// Just call the syscall version, because as of Go 1.21
    	// it will affect starting a new process.
    	return syscall_prlimit(pid, resource, (*syscall.Rlimit)(newlimit), (*syscall.Rlimit)(old))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    				}
    			}
    		}
    	}
    
    	// Set skipParent to skip mkdirAll() calls for deeply nested objects
    	// - if its an overwrite
    	// - if its a versioned object
    	//
    	// This can potentiall reduce syscalls by strings.Split(path, "/")
    	// times relative to the object name.
    	skipParent := dstVolumeDir
    	if len(dstBuf) > 0 {
    		skipParent = pathutil.Dir(dstFilePath)
    	}
    
    	var reqVID string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_darwin_amd64.go

    	_, _, e1 := syscall(abi.FuncPCABI0(libc_closedir_trampoline), uintptr(dir), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_closedir_trampoline()
    
    //go:cgo_import_dynamic libc_closedir closedir "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup(fd int) (nfd int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  6. src/os/os_test.go

    	}
    	if perr, ok := err.(*PathError); !ok || perr.Err != syscall.ESPIPE {
    		t.Errorf("Seek returned error %v, want &PathError{Err: syscall.ESPIPE}", err)
    	}
    	_, err = w.Seek(0, 0)
    	if err == nil {
    		t.Fatal("Seek on pipe should fail")
    	}
    	if perr, ok := err.(*PathError); !ok || perr.Err != syscall.ESPIPE {
    		t.Errorf("Seek returned error %v, want &PathError{Err: syscall.ESPIPE}", err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // Do the interface allocations only once for common
    // Errno values.
    var (
    	errEAGAIN error = syscall.EAGAIN
    	errEINVAL error = syscall.EINVAL
    	errENOENT error = syscall.ENOENT
    )
    
    var ZosTraceLevel int
    var ZosTracefile *os.File
    
    var (
    	signalNameMapOnce sync.Once
    	signalNameMap     map[string]syscall.Signal
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	_, _, e1 := Syscall6(SYS_PTRACE, uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func ptracePtr(request int, pid int, addr uintptr, data unsafe.Pointer) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    const (
    	SIGABRT    = syscall.Signal(0x6)
    	SIGALRM    = syscall.Signal(0xe)
    	SIGBUS     = syscall.Signal(0xa)
    	SIGCANCEL  = syscall.Signal(0x24)
    	SIGCHLD    = syscall.Signal(0x12)
    	SIGCLD     = syscall.Signal(0x12)
    	SIGCONT    = syscall.Signal(0x19)
    	SIGEMT     = syscall.Signal(0x7)
    	SIGFPE     = syscall.Signal(0x8)
    	SIGFREEZE  = syscall.Signal(0x22)
    	SIGHUP     = syscall.Signal(0x1)
    	SIGILL     = syscall.Signal(0x4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go

    	SIGCHLD     = syscall.Signal(0x14)
    	SIGCKPT     = syscall.Signal(0x21)
    	SIGCKPTEXIT = syscall.Signal(0x22)
    	SIGCONT     = syscall.Signal(0x13)
    	SIGEMT      = syscall.Signal(0x7)
    	SIGFPE      = syscall.Signal(0x8)
    	SIGHUP      = syscall.Signal(0x1)
    	SIGILL      = syscall.Signal(0x4)
    	SIGINFO     = syscall.Signal(0x1d)
    	SIGINT      = syscall.Signal(0x2)
    	SIGIO       = syscall.Signal(0x17)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 70.7K bytes
    - Viewed (0)
Back to top