SugarNMS智和网管平台可以通过搜索网络下的设备,按已定义的设备类型搜索出存在的对应的设备;
再通过搜索网络下所有设备的资源,按已定义的资源类型搜索出存在的对应的资源;
为资源添加对应的故障、性能监视器任务。
2023/10/16 8:20:02 1.8MB SugarNMS智和网管平台
1
ExportingloadedCOCOweightsasTFcheckpoint(yolov3.ckpt)andfrozengraph(yolov3_gpu_nms.pb).
2023/9/16 13:32:26 219.95MB yolov3
1
智和网管平台(SugarNMS)是智能化的网络设备和服务器等监控软件,包含网络拓扑管理、设备配置管理、故障和工作状态管理、性能管理、统计报表、资产管理、扩展功能策略、权限管理等功能。
智和网管平台采用业界领先的智能化技术对网络进行管理:通过网络自动搜索,自动发现网络设备,自动发现设备类型,自动发现设备间的链接关系;
自动发现设备上的网络接口、设备板卡、线路、链路、处理器、内存、磁盘、软件服务等资源信息;
通过智能化的拓扑图操作界面直观的组织和呈现被管网络、设备和资源;
通过智能化的故障监控策略定义、性能采集策略定义,可以实现对任何设备、中间件、数据库等的监控(SNMP、Telnet、SS
2023/8/30 4:52:18 15.8MB 智和网管平台(SugarNMS)
1
PrivateSubCommand1_Click()List1.ClearIfText2.Text=""OrText3.Text=""ThenMsgBox"没有端口扫什么扫啊!"&vbCrLf&"输入从1到65535的端口号。
",0+48,"端口号不能为空!"ElseIfText2.Text>"65535"OrText3.Text>"65535"ThenMsgBox"没有这么大的端口号的!"&vbCrLf&"正确的端口号从1到65535。
",0+48,"端口号错了!"EndIfWinsock1.CloseStart=TrueCallSCanningPorts'调用自定义过程List1.AddItem"端口"&Text2.Text&"-"&Text4.Text&"已扫描完成!"'扫描结束了List1.Text=List1.List(List1.NewIndex)EndSub
2023/7/14 8:53:51 63KB winsock 端口扫描
1
Inresponsetotheexponentiallyincreasingneedtoanalyzevastamountsofdata,NeuralNetworksforAppliedSciencesandEngineering:FromFundamentalstoComplexPatternRecognitionprovidesscientistswithasimplebutsystematicintroductiontoneuralnetworks.Beginningwithanintroductorydiscussionontheroleofneuralnetworksinscientificdataanalysis,thisbookprovidesasolidfoundationofbasicneuralnetworkconcepts.Itcontainsanoverviewofneuralnetworkarchitecturesforpracticaldataanalysisfollowedbyextensivestep-by-stepcoverageonlinearnetworks,aswellas,multi-layerperceptronfornonlinearpredictionandclassificationexplainingallstagesofprocessingandmodeldevelopmentillustratedthroughpracticalexamplesandcasestudies.LaterchapterspresentanextensivecoverageonSelfOrganizingMapsfornonlineardataclustering,recurrentnetworksforlinearnonlineartimeseriesforecasting,andothernetworktypessuitableforscientificdataanalysis.Withaneasytounderstandformatusingextensivegraphicalillustrationsandmultidisciplinaryscientificcontext,thisbookfillsthegapinthemarketforneuralnetworksformulti-dimensionalscientificdata,andrelatesneuralnetworkstostatistics.FeaturesxExplainsneuralnetworksinamulti-disciplinarycontextxUsesextensivegraphicalillustrationstoexplaincomplexmathematicalconceptsforquickandeasyunderstanding?Examinesin-depthneuralnetworksforlinearandnonlinearprediction,classification,clusteringandforecastingxIllustratesallstagesofmodeldevelopmentandinterpretationofresults,includingdatapreprocessing,datadimensionalityreduction,inputselection,modeldevelopmentandvalidation,modeluncertaintyassessment,sensitivityanalysesoninputs,errorsandmodelparametersSandhyaSamarasingheobtainedherMScinMechanicalEngineeringfromLumumbaUniversityinRussiaandanMSandPhDinEngineeringfromVirginiaTech,USA.
2023/7/13 16:31:44 6.77MB 神经网络
1
网络管理小工具还算好用,至少免费
2023/6/10 6:08:18 39.59MB 网络管理 拓扑展现 snmpviewe
1
图像分割之Canny边缘检测算子PPT,大致讲解三部分内容:求导、NMS、边缘寻找
2023/6/5 22:41:27 767KB 图像处理 边缘检测
1
用java编写的简易计算器实验报告实现计算器的加、减、乘、除等基本功能,参考Windows计算器增加多种功能,并处理异常。
privateJTextAreatext;//输入框privateJButtonbuttonBackspace,buttonCE,buttonC;//结果操作键privateJButtonbtn1,btn2,btn3,btn4,btn5,btn6,btn7,btn8,btn9,btn0;//数字键privateJButtonbtnMC,btnMR,btnMS,btnMAdd,btnMSub;//存储操作键privateJButtonbtnPlus,btnMinus,btnDivide,btnMultiply,btnEqual;//加减乘除等号键privateJButtonbtnPercent,btnSqrt,btnNegtive,btnReciprocal,btnDot;//"%",开方,"+/-",倒数,小数点……MainFrame(){super("计算器");setBounds(100,100,335,310);this.setDefaultCloseOperation(EXIT_ON_CLOSE);this.getContentPane().setLayout(newFlowLayout(FlowLayout.RIGHT));panel=newJPanel();panel2=newJPanel();gridpanelM=newJPanel();gridpanelR=newJPanel();gridpanelN=newJPanel();panel.setLayout(newBorderLayout(5,5));//水平垂直间距panel2.setLayout(newBorderLayout(5,5));gridpanelM.setLayout(newGridLayout(1,5,5,5));gridpanelR.setLayout(newGridLayout(1,3,5,5));gridpanelN.setLayout(newGridLayout(4,5,5,5));panel.add(gridpanelR,BorderLayout.NORTH);panel.add(panel2,BorderLayout.CENTER);panel2.add(gridpanelM,BorderLayout.NORTH);panel2.add(gridpanelN,BorderLayout.CENTER);this.getContentPane().add(text,BorderLayout.NORTH);this.getContentPane().add(panel,BorderLayout.SOUTH;………………}
2023/6/1 13:51:44 159KB java 计算器 实验报告
1
TreeNMS是一款redis,Memcache可视化客户端货物,付与JAVA开拓,实现基于WEB方式对于Redis,Memcached数据库举行管理、掩护。
成果搜罗:NoSQL数据库的揭示,库表的揭示,key,value的揭示,新增,更正,删除了等数据的在线编纂掩护,数据库备份复原,SQL语法帮手,在线数据源遴选配置配备枚举等。
体系内置14套UI皮肤,使用中能够依总体喜爱遴选配色方案。
体系不光平稳,适用,成果渺小,交互友好,可从容组合种种色调,免装置,免布署,解压即用,让掩护NoSQL数据库成为一件轻松的责任。
普及版下载请晤面http://www.treesoft.cn/dms.html
2023/4/29 12:57:37 62.39MB memcached
1
unms-rabbitmq-auth
2023/4/20 7:11:45 3KB Dockerfile
1
共 29 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡