Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 650 for _kernel (0.13 sec)

  1. src/runtime/rt0_linux_arm.s

    	B	_rt0_arm_lib(SB)
    
    TEXT _rt0_arm_linux1(SB),NOSPLIT|NOFRAME,$0
    	// We first need to detect the kernel ABI, and warn the user
    	// if the system only supports OABI.
    	// The strategy here is to call some EABI syscall to see if
    	// SIGILL is received.
    	// If you get a SIGILL here, you have the wrong kernel.
    
    	// Save argc and argv (syscall will clobber at least R0).
    	MOVM.DB.W [R0-R1], (R13)
    
    	// do an EABI syscall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 21:41:30 UTC 2018
    - 1007 bytes
    - Viewed (0)
  2. pkg/kubelet/cm/helpers_linux.go

    	kubefeatures "k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/cm/util"
    )
    
    const (
    	// These limits are defined in the kernel:
    	// https://github.com/torvalds/linux/blob/0bddd227f3dc55975e2b8dfa7fc6f959b062a2c7/kernel/sched/sched.h#L427-L428
    	MinShares = 2
    	MaxShares = 262144
    
    	SharesPerCPU  = 1024
    	MilliCPUToCPU = 1000
    
    	// 100000 microseconds is equivalent to 100ms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/route/address.go

    	// +----------------------------+
    	//
    	// The differences between the kernel form and the NLRI
    	// encoding are:
    	//
    	// - The length field of the kernel form indicates the prefix
    	//   length in bytes, not in bits
    	//
    	// - In the kernel form, zero value of the length field
    	//   doesn't mean 0.0.0.0/0 or ::/0
    	//
    	// - The kernel form appends leading bytes to the prefix field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. src/syscall/mksysnum_linux.pl

    package syscall
    
    const(
    EOF
    
    my $offset = 0;
    
    sub fmt {
    	my ($name, $num) = @_;
    	if($num > 999){
    		# ignore deprecated syscalls that are no longer implemented
    		# https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/include/uapi/asm-generic/unistd.h?id=refs/heads/master#n716
    		return;
    	}
    	$name =~ y/a-z/A-Z/;
    	$num = $num + $offset;
    	print "	SYS_$name = $num;\n";
    }
    
    my $prev;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/outbuf_darwin.go

    	return err
    }
    
    func (out *OutBuf) purgeSignatureCache() {
    	// Apparently, the Darwin kernel may cache the code signature at mmap.
    	// When we mmap the output buffer, it doesn't have a code signature
    	// (as we haven't generated one). Invalidate the kernel cache now that
    	// we have generated the signature. See issue #42684.
    	msync(out.buf, syscall.MS_INVALIDATE)
    	// Best effort. Ignore error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 13 15:50:02 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. src/internal/poll/sendfile_solaris.go

    // Not strictly needed, but very helpful for debugging, see issue #10221.
    //
    //go:cgo_import_dynamic _ _ "libsendfile.so"
    //go:cgo_import_dynamic _ _ "libsocket.so"
    
    // maxSendfileSize is the largest chunk size we ask the kernel to copy
    // at a time.
    const maxSendfileSize int = 4 << 20
    
    // SendFile wraps the sendfile system call.
    func SendFile(dstFD *FD, src int, pos, remain int64) (written int64, err error, handled bool) {
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/internal/poll/sendfile_linux.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package poll
    
    import "syscall"
    
    // maxSendfileSize is the largest chunk size we ask the kernel to copy
    // at a time.
    const maxSendfileSize int = 4 << 20
    
    // SendFile wraps the sendfile system call.
    func SendFile(dstFD *FD, src int, remain int64) (written int64, err error, handled bool) {
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_mark_initialized_variables.mlir

      attributes {tf.entry_function = {control_outputs = "", inputs = "", outputs = "dense_2/Add:0"}, tf_saved_model.exported_names = ["serving_default"]} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_launch_util.cc

        // occurs when the producer is a XLA kernel (e.g.XlaLocalLaunch), or if this
        // tensor is produced by host-to-device transfer via PjRtDeviceContext.
        //
        // 2. Old fashion Tensor with raw device memory pointer. This case occurs
        // when the producer is a non-XLA TF GPU kernel or function (e.g.
        // tf.matmul).
        //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  10. src/runtime/netpoll_kqueue_pipe.go

    // and switch to EVFILT_USER when we bump up the minimal requirement of NetBSD to 10.0.
    // Alternatively, maybe we can use EVFILT_USER on the NetBSD by checking the kernel version
    // via uname(3) and fall back to the pipe if the kernel version is older than 10.0.
    
    var netpollBreakRd, netpollBreakWr uintptr // for netpollBreak
    
    func addWakeupEvent(kq int32) {
    	r, w, errno := nonblockingPipe()
    	if errno != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top