代码搜索:except
找到约 10,000 项符合「except」的源代码
代码结果 10,000
www.eeworm.com/read/363596/9943644
h assert.h
/* $Id: assert.h 6 2007-01-22 00:45:22Z drhanson $ */
#undef assert
#ifdef NDEBUG
#define assert(e) ((void)0)
#else
#include "except.h"
extern void assert(int e);
#define assert(e) ((void)((e)||(RAISE
www.eeworm.com/read/167768/9953051
prg spaceto0.prg
* spaceto0.prg
* 将字符串中的空格换为0
parameters h
private except eachlen,alllen
l=len(h)
for j=1 to l
*@ 9,10 say "spaceto0"+str(j)
k=substr(h,j,1)
k=iif(k=" ","0",k)
h=left(h,j-1)+k+subs
www.eeworm.com/read/350392/10745019
h saverestore.h
/*
* TOPPERS/JSP Kernel
* Toyohashi Open Platform for Embedded Real-Time Systems/
* Just Standard Profile Kernel
*
* Copyright (C) 2000-2003 by Embedded and Real-Time Systems La
www.eeworm.com/read/461809/7219167
inc ntoskrnl.inc
; made with protoize by f0dder
; with many hand-made fixes (__cdecl)
; Four-F, four-f@mail.ru
; last update 10-Dec-2002
ZwYieldExecution PROTO STDCALL
ZwWriteFile PROTO STDCALL :DWORD, :DWORD,
www.eeworm.com/read/461264/7230302
readme structure.readme
pro/structure December 2006
This directory contains IDL procedures for working with IDL structure
variables. The *procedure* CREATE_STRUCT will d
www.eeworm.com/read/144186/12810818
py bencode.py
# Written by Petru Paler
# see LICENSE.txt for license information
from types import IntType, LongType, StringType, ListType, TupleType, DictType
import re
from cStringIO import StringIO
int_filter
www.eeworm.com/read/329335/12959536
inc ntoskrnl.inc
; made with protoize by f0dder
; with many hand-made fixes (__cdecl)
; Four-F, four-f@mail.ru
; last update 10-Dec-2002
ZwYieldExecution PROTO STDCALL
ZwWriteFile PROTO STDCALL :DWORD, :DWORD,
www.eeworm.com/read/242797/12985280
test-network
#!/usr/bin/python
import dbus
bus = dbus.SystemBus()
manager = dbus.Interface(bus.get_object('org.bluez', '/org/bluez'),
'org.bluez.Manager')
conn = manager.ActivateService('network')
netw