1.
原创 2023-10-02 17:53:49
236阅读
主要是为了熟悉Linux下的信号等相关知识。
原创 2022-02-02 15:02:01
1095阅读
CSAPP Lab4 Cache Lab: Understanding Cache Memories 我的2.3是不是全网能搜到的代码中,miss最少的(雾 https://www.zybuluo.com/SovietPower/note/1795924 参考: https://www.jiansh ...
转载 2021-05-23 01:10:00
885阅读
2评论
CSAPP Lab3: The Attack Lab tags: CSAPP https://www.zybuluo.com/SovietPower/note/1801471 参考: https://blog.csdn.net/AI_lalaland/article/details/10515384 ...
转载 2021-06-12 00:28:00
658阅读
2评论
Event Type: Error Event Source: Application Management Event Category: None Event ID: 108 Date: 3/22/2007 Time: 10:52:37 AM User: ...
转载 2008-04-10 12:22:00
114阅读
2评论
https://leetcode-cn.com/contest/weekly-contest-102/problems/sort-array-by-parity/水题 我的解决方案:class Solution { public int[] sortArrayByParity(int[] A) { int[] B = new int[A.length]; int
原创 2022-02-28 13:47:14
46阅读
https://leetcode-cn.com/contest/weekly-contest-102/problems/sort-array-by-parity/水题 我的解决方案:class Solution { public int[] sortArrayByParity(int[] A) { int[] B = new int[A.length]; ...
原创 2021-06-29 13:48:03
157阅读
Examine the following values of the initialization parameters in the database having the SID ORCL:BACKGROUND_DUMP_DEST=/u01/app/oracle/product/11.1.0/
转载 2017-11-16 17:06:00
65阅读
2评论
You want to import schema objects of the HR user using Oracle Data Pump from the development database, DEVDB, to the production database, PRODDB. A da
转载 2017-12-11 17:05:00
176阅读
2评论
# 学习如何实现 CUDA 10.2 与 PyTorch 的搭配 对于新入行的开发者来说,理解如何在本地环境中设置 PyTorch 和 CUDA 的组合是一个重要的步骤。这里我将向你详细介绍整个流程,并提供必要的代码和示例。这篇文章将帮助你一步步完成设置,让你能够充分利用 GPU 的能力来加速 PyTorch 的运算。 ## 整体流程 以下是实现 CUDA 10.2 支持的 PyTorch
原创 2024-08-07 06:05:51
127阅读
菜单,角色,菜单-角色,用户-角色的增删改查 角色 添加 执行添加时,先从缓存中拿到所有角色,如果没有和表中重复的角色,那么执行添加,如果有,不允许添加 删除 执行删除时,先从缓存中拿到所有角色,如果没有该角色,删除失败, 修改 执行修改时,先从缓存中拿到所有角色,如果没有该角色,修改失败,有角色, ...
转载 2021-10-21 21:26:00
38阅读
链接:http://codeforces.com/problemset/problem/102/A #include using namespace std; int a[105],ma[105][105]; int main() { int n,m; scanf("%d%d",&n,&m); for(int i=1;i<=n;i++) sca
原创 2023-08-15 17:32:17
26阅读
本题是广度优先遍历(BFS)实现树的层次遍历,使用队列实现。 class Solution { public: vector<vector<int>> levelOrder(TreeNode* root) { vector<vector<int>> res; queue<TreeNode*>q;
SGU_102     一开始直接用gcd暴力也能过,后来看了别人的解题报告发现可以用欧拉函数,以前用过一次但现在忘记了,于是又学了一遍。 #include<stdio.h>#include<string.h>#include<math.h>int N;void solve(){int i, j, k = (int)sqrt(N + 1), res = N;f
转载 2011-12-09 19:09:00
37阅读
2评论
目录 一、Series数据结构 1.1 Series支持NumPy模块的特性(下标) 1.2 Series支持字典的特性(标签) 1.3 Series缺失数据处理 二、DataFrame数据结构 2.1 产生时间对象数组:date_range 三、DataFrame属性 四、DataFrame取值
转载 2019-11-10 09:31:00
115阅读
2评论
因叶较大,密被灰白色微柔毛及疏刚毛;花冠大,黄色或金黄色,极易识别。落叶灌木,高1~4m。老枝光滑,带褐色;幼枝有短柔毛。单叶互生,叶柄
原创 8月前
57阅读
# 谷歌大数据的探索之旅:了解Hadoop ## 引言 在信息爆炸的今天,数据的管理和处理变得尤为重要。大数据技术逐渐成为企业运营和决策过程中不可或缺的一部分,而Hadoop是当下最流行的大数据框架之一。本文将深入探讨Hadoop的基本概念、核心组件、应用场景,并通过代码示例帮助你更好地理解其运作原理。 ## 什么是Hadoop? Hadoop是一个开源的大数据处理框架,最初由Doug C
原创 2024-10-27 03:12:44
10阅读
qos:three steps or layersclass-map:what to match(determine what are you going to match)policy-map:what to do(for the traffic you matched)service-policy:where to do(for the policy)section 1R1 is experi
原创 2008-12-17 11:15:53
769阅读
换了个公司,有一个非常不错的lab。试着自己搭一个安全的试验台。老规矩,blog用来把很多步骤,容易遗忘的东西记录下来,日后方便查阅。topology莫名其妙烂了个UCS刀片,我又控制不了什么,那正好一个个安装过程都截图下来把。Windows2016安装部分会充当DNS,DomainController,CA服务器。参考视频,https://www.youtube.com/watch?v=hxMS
原创 2019-05-19 19:36:24
1139阅读
在我之前的文章 “Elasticsearch:Painless scripting 编程实践” 中,我对 Painless 的编程做了一个介绍。Painless 的编程很强大,但是调试来说确实不是很容易。在我之前的文章 “Elasticsearch:Painless 编程调试” 有一些介绍关于如何进行调试。尽管如此,调试 Painless 有时不是一件非常容易的事。在 Kibana 中,它集成了一
  • 1
  • 2
  • 3
  • 4
  • 5