micro-kernel - definition. What is micro-kernel
Diclib.com
قاموس ChatGPT
أدخل كلمة أو عبارة بأي لغة 👆
اللغة:

ترجمة وتحليل الكلمات عن طريق الذكاء الاصطناعي ChatGPT

في هذه الصفحة يمكنك الحصول على تحليل مفصل لكلمة أو عبارة باستخدام أفضل تقنيات الذكاء الاصطناعي المتوفرة اليوم:

  • كيف يتم استخدام الكلمة في اللغة
  • تردد الكلمة
  • ما إذا كانت الكلمة تستخدم في كثير من الأحيان في اللغة المنطوقة أو المكتوبة
  • خيارات الترجمة إلى الروسية أو الإسبانية، على التوالي
  • أمثلة على استخدام الكلمة (عدة عبارات مع الترجمة)
  • أصل الكلمة

%ما هو (من)٪ 1 - تعريف

KERNEL THAT PROVIDES FEWER SERVICES THAN A TRADITIONAL KERNEL
Nanokernel; Micro kernel; Picokernel; Μkernel; Mkernel; Microkernels
  • Structure of monolithic and microkernel-based operating systems, respectively

Kernel (operating system)         
  • The [[hybrid kernel]] approach combines the speed and simpler design of a monolithic kernel with the modularity and execution safety of a microkernel
  • servers]], separate programs that assume former kernel functions, such as device drivers, GUI servers, etc.
  • A diagram of the predecessor/successor family relationship for [[Unix-like]] systems
MAIN COMPONENT OF MOST COMPUTER OPERATING SYSTEMS
Operating system/kernel; Hybrid monolithic kernel; Operating system kernel; Kernel image; No-kernel; No kernell; No kernel; Kernel (computer); Kernel computer science; Kernel (computer science); Kernel (Computer Science); OS kernel; Kernel memory; Operating system kernels; Kernel design; Nucleus (operating system)
The kernel is a computer program at the core of a computer's operating system and generally has complete control over everything in the system. It is the portion of the operating system code that is always resident in memory and facilitates interactions between hardware and software components.
Kernel method         
CLASS OF ALGORITHMS FOR PATTERN ANALYSIS
Kernel trick; Kernel machine; Kernel Method; Kernel Methods; Kernel machines; Kernel Machines; Kernel methods
In machine learning, kernel machines are a class of algorithms for pattern analysis, whose best known member is the support-vector machine (SVM). The general task of pattern analysis is to find and study general types of relations (for example clusters, rankings, principal components, correlations, classifications) in datasets.
Kernel (statistics)         
  • 150px
  • 150px
  • 150px
  • 150px
  • 150px
  • 150px
  • 150px
  • 150px
  • 150px
  • 150px
  • All of the kernels below in a common coordinate system.
TERM IN STATISTICAL ANALYSIS USED TO REFER TO A WINDOW FUNCTION
Window width; Uniform kernel; Triangular kernel; Quartic kernel; Kernel estimation; Epanechnikov kernel; V. A. Epanechnikov; Epanechnikov; V A Epanechnikov; V.A. Epanechnikov; VA Epanechnikov
The term kernel is used in statistical analysis to refer to a window function. The term "kernel" has several distinct meanings in different branches of statistics.

ويكيبيديا

Microkernel

In computer science, a microkernel (often abbreviated as μ-kernel) is the near-minimum amount of software that can provide the mechanisms needed to implement an operating system (OS). These mechanisms include low-level address space management, thread management, and inter-process communication (IPC).

If the hardware provides multiple rings or CPU modes, the microkernel may be the only software executing at the most privileged level, which is generally referred to as supervisor or kernel mode. Traditional operating system functions, such as device drivers, protocol stacks and file systems, are typically removed from the microkernel itself and are instead run in user space.

In terms of the source code size, microkernels are often smaller than monolithic kernels. The MINIX 3 microkernel, for example, has only approximately 12,000 lines of code.