CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 释放资源

搜索资源列表

  1. Thread

    0下载:
  2. 进程和线程都是操作系统的概念。进程是应用程序的执行实例,每个进程是由私有的虚拟地址空间、代码、数据和其它各种系统资源组成,进程在运行过程中创建的资源随着进程的终止而被销毁,所使用的系统资源在进程终止时被释放或关闭。-Process and thread is the concept of the operating system. The implementation process is an instance of the application, each process is by th
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:26455
    • 提供者:zhangchenjuan
  1. Minitab

    1下载:
  2. 文件夹的创建,文件夹(文件)的移动改名删除复制等操作。资源文件的释放。-To create the folder, files (documents) mobile renamed remove replication. The release of a resource file.
  3. 所属分类:File Operate

    • 发布日期:2017-05-17
    • 文件大小:4343555
    • 提供者:飞影
  1. InstallDlg

    0下载:
  2. 该程序是我写的一个案例,跟360一样,把所有的EXE,DLL等一些资源文件装载到一个EXE文件中,保持成2进制,运行后在释放出所有的DLL或者其他的资源文件。大家可以去参考参考,VC群:13687118,网站www.ruoko.com-for Install Exe ..welecome to my http...
  3. 所属分类:File Operate

    • 发布日期:2017-06-09
    • 文件大小:16168908
    • 提供者:李平
  1. ReleaseTheResourceFromEXE

    0下载:
  2. 本程序主要是用来讲解如何将一些文件导入VC资源中,并在运行EXE文件时释放出这些文件。本程序可在运行时释放本身的源程序。-This procedure is mainly used to explain how some of the file into VC resources, and run the EXE file in the release of these documents. This program can run free in the source code itself.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:314385
    • 提供者:Nick
  1. MyTestOfReleaseTheResourceFromEXE

    0下载:
  2. 运行EXE文件,将会释放本程序的源码。本程序主要是说明如何将一些资源加入工程的资源中并运行EXE文件时释放出这些资源。-Run the EXE file, it will release the source code of this program. This procedure is to specify how the resources of some resources to join the project and run the EXE file in the release of
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:47131
    • 提供者:Nick
  1. junit4.7

    0下载:
  2. 由于JUnit4不再受命名的限制,所以应该划分更细粒度的测试来完成,一个方法的正确,异常,错误及边界数据完全可以分开来写测试方法。由于大部分情况资源只用加载和释放一次就足够,大大提高的测试的速度。-It can improve the test speed,please enjoy it.
  3. 所属分类:Java Develop

    • 发布日期:2017-05-04
    • 文件大小:1339953
    • 提供者:Tingting Yu
  1. Job-scheduling

    0下载:
  2. 在多通道批处理系统中,作业的运行除了考虑作业之间的优先关系之外,还必须考虑系统能否为其所需的资源分配资源。因为在多通道批处理系统中同时有不只一道作业在CPU中运行,这样就会导致某个作业需要的资源正在被另一个作业占用,这样就会导致无法分配资源的作业进入等待状态,直到该资源被其它作业释放后才能重新激活。-Batch processing in multi-channel system, jobs run in addition to considering the precedence relati
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-29
    • 文件大小:142564
    • 提供者:xiaoxiao
  1. ResToFile

    0下载:
  2. 实现了从工程资源文件中释放文件到指定目录,可用于制作安装程序等-Engineering resources from the file release the file to a specified directory
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:61482
    • 提供者:brucetony
  1. semaphore

    0下载:
  2. 信号量(Semaphore)也被称为信号灯,常常作为在多线程环境下的同步与互斥机制。它负责协调各个线程,以保证它们能够正确、合理的使用公共资源。信号量分为单值和多值两种。单值信号量只能被一个线程获得,而多值信号量可以被若干个线程获得。 本实验是一个信号量实验,父进程作为生产者释放信号量,子进程作为消费者申请信号量。 实验环境 Redhat9.0-Semaphore (Semaphore), also known as signal lights, often in multi-th
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:962
    • 提供者:tiger
  1. Clock

    0下载:
  2. C#实现闹钟功能,字符串截取、匹配,对文本文件的stream流操作,用文本来保存用户的记录,截取其中的字符串来判断时间是否已经到和截取记录中的用户提示信息和音乐地址等。暂时不会解决内存的释放问题,导致运行的时候会占用20M多的内存资源-C# to achieve the alarm function, the string capture, matching, stream flow of the text file operations to save the user with a text
  3. 所属分类:CSharp

    • 发布日期:2017-05-06
    • 文件大小:1264373
    • 提供者:kouk23
  1. Pointers

    0下载:
  2. 在JAVA 和 C# 中都有垃圾回收功能,程序员在分配一段内存后可以不再理会,而由垃圾回收自动回收,从而使程序员从复杂的内存管理中解脱出来。这是JAVA 和 C#的一大优点。而C++程序员在用 new 分配了一段内存后,还必须用 delete 释放,否则将造成资源泄漏。因此,一些C++ 书上经常告诫程序员:要养成好的习惯,new 与 delete 要成对出现,时刻记住将内存释放回系统。但是,事情只是这么简单吗?-In both JAVA and C#, garbage collection, i
  3. 所属分类:Java Develop

    • 发布日期:2017-04-06
    • 文件大小:15789
    • 提供者:欧阳丹
  1. VCPPduoxiancheng

    0下载:
  2. 进程和线程都是操作系统的概念。进程是应用程序的执行实例,每个进程是由私有的虚拟地址空间、代码、数据和其它各种系统资源组成,进程在运行过程中创建的资源随着进程的终止而被销毁,所使用的系统资源在进程终止时被释放或关闭。-Processes and threads of the operating system concept. Implementation process is an instance of the application, each process is private virtu
  3. 所属分类:OS Develop

    • 发布日期:2017-04-17
    • 文件大小:25350
    • 提供者:xiao
  1. XJ9300-CSharp-scan-head

    0下载:
  2. 本源代码为欣技9300条码扫描器激光头激活调用的例子,使用C#语言开发而成,里面包括激光头的激活,资源释放等等又关于开发中使用到的各种方法,事件。-Source code scanners for the CipherLab 9300 yards examples of laser activation call, made using the C# language development, which includes the activation of the laser head, th
  3. 所属分类:CSharp

    • 发布日期:2017-03-22
    • 文件大小:463421
    • 提供者:拜晓东
  1. MemoryCollectTest

    0下载:
  2. C#的垃圾回收机制,使我们编程时,不用想C++的时代一样,小心翼翼的手动释放内存,但当程序很大,并且频繁的增加对象时,内存不断增加。直到系统无法吃得消。本程序演示了如何手动的释放不用的内存,优化程序占用的windows资源。-C# garbage collection, so that our programming, do not want the C++ era, carefully release the memory manually, but a great program, and
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-16
    • 文件大小:409552
    • 提供者:xvdongming
  1. mfc

    0下载:
  2. 进程和线程都是操作系统的概念。进程是应用程序的执行实例,每个进程是由私有的虚拟地址空间、代码、数据和其它各种系统资源组成,进程在运行过程中创建的资源随着进程的终止而被销毁,所使用的系统资源在进程终止时被释放或关闭。-void CSingleThreadDlg::OnSleepSixSecond() { Sleep(6000) //延时6秒 }
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:21032
    • 提供者:蒋碧君
  1. UpDate

    0下载:
  2. 根据配置,生成服务端,类似灰鸽子生成服务端的下载者,仅用于学习VB资源释放与通讯,严禁非法破坏活动,与本人无关!-Depending on the configuration, build server, similar to the gray pigeons generated by the server to download only release resources for learning VB and communication, is strictly prohibited il
  3. 所属分类:Remote Control

    • 发布日期:2017-04-09
    • 文件大小:187625
    • 提供者:odifja
  1. ModalDialogDeleteAndRelease

    0下载:
  2. 模态对话框的创建、删除与资源的释放的过程-Modal dialog box to delete and release
  3. 所属分类:Dialog_Window

    • 发布日期:2017-04-24
    • 文件大小:28689
    • 提供者:daniel
  1. TestResRelease

    0下载:
  2. 可以先将文件导入到资源区,再待运行之后释放文件-First the file into the resource area, then to be running after the release of the documents..
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-16
    • 文件大小:46954
    • 提供者:you name
  1. shellcodeEXE

    0下载:
  2. 非资源的方式释放EXE文件,可以学习下。-Non-resource way to release the EXE file, you can learn under.
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:68431
    • 提供者:yinlee
  1. ftp_lab

    0下载:
  2. 从命令行终端获得ftp 服务器的域名或 IP 地址字符串,转换为网络字节序的二进制 格式的IP 地址。 使用上述IP 地址和默认的21端口,创建一个到ftp 服务器的TCP 连接,用于传输 所有的控制命令。 在传输控制命令的TCP 连接中循环处理,将用户端的标准输入解释为FTP 协议的 控制命令并发送,根据ftp 服务器回复的响应命令执行一些本地操作或远程控制。 准备进行数据传输时,创建一个新的 TCP 连接,根据需要,将接收到的数据发送到 标准输出或存储到文件
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:8511
    • 提供者:tangj
« 1 2 3 4 5 6 78 9 10 »
搜珍网 www.dssz.com