虫虫首页|资源下载|资源专辑|精品软件
登录|注册

leave

  • symbian os c++ s60 下的一个简单leave例程

    symbian os c++ s60 下的一个简单leave例程,短小精致

    标签: symbian leave s60 os

    上传时间: 2015-04-04

    上传用户:yyyyyyyyyy

  • 1. It is located in the root directory - SecurityBuilderDemo.exe. leave password box blank and click

    1. It is located in the root directory - SecurityBuilderDemo.exe. leave password box blank and click on Security button in order to Add/Remove users and set user rights. Once you entered Security dialog you may select your Supervisor password. 2. Click OK when finished configuring users. Don t forget to disable some features in order to see what happens with GUI elements - menus, and buttons.

    标签: SecurityBuilderDemo directory password located

    上传时间: 2014-01-23

    上传用户:chongcongying

  • leave Management System

    leave Management System

    标签: Management System leave

    上传时间: 2013-11-25

    上传用户:ljt101007

  • 留一模型选择法leave-one-out model selection

    留一模型选择法leave-one-out model selection,适合支持向量机分类和回归时进行参数选择。

    标签: leave-one-out selection model 模型

    上传时间: 2014-10-12

    上传用户:一诺88

  • 信号调理电路和电源转换

      Linear Technology has a sabbatical program. Every fiveyears employees are granted sabbatical leave, which maylast up to six weeks. You have 18 months from each fiveyear employment anniversary to take the leave. Sabbaticalis fully company paid and has no restrictions. The time isyours to do with as you please.

    标签: 信号调理电路 电源转换

    上传时间: 2013-10-19

    上传用户:851197153

  • DS1820 C51 子程序 (一线数据传输)

    //芯片资料请到www.elecfans.com查找 //DS1820 C51 子程序//这里以11.0592M晶体为例,不同的晶体速度可能需要调整延时的时间//sbit DQ =P2^1;//根据实际情况定义端口 typedef unsigned char byte;typedef unsigned int  word; //延时void delay(word useconds){  for(;useconds>0;useconds--);} //复位byte ow_reset(void){  byte presence;  DQ = 0; //pull DQ line low  delay(29); // leave it low for 480us  DQ = 1; // allow line to return high  delay(3); // wait for presence  presence = DQ; // get presence signal  delay(25); // wait for end of timeslot  return(presence); // presence signal returned}     // 0=presence, 1 = no part //从 1-wire 总线上读取一个字节byte read_byte(void){  byte i;  byte value = 0;  for (i=8;i>0;i--)  {    value>>=1;    DQ = 0; // pull DQ low to start timeslot    DQ = 1; // then return high    delay(1);  //for (i=0; i<3; i++);     if(DQ)value|=0x80;    delay(6); // wait for rest of timeslot  }  return(value);} //向 1-WIRE 总线上写一个字节void write_byte(char val){  byte i;  for (i=8; i>0; i--) // writes byte, one bit at a time  {    DQ = 0; // pull DQ low to start timeslot    DQ = val&0x01;    delay(5); // hold value for remainder of timeslot    DQ = 1;    val=val/2;  }  delay(5);} //读取温度char Read_Temperature(void){  union{    byte c[2];    int x;  }temp;   ow_reset();  write_byte(0xCC); // Skip ROM  write_byte(0xBE); // Read Scratch Pad  temp.c[1]=read_byte();  temp.c[0]=read_byte();  ow_reset();  write_byte(0xCC); //Skip ROM  write_byte(0x44); // Start Conversion  return temp.x/2;}

    标签: 1820 C51 DS 程序

    上传时间: 2013-11-03

    上传用户:hongmo

  • Documentation and source code Copyright (C) 1985 by Mark E. Mallett permission is granted to distr

    Documentation and source code Copyright (C) 1985 by Mark E. Mallett permission is granted to distribute this document and the code indiscriminately. Please leave credits in place, and add your own as appropriate.

    标签: E. Documentation permission Copyright

    上传时间: 2013-12-21

    上传用户:wlcaption

  • 编写本程序时

    编写本程序时,所使用的是传输层的UDP协议,不分服务器和客户端,采用对等实体的形似实现信息的传输。运用java.net.DatagramPacket类和java.net.DatagrameSocket类实现套接和数据的传输。并且采用组播形式进行数据信息的传递。使用三个简单协议数据单元(PDU),即JOIN PDU,leave PDU,MESSAGE PDU。分别表示首次连接时组播的数据报、用户离开时组播的数据报,用户输入完消息时组播的数据报。

    标签: 编写 程序

    上传时间: 2014-06-22

    上传用户:无聊来刷下

  • Parking Lot Simulation: Parking lot attendants often park cars bumper-to-bumper, several cars deep.

    Parking Lot Simulation: Parking lot attendants often park cars bumper-to-bumper, several cars deep. This maximizes the number of cars they can fit into a parking lot at the expense of complicating the process of retrieving someone s car when they want to leave. Consider the case of a person wanting to leave the parking lot but their car is parked in the back of a row of cars. In this case, all the cars parked in front of this person s car must be temporarily moved to allow this person to leave.

    标签: Parking cars bumper-to-bumper Simulation

    上传时间: 2016-02-15

    上传用户:lepoke

  • 一款用JAVA制作开发的小型聊天软件

    一款用JAVA制作开发的小型聊天软件,里面附有安装程序和JAVA源代码。 Visual Chat 1.91 Developer Edition - Customize the Visual Chat code regarding your own requirements - Use customchatdev.html for developing / testing - Create .jar and .cab-files containing client-specific .class-files and the images-folder (use zip and cabarc compressing tools) - Adapt the customchat.html file - Upload all the files to your webserver - Start the ChatServer by invoking java at.ac.uni_linz.tk.vchat.ChatServer [port [server-key]] from your commandline - I kindly ask you to leave copyright and credit information in the InfoPanel.class as it is - but you are invited to add your own text. In case of violations I will consider excluding this class from the source in the future.

    标签: JAVA 软件

    上传时间: 2014-09-05

    上传用户:龙飞艇