ICode9

精准搜索请尝试: 精确搜索
  • SAS heatmapparm2021-10-05 22:31:51

        /*--Fig 4.6.2 Heat map--*/ data GTL_GS_HeatmapParm; drop pi val; pi=constant('Pi'); do x=1 to 20; do y=1 to 10; value=sin(x*pi/10) + cos(y*pi/10); val=ranuni(2); group=ifc(val < 0.5, 'M', 'F

  • SAS loessplot fit2021-10-05 20:01:15

    loessplot 局部多项式拟合,   ods html; proc template; define statgraph _loessplot; begingraph; layout overlay / xaxisopts = (griddisplay = on) yaxisopts = (griddisplay = on); modelband "Loess" / name = "loess" legend

  • SAS boxplot2021-10-05 16:00:47

        ods html; proc template; define statgraph _boxplot; begingraph; layout overlay / xaxisopts = (display = (ticks tickvalues)) yaxisopts = (griddisplay = on); boxplot y = cholesterol x= deathcause / orient = horizontal;

  • SAS barchart2021-10-05 14:00:41

    groupdisplay = 定义如何显示group,堆积、簇等等。   ods html; proc template; define statgraph _barchart; begingraph / ; entrytitle "a"; layout overlay / xaxisopts = (display = (ticks tickvalues)) yaxisopts = (griddisplay = on); barchart x = o

  • SAS scatterplot2021-10-05 12:31:38

        ods html; *DATALABEL = ; proc template; define statgraph _scatter; begingraph; entrytitle "Weight by Height"; layout overlay/xaxisopts = (griddisplay = on) yaxisopts = (griddisplay = on); scatterplot x = weight y = height

  • SAS bubbleplot2021-10-05 12:00:37

      DATASKIN: 控制plots的显示,看起来是否更光滑等。 ods html; proc template; define statgraph _bubbleplot; begingraph; layout overlay / xaxisopts = (griddisplay = on) yaxisopts = (griddisplay = on); bubbleplot x = height y = weight size = age / gro

  • ffmpeg安装相关链接2021-10-05 09:34:45

    php-ffmpeg 是一个php操作视频/音频文件的类库。 GitHub地址:https://github.com/PHP-FFMpeg/PHP-FFMpeg/ https://getcomposer.org/ 使用composer快速安装:composer require php-ffmpeg/php-ffmpeg 注意:需要在php.ini中的disable_functions ,将里面的proc_open、proc_get_status这两

  • pstack 分析Nacos 失败 |Debug日志2021-10-02 23:02:23

    pstack 分析Nacos 失败 |Debug日志 现象 在Ubuntu下安装pstack后,使用 sudo pstack nacos进程的PID命令跟踪堆栈报错 解决问题 centOS则没有这种问题,我以Ubuntu pstack为关键词搜索,没有找到相关的安装教程,但是找到了 pstack 命令打印不出堆栈 无法正常使用-问答-阿里云开发者社区-

  • android init时将此结点设置为2:/proc/sys/kernel/kptr_restrict2021-10-02 20:04:51

    Result<Success> SetKptrRestrictAction(const BuiltinArguments&) { std::string path = KPTR_RESTRICT_PATH; if (!SetHighestAvailableOptionValue(path, KPTR_RESTRICT_MINVALUE, KPTR_RESTRICT_MAXVALUE)) { LOG(FATAL) << "Unabl

  • 查看服务器信息2021-09-30 14:03:26

    # 查看操作系统发行版信息 cat /etc/redhat-release # 查看系统详细信息 lsb_release -a # 查看cpu型号 cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c # 查看物理CPU个数 cat /proc/cpuinfo| grep "physical id"| sort| uniq| wc -l # 查看逻辑cpu的个数 cat /

  • power shell 删除应用2021-09-30 14:03:23

    public static UwpAppInfo SearchUwpAppByName(string appName) { UwpAppInfo app = null; try { string resultOutput; Process proc = new Process(); proc.StartInf

  • Linux查看cup核数2021-09-30 10:59:49

    Linux查看cup核数 原文链接:Linux怎么查看CPU核数?-linux运维-PHP中文网 查看CPU信息(型号) [root@AAA ~]# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c 24 Intel(R) Xeon(R) CPU E5-2630 0 @ 2.30GHz # 查看物理CPU个数 [root@AAA ~]# cat /p

  • 2021年9月27日2021-09-27 21:04:08

    0 只要有程序打开文件 就有文件描述符 文件描述符是软链接 0->/dev/pts/0 1->/dev/pts/1 2->dev/pts/2   1 proc进程编号 可以看到程序所对应的内存信息,对应的文件描述符是哪些 找到程序路径 先找到进程编号 ps aux 打开proc/进程编号 找到exe软链接 到进程路径   proc/self/ 当

  • C#链接Windows远程桌面2021-09-27 11:35:46

    using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 链接远程服务器 { publ

  • linux文件系统-特殊文件系统/proc2021-09-26 20:31:52

    早期的Unix在设备文件目录/dev下设置了一个特殊文件,称为/dev/mem。通过这个文件可以读写系统的整个物理内存,而物理内存的地址就用读写文件内部的位移量。这个特殊文件同样适用于read、write、lseek等常规的文件操作,从而提供了一个在内核外部动态地读写包括内核映像和内核中各个

  • MySQL存储过程2021-09-25 23:32:39

    MySQL存储过程 存储过程是数据库的一个重要对象,可以封装SQL,完成一些复杂的业务逻辑。使用存储过程,最主要的特点是执行速度快,其经过编译后会比一条一条单独执行快,也能避免频繁的连接而消耗资源。 语法结构 创建的语法结构 create [definer = user]

  • 一次关于k8s kubectl top 和 contained ps 不一致的问题探究2021-09-19 23:33:02

    k8s kubectl top命令和contained内部 ps 看到的进程内存占用不一致。下午的时候,我被这个问题问倒了。具体如图 kubectltop-vmtop-vm 网上搜索了下,难得看到有认真研判问题的IT文章了。这篇帖子推荐给大家。   一、问题背景 二、Buffer & cache原理 三、缓存测试 四、生

  • SQL笔记052021-09-17 21:05:47

    存储过程 use stuinfo select * from sc where sno='2020005' create proc p1 as begin select * from sc where sno='2020005' end --执行 exec p1 --修改 alter proc p1 @sno varchar(13),@cno varchar(13) as begin select sc.*,cou.ccredit from sc,cou w

  • Lab2: system calls 引导2021-09-16 19:06:49

    Lab2: system calls 引导 System call tracing(moderate) 在本作业中,您将添加一个系统调用跟踪功能,该功能可能会在以后调试实验时对您有所帮助。您将创建一个新的trace系统调用来控制跟踪。它应该有一个参数,这个参数是一个整数“掩码”(mask),它的比特位指定要跟踪的系统调用。例

  • 02-查看CPU和内存2021-09-16 13:04:55

    1. 内存查看和清理 1.1 内存查看 [root@DO-NFS data]# free -h total used free shared buff/cache available Mem: 3.7G 236M 519M 179M 2.9G 3.0G Swap: 4.0G 34M

  • SQL-存储过程2021-09-14 10:06:09

    常用系统存储过程 1 exec sp_databases; --查看数据库 2 3 exec sp_tables; --查看表 4 5 exec sp_columns student;--查看列 6 7 exec sp_helpIndex student;--查看索引 8 9 exec sp_helpConstraint student;--约束 10 11 exec sp_stored_procedures; 12

  • Geometric deep learning: going beyond Euclidean data译文2021-09-12 11:59:27

    Geometric deep learning: going beyond Euclidean data(几何深度学习:超越欧几里得数据) 摘要: 许多科学领域研究具有非欧几里德空间的底层结构的数据。一些例子包括计算社会科学中的社会网络、通信中的传感器网络、脑成像中的功能网络、遗传学中的调节网络以及计算机图形学中的

  • 文件下载文件读取2021-09-11 22:03:38

    文件下载文件读取漏洞介绍 一些网站提供文件查看或文件下载功能,若对用户查看或下载的文件不做限制,则恶意用户就能够查看或下载任意敏感文件,这就造成了文件查看与下载漏洞。 任意文件读取漏洞 任意文件读取是属于文件操作漏洞的一种,一般任意文件读取漏洞可以读取配置信息甚至系统重

  • Android binder学习笔记4 - binder transact流程分析2021-09-10 22:29:51

    目录 1. 前言2. binder领域模型3. IPCThreadState::self()->transact|- -writeTransactionData|- -IPCThreadState::waitForResponse|- - -talkWithDriver|- - - -binder_thread_write|- - - -binder_thread_read 4. 总结参考文档 1. 前言 在Android binder学习笔记2

  • 基于zabbix_agent对主机进程监控的脚本及配置说明2021-09-10 07:31:22

    基于zabbix_agent对主机进程监控的脚本及配置说明 2015年12月22日 devops 暂无评论 1,532次浏览   说明:在被监控主机(已安装过zabbix agent)上创建自定义shell脚本,并配置zabbix_agentd.conf 文件和重启进程。在配置文件中定义的脚本和key的值要与web端配置的key一致,注意返回值

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有