正直老师

文章
10
资源
0
加入时间
2年11月11天

IIS10部署Django

添加配置PYTHONPATH:项目的根目录DJANGO_SETTINGS_MODULE:项目名称(表示项目下的setting.py文件)<configuration> <appSettings> <!-- Required settings --> <add key="WSGI_HANDLER" value="django.core.wsgi.get_ws

python 调用 c++ dll 返回的 const char*

C++为 const char *#pragma once#include <iostream>#define PYAPI _declspec(dllexport)extern "C" { PYAPI const char* runCapture(char* ip, int port, char* username, char* password, char* channel, int preset, char* type, char* filep

【故障处理】imp-00051,imp-00008

【故障处理】imp-00051,imp-000081.1  BLOG文档结构图 1.2  故障分析及解决过程imp导入报错:IMP-00051: Direct path exported dump file contains illegal column lengthIMP-00008: unrecognized statement in the export file...

Bootstrap Sample (有放回抽样)

问题描述一个盒子里有100个小球(编号1到100),抽样规则是每次从盒子里随机挑选一个小球,记录该球的编号,并将小球放回。重复抽样步骤100次,问抽样得到的不重复小球的个数是多少?问题分析首先,问题的答案应该是一个概率意义上的值。考虑一个特定的小球A,每次抽样A被抽到的概率为1/100,A没有被抽到的概率为1 - 1/100,则经过100次抽样,A没有被抽到的概率 P =(1 -

epoll原理_定时器: Linux 中的 epoll

在看 Node http 模块文档的时候, 才留意到server.timeout这个属性, 本想简单介绍一下, 但是在梳理过后发现关于timeout有庞大的内容支撑:server.timout -> node core timers -> uv timers -> linux msleep/hrtimer -> clocksource -> tsc...