PLL共有四种工作模式,只有理解了这四种工作模式的特点,才能在设计中选用恰当的模式,完成自己设计的预期功能。这四种工作模式分别是普通模式(Normal Mode)、零延迟缓冲模式(Zero Delay Buffer Mode)、非补偿模式(No Compensation Mode)、源同步模式(So...
分类:
其他好文 时间:
2014-08-07 15:39:00
阅读次数:
292
如果uwsgi错误中提示
*** no app loaded. going in full dynamic mode ***
执行
[plain] view
plaincopy
aptitude install uwsgi-plugin-python
之后重启uwsgi...
分类:
其他好文 时间:
2014-08-07 13:16:10
阅读次数:
185
A system switches between non-secure and secure modes by making processes, applications, and data for the non-secure mode unavailable to the secure mo...
分类:
其他好文 时间:
2014-08-07 12:55:00
阅读次数:
318
题目:Implement strStr().Returns a pointer to the first occurrence of needle in haystack, or null if needle is not part of haystack.题解:其实我觉得这题。。为啥不给个更明确....
分类:
编程语言 时间:
2014-08-07 12:43:19
阅读次数:
227
RHEL6.5---查看服务器的内存:[root@linuxcast/]#free-mtotalusedfreesharedbufferscachedMem:1870179476062862-/+buffers/cache:8681001Swap:409504095---查看服务器cpu信息[root@linuxcast/]#lscpuArchitecture:x86_64CPUop-mode(s):32-bit,64-bitByteOrder:LittleEndianCPU(..
分类:
Web程序 时间:
2014-08-07 07:31:30
阅读次数:
263
小猪的Android入门之路 Day 4 - part 3
Android事件处理机制之——Handler消息传递机制
在前面两个部分中,我们对于android的两种事件处理机制:监听与回调进行了深入的学习;
貌似就学完android的事件处理机制了,其实这两个仅仅是发生了触摸啊之类做出的事件响应;
而今天这一Part要讲的是修改Activity中的UI组件时发生一些信息传递;相信大家都知道,我们只能够
主线程中去修改Activity中的UI组件,但是我们需要在一个自定义线程中周期性地修改某个UI组件的
值...
分类:
移动开发 时间:
2014-08-07 00:50:27
阅读次数:
369
3.Your database is in ARCHIVELOG mode. You have two online redo log groups, each of which contains one redo member. When you attempt to start the data...
分类:
其他好文 时间:
2014-08-06 21:48:22
阅读次数:
610
原文地址:http://infiniteloop.in/blog/quick-python-performance-optimization-part-i/
往往小的改变却能带来大的性能提升,
下面说下python中的几点性能优化。
1.使用timeit模块
2.减少函数的调用次数
3.使用xrange代替range
4.''.join()代替+,+=
5.while 1 代替 wh...
分类:
编程语言 时间:
2014-08-06 19:28:32
阅读次数:
247
注意,其中的/dev/ttyACM0 是串口设备,后面描述。
/etc/ppp/chat-wcdma
#!/bin/sh
#
# This is part 2 of the ppp-on script. It will perform the connection
# protocol for the desired connection.
#
exec /usr/sbin/chat...
分类:
其他好文 时间:
2014-08-06 19:24:02
阅读次数:
362
Context.MODE_PRIVATE:为默认操作模式,代表该文件是私有数据,只能被应用本身访问,在该模式下,写入的内容会覆盖原文件的内容,如果想把新写入的内容追加到原文件中。可以使用Context.MODE_APPEND
Context.MODE_APPEND:模式会检查文件是否存在,存在就往文件追加内容,否则就创建新文件。
Context.MODE_WORLD_READABLE和Cont...
分类:
移动开发 时间:
2014-08-06 18:59:02
阅读次数:
302