V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  fanhaipeng0403  ›  全部回复第 15 页 / 共 30 页
回复总数  596
1 ... 11  12  13  14  15  16  17  18  19  20 ... 30  
2019-01-07 14:43:22 +08:00
回复了 JohnLou 创建的主题 问与答 大龄单身怎么办,有点忧伤。
26, 大 nmb
我都 28 了~

我不想这事
2019-01-07 11:48:58 +08:00
回复了 Coder1991 创建的主题 职场话题 得了这个病,怎么继续做程序员?
没人在乎这个,你就说久坐起来活动下,别人也无话可说。
前排与大佬合影
2019-01-06 15:42:23 +08:00
回复了 hxse 创建的主题 Python 请问 Python 中的 -> 是什么意思
type hint
2019-01-06 15:40:15 +08:00
回复了 tqknight 创建的主题 Python apply_async 多进程异步调用,子任务不执行,居然没找到原因
2019-01-06 15:40:10 +08:00
回复了 tqknight 创建的主题 Python apply_async 多进程异步调用,子任务不执行,居然没找到原因
Note that with asynchronous programming you don't need to manually deal with result queues - apply_async returns a AsyncResult instance which can be used to get the result: result.get(). This uses an underlying result (out-) queue and so you simply need to return in your target function. Also if you use result.get() and you passed a Queue instance as an argument to the target function it will raise a RuntimeError
2019-01-05 21:08:12 +08:00
回复了 simoncos 创建的主题 Python Python 功能点实现:函数级/代码块级计时器
@simoncos 可能没啥用 哈哈
2019-01-05 21:07:58 +08:00
回复了 simoncos 创建的主题 Python Python 功能点实现:函数级/代码块级计时器
2019-01-05 21:06:04 +08:00
回复了 simoncos 创建的主题 Python Python 功能点实现:函数级/代码块级计时器
卧槽 我刚写了个类似的文章~
2019-01-05 01:18:14 +08:00
回复了 smallgoogle 创建的主题 Python Linux 下 multiprocessing 的结束子进程问题
```
class CountdownTask:
def __init__(self):
self._running = True

def terminate(self):
self._running = False

def run(self, n):
while self._running and n > 0:
print('T-minus', n)
n -= 1
time.sleep(5)

c = CountdownTask()
t = Thread(target=c.run, args=(10,))
t.start()
c.terminate() # Signal termination
t.join() # Wait for actual termination (if needed)
```
2019-01-05 01:17:40 +08:00
回复了 smallgoogle 创建的主题 Python Linux 下 multiprocessing 的结束子进程问题
t.daeman =true
老大做完,小弟就不做了

t.join()
老大等小弟做完继续在做


class CountdownTask:
def __init__(self):
self._running = True

def terminate(self):
self._running = False

def run(self, n):
while self._running and n > 0:
print('T-minus', n)
n -= 1
time.sleep(5)

c = CountdownTask()
t = multiprocessing.Process(target=c.run, args=(10,))
t.start()
c.terminate() # Signal termination
t.join() # Wait for actual termination (if needed)
老大给小弟给信号



不知道理解的对不对、、、
ipython manage.py shell

%debug
2019-01-04 15:52:44 +08:00
回复了 zhangqilin 创建的主题 职场话题 后端工作 1 年 2 个月感慨
@liprais 不大么~
SEO:
深圳市成为智能交通系统有限公司 怎么样
深圳市成为智能交通系统有限公司 薪资待遇
深圳市成为智能交通系统有限公司 拖欠工资
深圳市成为智能交通系统有限公司 好不好
深圳市成为智能交通系统有限公司 无赖公司
深圳市成为智能交通系统有限公司 招聘信息
深圳市成为智能交通系统有限公司 信用怎么样
深圳市成为智能交通系统有限公司 企业架构
深圳市成为智能交通系统有限公司 公司氛围
深圳市成为智能交通系统有限公司 福利
深圳市成为智能交通系统有限公司 产品介绍
深圳市成为智能交通系统有限公司 企业咨询
深圳市成为智能交通系统有限公司 产品口碑
2019-01-03 12:46:16 +08:00
回复了 fanhaipeng0403 创建的主题 Python 分享个 celery 的监控脚本吧
@zhoudaiyu 看了~我最近也要处理这个事情~
db.session.close()

每次都关掉,绝对会解决
2019-01-03 11:35:10 +08:00
回复了 0x11901 创建的主题 职场话题 关于自身技术发展的疑惑?
和我想的差不多·~
1 ... 11  12  13  14  15  16  17  18  19  20 ... 30  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5365 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 38ms · UTC 08:40 · PVG 16:40 · LAX 00:40 · JFK 03:40
Developed with CodeLauncher
♥ Do have faith in what you're doing.