e.subject.part.findLinksInto().each(function (node) { console.log(node.data); that.myDiagram.model.setDataProperty(node.data, "prevSeqId", 1); }); ...
分类:
Web程序 时间:
2020-07-28 22:07:16
阅读次数:
112
栈 用数组实现一个顺序栈 用链表实现一个链式栈 编程模拟实现一个浏览器的前进、后退功能 用数组实现一个顺序栈 class Stack(object): def __init__(self): self.stack=[] def push(self,item): self.stack.append(i ...
分类:
其他好文 时间:
2020-07-19 11:29:50
阅读次数:
48
一、问题分析使用docker容器起服务,容器是基于openjdk:8-jre-alpine的,里面没有没有相关的内存分析工具,如jmap,jstack等解决参考文档:https://www.codeleading.com/article/40862545024/二、问题解决2.1、容器安装openj... ...
分类:
编程语言 时间:
2020-07-14 21:51:33
阅读次数:
127
[root@kunpeng82 Ryu-SDN-IP]# ./bin/sdnip-mgr --sdn-ip-cfg-file ./config.json --observe-links sdnip.arp_proxy sdnip.fwd_bgp sdnip.sdn_ip Traceback (mos ...
分类:
其他好文 时间:
2020-07-12 14:36:42
阅读次数:
94
Apache概述 ''' Apache HTTPD Server 简称 Apache,是 Apache 软件基金会的一个开源的网页服务器, 可以在大多数计算机操作系统中运行,由于其多平台和安全性被广泛使用, 是最流行的 Web 服务器端软件之一。它快速、可靠并且可通过简单的 API 扩展,将 Per ...
分类:
Web程序 时间:
2020-07-05 19:25:06
阅读次数:
72
02-线性结构3 Reversing Linked List (25分) Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. Fo ...
分类:
其他好文 时间:
2020-07-04 22:36:18
阅读次数:
69
其中:lianxi目录为我已下载好各类的离线库包(按自己的使用需要去下载),ceshi2.txt是我本次想要安装的库列表,例:MarkupSafe==1.1.1 (2env) [root@xxxxx]$ pip install --no-index --find-links=lianxi -r ./ ...
分类:
其他好文 时间:
2020-07-01 20:28:21
阅读次数:
40
第一种 linux下载之后谷歌浏览器的位置: /opt/google/chrome 启动谷歌:./google-chrome --no-sandbox 第二种 使用命令访问网站的,没有elinks可以yum -y install elinks elinks --dump http://www.bai ...
分类:
Web程序 时间:
2020-06-29 00:52:37
阅读次数:
103
wget在Linux下默认已经安装,Windows下需要自行安装。 Windows下载地址:http://wget.addictivecode.org/Faq.html#download,链接:http://pan.baidu.com/s/1bp3rB9H 密码:jt9v 常用命令(递归下载网站): ...
分类:
其他好文 时间:
2020-06-27 13:19:06
阅读次数:
124
Reversing Linked List Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For example, give ...
分类:
其他好文 时间:
2020-06-25 14:13:09
阅读次数:
56