当前位置: 首页 > article >正文

【pytest框架源码分析一】pluggy源码分析之hook常用方法

简单看一下pytest的源码,其实很多地方是依赖pluggy来实现的。这里我们先看一下pluggy的源码。
pluggy的目录结构如下:
在这里插入图片描述
这里主要介绍下_callers.py, _hooks.py, _manager.py,其中_callers.py主要是提供具体调用的功能,_hooks.py提供hook的对象类,_manager.py则是负责控制流程的功能。
这里我们从_hooks.py开始:
在这里插入图片描述

首先HookspecOpts,HookimplOpts这两个类是定义了hook的specification和implementation的一些参数。具体参数意义我们后面再看。
接下来是HookspecMarker和HookimplMarker类,看注释可知,这两个类都是装饰器,HookspecMarker具体代码如下:

@final
class HookspecMarker:"""Decorator for marking functions as hook specifications.Instantiate it with a project_name to get a decorator.Calling :meth:`PluginManager.add_hookspecs` later will discover all markedfunctions if the :class:`PluginManager` uses the same project name."""__slots__ = ("project_name",)def __init__(self, project_name: str) -> None:self.project_name: Final = project_name@overloaddef __call__(self,function: _F,firstresult: bool = False,historic: bool = False,warn_on_impl: Warning | None = None,warn_on_impl_args: Mapping[str, Warning] | None = None,) -> _F: ...@overload  # noqa: F811def __call__(  # noqa: F811self,function: None = ...,firstresult: bool = ...,historic: bool = ...,warn_on_impl: Warning | None = ...,warn_on_impl_args: Mapping[str, Warning] | None = ...,) -> Callable[[_F], _F]: ...def __call__(  # noqa: F811self,function: _F | None = None,firstresult: bool = False,historic: bool = False,warn_on_impl: Warning | None = None,warn_on_impl_args: Mapping[str, Warning] | None = None,) -> _F | Callable[[_F], _F]:"""If passed a function, directly sets attributes on the functionwhich will make it discoverable to :meth:`PluginManager.add_hookspecs`.If passed no function, returns a decorator which can be applied to afunction later using the attributes supplied.:param firstresult:If ``True``, the 1:N hook call (N being the number of registeredhook implementation functions) will stop at I<=N when the I'thfunction returns a non-``None`` result. See :ref:`firstresult`.:param historic:If ``True``, every call to the hook will be memorized and replayedon plugins registered after the call was made. See :ref:`historic`.:param warn_on_impl:If given, every implementation of this hook will trigger the givenwarning. See :ref:`warn_on_impl`.:param warn_on_impl_args:If given, every implementation of this hook which requests one ofthe arguments in the dict will trigger the corresponding warning.See :ref:`warn_on_impl`... versionadded:: 1.5"""def setattr_hookspec_opts(func: _F) -> _F:if historic and firstresult:raise ValueError("cannot have a historic firstresult hook")opts: HookspecOpts = {"firstresult": firstresult,"historic": historic,"warn_on_impl": warn_on_impl,"warn_on_impl_args": warn_on_impl_args,}setattr(func, self.project_name + "_spec", opts)return funcif function is not None:return setattr_hookspec_opts(function)else:return setattr_hookspec_opts

这是一个装饰器类,其中主要的实现就是__call__下方的setattr_hookspec_opts方法,除去一个if判断,主要的操作是 setattr(func, self.project_name + “_spec”, opts),即给我们的方法加一个属性,属性名为self.project_name + “_spec”,value为上面定义的opts,里面更具体的属性则为默认值。这里我们简单调用一个例子,可以看出只要加了装饰器的方法都会给其加上这个属性:
在这里插入图片描述
HookimplMarker代码如下:

@final
class HookimplMarker:"""Decorator for marking functions as hook implementations.Instantiate it with a ``project_name`` to get a decorator.Calling :meth:`PluginManager.register` later will discover all markedfunctions if the :class:`PluginManager` uses the same project name."""__slots__ = ("project_name",)def __init__(self, project_name: str) -> None:self.project_name: Final = project_name@overloaddef __call__(self,function: _F,hookwrapper: bool = ...,optionalhook: bool = ...,tryfirst: bool = ...,trylast: bool = ...,specname: str | None = ...,wrapper: bool = ...,) -> _F: ...@overload  # noqa: F811def __call__(  # noqa: F811self,function: None = ...,hookwrapper: bool = ...,optionalhook: bool = ...,tryfirst: bool = ...,trylast: bool = ...,specname: str | None = ...,wrapper: bool = ...,) -> Callable[[_F], _F]: ...def __call__(  # noqa: F811self,function: _F | None = None,hookwrapper: bool = False,optionalhook: bool = False,tryfirst: bool = False,trylast: bool = False,specname: str | None = None,wrapper: bool = False,) -> _F | Callable[[_F], _F]:"""If passed a function, directly sets attributes on the functionwhich will make it discoverable to :meth:`PluginManager.register`.If passed no function, returns a decorator which can be applied to afunction later using the attributes supplied.:param optionalhook:If ``True``, a missing matching hook specification will not resultin an error (by default it is an error if no matching spec isfound). See :ref:`optionalhook`.:param tryfirst:If ``True``, this hook implementation will run as early as possiblein the chain of N hook implementations for a specification. See:ref:`callorder`.:param trylast:If ``True``, this hook implementation will run as late as possiblein the chain of N hook implementations for a specification. See:ref:`callorder`.:param wrapper:If ``True`` ("new-style hook wrapper"), the hook implementationneeds to execute exactly one ``yield``. The code before the``yield`` is run early before any non-hook-wrapper function is run.The code after the ``yield`` is run after all non-hook-wrapperfunctions have run. The ``yield`` receives the result value of theinner calls, or raises the exception of inner calls (includingearlier hook wrapper calls). The return value of the functionbecomes the return value of the hook, and a raised exception becomesthe exception of the hook. See :ref:`hookwrapper`.:param hookwrapper:If ``True`` ("old-style hook wrapper"), the hook implementationneeds to execute exactly one ``yield``. The code before the``yield`` is run early before any non-hook-wrapper function is run.The code after the ``yield`` is run after all non-hook-wrapperfunction have run  The ``yield`` receives a :class:`Result` objectrepresenting the exception or result outcome of the inner calls(including earlier hook wrapper calls). This option is mutuallyexclusive with ``wrapper``. See :ref:`old_style_hookwrapper`.:param specname:If provided, the given name will be used instead of the functionname when matching this hook implementation to a hook specificationduring registration. See :ref:`specname`... versionadded:: 1.2.0The ``wrapper`` parameter."""def setattr_hookimpl_opts(func: _F) -> _F:opts: HookimplOpts = {"wrapper": wrapper,"hookwrapper": hookwrapper,"optionalhook": optionalhook,"tryfirst": tryfirst,"trylast": trylast,"specname": specname,}setattr(func, self.project_name + "_impl", opts)return funcif function is None:return setattr_hookimpl_optselse:return setattr_hookimpl_opts(function)

这个和上面的HookspecMarker的作用类似,是给添加这个装饰器的函数增加几个参数
在这里插入图片描述
再下面到normalize_hookimpl_opts方法,这个方法就是把opts设置成默认值

def normalize_hookimpl_opts(opts: HookimplOpts) -> None:opts.setdefault("tryfirst", False)opts.setdefault("trylast", False)opts.setdefault("wrapper", False)opts.setdefault("hookwrapper", False)opts.setdefault("optionalhook", False)opts.setdefault("specname", None)

varnames方法如下,这个方法主要就是返回方法的位参和关键字参数:

def varnames(func: object) -> tuple[tuple[str, ...], tuple[str, ...]]:"""Return tuple of positional and keywrord argument names for a function,method, class or callable.In case of a class, its ``__init__`` method is considered.For methods the ``self`` parameter is not included."""if inspect.isclass(func):try:func = func.__init__except AttributeError:return (), ()elif not inspect.isroutine(func):  # callable object?try:func = getattr(func, "__call__", func)except Exception:return (), ()try:# func MUST be a function or method here or we won't parse any args.sig = inspect.signature(func.__func__ if inspect.ismethod(func) else func  # type:ignore[arg-type])except TypeError:return (), ()_valid_param_kinds = (inspect.Parameter.POSITIONAL_ONLY,inspect.Parameter.POSITIONAL_OR_KEYWORD,)_valid_params = {name: paramfor name, param in sig.parameters.items()if param.kind in _valid_param_kinds}args = tuple(_valid_params)defaults = (tuple(param.defaultfor param in _valid_params.values()if param.default is not param.empty)or None)if defaults:index = -len(defaults)args, kwargs = args[:index], tuple(args[index:])else:kwargs = ()# strip any implicit instance arg# pypy3 uses "obj" instead of "self" for default dunder methodsif not _PYPY:implicit_names: tuple[str, ...] = ("self",)else:implicit_names = ("self", "obj")if args:qualname: str = getattr(func, "__qualname__", "")if inspect.ismethod(func) or ("." in qualname and args[0] in implicit_names):args = args[1:]return args, kwargs

HookRelay定义如下,目前是个空类,后面使用的时候会进行处理。

@final
class HookRelay:"""Hook holder object for performing 1:N hook calls where N is the numberof registered plugins."""__slots__ = ("__dict__",)def __init__(self) -> None:""":meta private:"""if TYPE_CHECKING:def __getattr__(self, name: str) -> HookCaller: ...

该类中HookImpl和HookSpec也属于定义类,无实际操作代码

@final
class HookImpl:"""A hook implementation in a :class:`HookCaller`."""__slots__ = ("function","argnames","kwargnames","plugin","opts","plugin_name","wrapper","hookwrapper","optionalhook","tryfirst","trylast",)def __init__(self,plugin: _Plugin,plugin_name: str,function: _HookImplFunction[object],hook_impl_opts: HookimplOpts,) -> None:""":meta private:"""#: The hook implementation function.self.function: Final = functionargnames, kwargnames = varnames(self.function)#: The positional parameter names of ``function```.self.argnames: Final = argnames#: The keyword parameter names of ``function```.self.kwargnames: Final = kwargnames#: The plugin which defined this hook implementation.self.plugin: Final = plugin#: The :class:`HookimplOpts` used to configure this hook implementation.self.opts: Final = hook_impl_opts#: The name of the plugin which defined this hook implementation.self.plugin_name: Final = plugin_name#: Whether the hook implementation is a :ref:`wrapper <hookwrapper>`.self.wrapper: Final = hook_impl_opts["wrapper"]#: Whether the hook implementation is an :ref:`old-style wrapper#: <old_style_hookwrappers>`.self.hookwrapper: Final = hook_impl_opts["hookwrapper"]#: Whether validation against a hook specification is :ref:`optional#: <optionalhook>`.self.optionalhook: Final = hook_impl_opts["optionalhook"]#: Whether to try to order this hook implementation :ref:`first#: <callorder>`.self.tryfirst: Final = hook_impl_opts["tryfirst"]#: Whether to try to order this hook implementation :ref:`last#: <callorder>`.self.trylast: Final = hook_impl_opts["trylast"]def __repr__(self) -> str:return f"<HookImpl plugin_name={self.plugin_name!r}, plugin={self.plugin!r}>"@final
class HookSpec:__slots__ = ("namespace","function","name","argnames","kwargnames","opts","warn_on_impl","warn_on_impl_args",)def __init__(self, namespace: _Namespace, name: str, opts: HookspecOpts) -> None:self.namespace = namespaceself.function: Callable[..., object] = getattr(namespace, name)self.name = nameself.argnames, self.kwargnames = varnames(self.function)self.opts = optsself.warn_on_impl = opts.get("warn_on_impl")self.warn_on_impl_args = opts.get("warn_on_impl_args")

接下来是HookCaller,这个简单过下代码,具体可结合后面的_manager一起看:

class HookCaller:"""A caller of all registered implementations of a hook specification."""__slots__ = ("name","spec","_hookexec","_hookimpls","_call_history",)def __init__(self,name: str,hook_execute: _HookExec,specmodule_or_class: _Namespace | None = None,spec_opts: HookspecOpts | None = None,) -> None:""":meta private:"""#: Name of the hook getting called.self.name: Final = nameself._hookexec: Final = hook_execute# The hookimpls list. The caller iterates it *in reverse*. Format:# 1. trylast nonwrappers# 2. nonwrappers# 3. tryfirst nonwrappers# 4. trylast wrappers# 5. wrappers# 6. tryfirst wrappersself._hookimpls: Final[list[HookImpl]] = []self._call_history: _CallHistory | None = None# TODO: Document, or make private.self.spec: HookSpec | None = Noneif specmodule_or_class is not None:assert spec_opts is not Noneself.set_specification(specmodule_or_class, spec_opts)# TODO: Document, or make private.def has_spec(self) -> bool:return self.spec is not None# TODO: Document, or make private.def set_specification(self,specmodule_or_class: _Namespace,spec_opts: HookspecOpts,) -> None:  # 设置specif self.spec is not None:raise ValueError(f"Hook {self.spec.name!r} is already registered "f"within namespace {self.spec.namespace}")self.spec = HookSpec(specmodule_or_class, self.name, spec_opts)if spec_opts.get("historic"):self._call_history = []def is_historic(self) -> bool:"""Whether this caller is :ref:`historic <historic>`."""return self._call_history is not Nonedef _remove_plugin(self, plugin: _Plugin) -> None:for i, method in enumerate(self._hookimpls):if method.plugin == plugin:del self._hookimpls[i]returnraise ValueError(f"plugin {plugin!r} not found")def get_hookimpls(self) -> list[HookImpl]:"""Get all registered hook implementations for this hook."""return self._hookimpls.copy()def _add_hookimpl(self, hookimpl: HookImpl) -> None:"""Add an implementation to the callback chain."""for i, method in enumerate(self._hookimpls):if method.hookwrapper or method.wrapper:splitpoint = ibreakelse:splitpoint = len(self._hookimpls)if hookimpl.hookwrapper or hookimpl.wrapper:start, end = splitpoint, len(self._hookimpls)else:start, end = 0, splitpointif hookimpl.trylast:self._hookimpls.insert(start, hookimpl)elif hookimpl.tryfirst:self._hookimpls.insert(end, hookimpl)else:# find last non-tryfirst methodi = end - 1while i >= start and self._hookimpls[i].tryfirst:i -= 1self._hookimpls.insert(i + 1, hookimpl)def __repr__(self) -> str:return f"<HookCaller {self.name!r}>"def _verify_all_args_are_provided(self, kwargs: Mapping[str, object]) -> None:# This is written to avoid expensive operations when not needed.if self.spec:for argname in self.spec.argnames:if argname not in kwargs:notincall = ", ".join(repr(argname)for argname in self.spec.argnames# Avoid self.spec.argnames - kwargs.keys() - doesn't preserve order.if argname not in kwargs.keys())warnings.warn("Argument(s) {} which are declared in the hookspec ""cannot be found in this hook call".format(notincall),stacklevel=2,)breakdef __call__(self, **kwargs: object) -> Any:"""Call the hook.Only accepts keyword arguments, which should match the hookspecification.Returns the result(s) of calling all registered plugins, see:ref:`calling`."""assert (not self.is_historic()), "Cannot directly call a historic hook - use call_historic instead."self._verify_all_args_are_provided(kwargs)firstresult = self.spec.opts.get("firstresult", False) if self.spec else False# Copy because plugins may register other plugins during iteration (#438).return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult)def call_historic(self,result_callback: Callable[[Any], None] | None = None,kwargs: Mapping[str, object] | None = None,) -> None:"""Call the hook with given ``kwargs`` for all registered plugins andfor all plugins which will be registered afterwards, see:ref:`historic`.:param result_callback:If provided, will be called for each non-``None`` result obtainedfrom a hook implementation."""assert self._call_history is not Nonekwargs = kwargs or {}self._verify_all_args_are_provided(kwargs)self._call_history.append((kwargs, result_callback))# Historizing hooks don't return results.# Remember firstresult isn't compatible with historic.# Copy because plugins may register other plugins during iteration (#438).res = self._hookexec(self.name, self._hookimpls.copy(), kwargs, False)if result_callback is None:returnif isinstance(res, list):for x in res:result_callback(x)def call_extra(self, methods: Sequence[Callable[..., object]], kwargs: Mapping[str, object]) -> Any:"""Call the hook with some additional temporarily participatingmethods using the specified ``kwargs`` as call parameters, see:ref:`call_extra`."""assert (not self.is_historic()), "Cannot directly call a historic hook - use call_historic instead."self._verify_all_args_are_provided(kwargs)opts: HookimplOpts = {"wrapper": False,"hookwrapper": False,"optionalhook": False,"trylast": False,"tryfirst": False,"specname": None,}hookimpls = self._hookimpls.copy()for method in methods:hookimpl = HookImpl(None, "<temp>", method, opts)# Find last non-tryfirst nonwrapper method.i = len(hookimpls) - 1while i >= 0 and (# Skip wrappers.(hookimpls[i].hookwrapper or hookimpls[i].wrapper)# Skip tryfirst nonwrappers.or hookimpls[i].tryfirst):i -= 1hookimpls.insert(i + 1, hookimpl)firstresult = self.spec.opts.get("firstresult", False) if self.spec else Falsereturn self._hookexec(self.name, hookimpls, kwargs, firstresult)def _maybe_apply_history(self, method: HookImpl) -> None:"""Apply call history to a new hookimpl if it is marked as historic."""if self.is_historic():assert self._call_history is not Nonefor kwargs, result_callback in self._call_history:res = self._hookexec(self.name, [method], kwargs, False)if res and result_callback is not None:# XXX: remember firstresult isn't compat with historicassert isinstance(res, list)result_callback(res[0])

其中_add_hookimpl方法是在添加hook的实现方法。这里添加时先判断了下hookwrapper,hookwrapper为True的放在后面,否则放在前面;tryfirst的放在后面,trylast的放在前面,否则放在最前面的tryfirst的前一个。注意这里是放在后面的先执行,放在前面的后执行,先进后出。所以这边tryfirst和trylast只是try第一个或最后一个执行,并不保证最先或最后执行。
_verify_all_args_are_provided方法判断了下在self.spec.argnames中但是不在入参kwargs中的参数,warn了下,未做其它操作。
__call__方法中校验了下是不是historic_hook,然后获取了下firstresult,最后调用了_hookexec方法。
这个类中还有不少参数没有指明是什么意思,后面我们结合manager一起看下。

相关文章:

【pytest框架源码分析一】pluggy源码分析之hook常用方法

简单看一下pytest的源码&#xff0c;其实很多地方是依赖pluggy来实现的。这里我们先看一下pluggy的源码。 pluggy的目录结构如下&#xff1a; 这里主要介绍下_callers.py, _hooks.py, _manager.py&#xff0c;其中_callers.py主要是提供具体调用的功能&#xff0c;_hooks.py提…...

《Kafka 理解: Broker、Topic 和 Partition》

Kafka 核心架构解析:从概念到实践 Kafka 是一个分布式流处理平台,广泛应用于日志收集、实时数据分析和事件驱动架构。本文将从 Kafka 的核心组件、工作原理、实际应用场景等方面进行详细解析,帮助读者深入理解 Kafka 的架构设计及其在大数据领域的重要性。 ​1. Kafka 的背…...

【AHK】资源管理器自动化办公实例/自动连点设置

此处为一个自动连续点击打开检查的自动化操作案例&#xff0c;没有quicker的鼠键录制&#xff0c;不常用了&#xff0c;做个备份 #MaxThreadsPerHotkey 2 ; 这个是核心&#xff01;&#xff01;&#xff01;&#xff01;确保可以同时运行多个热键或标签global isRunning : tru…...

在docker容器中运行vllm部署deepseek-r1大模型

# 在本地部署python环境 cd /app/ python -m venv myenv # 激活虚拟环境 source /app/myenv/activate # 要撤销激活一个虚拟环境&#xff0c;请输入: deactivate# 进入虚拟环境安装modelscope pip install modelscope# 下载大模型&#xff08;7B为例&#xff09; modelscope do…...

Django基础环境准备

Django基础环境准备 文章目录 Django基础环境准备1.准备的环境 win11系统&#xff08;运用虚拟环境搭建&#xff09;1.1详见我的资源win11环境搭建 2.准备python环境2.1 winr 打开命令提示符 输入cmd 进入控制台2.2 输入python --version 查看是否有python环境2.3在pyhton官网下…...

使用DeepSeek实现自动化编程:类的自动生成

目录 简述 1. 通过注释生成C类 1.1 模糊生成 1.2 把控细节&#xff0c;让结果更精准 1.3 让DeepSeek自动生成代码 2. 验证DeepSeek自动生成的代码 2.1 安装SQLite命令行工具 2.2 验证DeepSeek代码 3. 测试代码下载 简述 在现代软件开发中&#xff0c;自动化编程工具如…...

nio使用

NIO &#xff1a; new Input/Output,&#xff0c;在java1.4中引入的一套新的IO操作API&#xff0c;&#xff0c;&#xff0c;旨在替代传统的IO&#xff08;即BIO&#xff1a;Blocking IO&#xff09;&#xff0c;&#xff0c;&#xff0c;nio提供了更高效的 文件和网络IO的 操作…...

【考试大纲】中级网络工程师考试大纲(最新版与旧版对比)

目录 引言考试科目1:网络工程师基础知识考试科目2:网络工程师应用技术引言 最新的网络工程师考试大纲出版于 2024 年 10 月,本考试大纲基于此版本整理。 考试科目1:网络工程师基础知识 计算机系统知识1.1 计算机硬件知识 1.2 操作系统知识 1.3 系统管理 系统开发和运行…...

Spring的下载与配置

1. 下载spring开发包 下载地址&#xff1a;https://repo.spring.io/webapp/#/artifacts/browse/simple/General/libs-release-local/org/springframework/spring 打开之后可以看到有很多版本供选择&#xff0c;因为视频教程用的是4.2.4版本&#xff0c;于是我也选择这个 右键…...

解决IDEA使用Ctrl + / 注释不规范问题

问题描述&#xff1a; ctrl/ 时&#xff0c;注释缩进和代码规范不一致问题 解决方式 设置->编辑器->代码样式->java->代码生成->注释代码...

学术小助手智能体

学术小助手&#xff1a;开学季的学术领航员 文心智能体平台AgentBuilder | 想象即现实 文心智能体平台AgentBuilder&#xff0c;是百度推出的基于文心大模型的智能体平台&#xff0c;支持广大开发者根据自身行业领域、应用场景&#xff0c;选取不同类型的开发方式&#xff0c;…...

kafka-leader -1问题解决

一. 问题&#xff1a; 在 Kafka 中&#xff0c;leader -1 通常表示分区的领导者副本尚未被选举出来&#xff0c;或者在获取领导者信息时出现了问题。以下是可能导致出现 kafka leader -1 的一些常见原因及相关分析&#xff1a; 1. 副本同步问题&#xff1a; 在 Kafka 集群中&…...

【开源-鸿蒙土拨鼠大理石系统】鸿蒙 HarmonyOS Next App+微信小程序+云平台

✨本人自己开发的开源项目&#xff1a;土拨鼠充电系统 ✨踩坑不易&#xff0c;还希望各位大佬支持一下&#xff0c;在GitHub给我点个 Start ⭐⭐&#x1f44d;&#x1f44d; ✍GitHub开源项目地址&#x1f449;&#xff1a;https://github.com/lusson-luo/HarmonyOS-groundhog-…...

HBuilder X中,uni-app、js的延时操作及定时器

完整源码下载 https://download.csdn.net/download/luckyext/90430165 在HBuilder X中&#xff0c;uni-app、js的延时操作及定时器可以用setTimeout和setInterval这两个函数来实现。 1.setTimeout函数用于在指定的毫秒数后执行一次函数。 例如&#xff0c; 2秒后弹出一个提…...

下载pyenv

安装 1、git clone https://gitclone.com/github.com/pyenv/pyenv.git ~/.pyenv 备用&#xff1a;git clone https://hub.fgit.ml/pyenv/pyenv.git ~/.pyenv 配置环境变量 export PYENV_ROOT"$HOME/.pyenv" export PATH"$PYENV_ROOT/bin:$PATH"然后&…...

升级TTSDK抖音小游戏banner广告接入

升级TTSDK抖音小游戏banner广告接入 介绍修改总结 介绍 我们原来使用的是unity2021&#xff0c;这次为了抖音新出的TTSDK中的新的API升级我们将项目升级为了unity2022&#xff0c;这次抖音官方剔除了原来StartSDKUnityTools和Start Asset Analyser&#xff08;startmini&#x…...

vue 项目部署到nginx 服务器

一 vue 项目打包 1 本地环境 npm run build 2 打包完成生成一个dist 文件夹&#xff0c;将其放到服务器指定的文件夹&#xff0c;此文件夹可以在nginx 配置文件中配置 二 nginx 1 根据对应的系统搜索安装命令 sudo yum install nginx 2 查看conf位置 如果不知道的话 ng…...

ubuntu终端指令集 shell编程基础(一)

磁盘指令 连接与查看&#xff1a;磁盘与 Ubuntu 有两种连接方式&#xff1b;使用ls /dev/sd*查看是否连接成功&#xff0c;通过df系列指令查看磁盘使用信息。若 U 盘已挂载&#xff0c;相关操作可能失败&#xff0c;需用umount取消挂载。磁盘操作&#xff1a;使用sudo fdisk 磁…...

win11编译pytorch cuda128版本流程

Geforce 50xx系显卡最低支持cuda128&#xff0c;torch cu128 release版本目前还没有释放&#xff0c;所以自己基于2.6.0源码自己编译wheel包。 1. 前置条件 1. 使用visual studio installer 安装visual studio 2022&#xff0c;工作负荷选择【使用c的桌面开发】,安装完成后将…...

STM32G431RBT6——(1)芯片命名规则

相信很多新手入门STM学的芯片&#xff0c;是STM32F103C8T6&#xff0c;假如刷到个项目换个芯片类型&#xff0c;就会感到好难啊&#xff0c;看不懂&#xff0c;就无从下手&#xff0c;不知所云。其实没什么难的&#xff0c;对于一个个不同的芯片的区别&#xff0c;就像是学习包…...

mac Homebrew安装、更新失败

我这边使用brew安装git-lfs 一直报这个错&#xff1a; curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL更新brew update也是报这个错误。最后使用使用大佬提供的脚本进行操作&#xff1a; /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/mast…...

Ecode前后端传值

说明 在泛微 E9 系统开发过程中&#xff0c;使用 Ecode 调用后端接口并进行传值是极为常见且关键的操作。在上一篇文章中&#xff0c;我们探讨了 Ecode 调用后端代码的相关内容&#xff0c;本文将深入剖析在 Ecode 中如何向后端传值&#xff0c;以及后端又该如何处理接收这些值…...

Wireshark:自定义类型帧解析

文章目录 1. 前言2. 背景3. 开发 Lua 插件 1. 前言 限于作者能力水平&#xff0c;本文可能存在谬误&#xff0c;因此而给读者带来的损失&#xff0c;作者不做任何承诺。 2. 背景 Wireshark 不认识用 tcpdump 抓取的数据帧&#xff0c;仔细分析相关代码和数据帧后&#xff0c…...

每日学习Java之一万个为什么?[MySQL面试篇]

分析SQL语句执行流程中遇到的问题 前言1 MySQL是怎么在一台服务器上启动的2 MySQL主库和从库是同时启动保持Alive的吗&#xff1f;3 如果不是主从怎么在启动的时候保证数据一致性4 ACID原则在MySQL上的体现5 数据在MySQL是通过什么DTO实现的6 客户端怎么与MySQL Server建立连接…...

Spring 为何需要三级缓存解决循环依赖,而不是二级缓存

Spring 使用三级缓存来解决循环依赖问题&#xff0c;而不是仅使用二级缓存&#xff0c;主要是为了同时满足依赖注入和 AOP 代理的需求。以下是详细解释&#xff1a; ### Spring 三级缓存的作用 Spring 的三级缓存分别用于不同的场景&#xff1a; 1. **一级缓存&#xff08;sin…...

2继续NTS库学习(读取shapefile)

引用库如下&#xff1a; 读取shapefile代码如下&#xff1a; namespace IfoxDemo {public class Class1{[CommandMethod("xx")]public static void nts二次学习(){Document doc Application.DocumentManager.MdiActiveDocument;var ed doc.Editor;string shpPath …...

避免 Git 文件名大小写出错

一、如何避免大小写出错&#xff1f; 配置 Git 全局忽略大小写 在 Windows 上&#xff0c;默认 Git 会忽略大小写。建议全局关闭此行为&#xff1a; git config --global core.ignorecase false统一团队命名规范 强制约定文件名全小写&#xff08;如 config.json&#xff09;或…...

JavaWeb后端基础(3)

原打算把Mysql操作数据库的一些知识写进去&#xff0c;但是感觉没必要&#xff0c;要是现在会的都是简单的增删改查&#xff0c;所以&#xff0c;这一篇&#xff0c;我直接从java操作数据库开始写&#xff0c;所以这一篇大致就是记一下JDBC、MyBatis、以及SpringBoot的配置文件…...

Vue程序下载

Vue是一个基于JavaScript&#xff08;JS&#xff09;实现的框架&#xff0c;想要使用它&#xff0c;就得先拿到Vue的js文件 Vue官网 Vue2&#xff1a;Vue.js Vue3&#xff1a;Vue.js - 渐进式 JavaScript 框架 | Vue.js 下载并安装vue.js 第一步&#xff1a;打开Vue2官网&a…...

力扣 寻找重复数

二分&#xff0c;双指针&#xff0c;环形链表。 题目 不看完题就是排序后&#xff0c;用两个快慢指针移动&#xff0c;找到相同就返回即可。 class Solution {public int findDuplicate(int[] nums) {Arrays.sort(nums);int l0;int r1;while(r<nums.length){if(nums[l]num…...