代码搜索:split
找到约 9,328 项符合「split」的源代码
代码结果 9,328
www.eeworm.com/read/332387/3398889
js namespace.js
_global_ = this;
function Namespace(name, f) {
var n = name.split(".");
for (var o = _global_, i = 0, l = n.length; i < l; i++) {
o = o[n[i]] = o[n[i]] || {};
}
if (f) f();
}
www.eeworm.com/read/318792/3562772
svn-base threads.txt.svn-base
Old threading method: slice-based
application calls x264
x264 runs B-adapt and ratecontrol (serial)
split frame into several slices, and spawn a thread for each slice
wait until all threads are done
d
www.eeworm.com/read/316872/3604601
txt baycom.txt
LINUX DRIVERS FOR BAYCOM MODEMS
Thomas M. Sailer, HB9JNX/AE4WA,
!!NEW!! (04/98) The drivers for the baycom modems have been split into
separate drivers as they d
www.eeworm.com/read/304811/3785132
cpp ex_splitdoc.cpp
// Ex_SplitDoc.cpp : implementation of the CEx_SplitDoc class
//
#include "stdafx.h"
#include "Ex_Split.h"
#include "Ex_SplitDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
s
www.eeworm.com/read/292705/3949253
txt baycom.txt
LINUX DRIVERS FOR BAYCOM MODEMS
Thomas M. Sailer, HB9JNX/AE4WA,
!!NEW!! (04/98) The drivers for the baycom modems have been split into
separate drivers as they d
www.eeworm.com/read/292705/3949493
h dir.h
/*
* dir.h - Header file for dir.c
*
* Copyright (C) 1997 R間is Duchesne
*/
#define ITERATE_SPLIT_DONE 1
enum ntfs_iterate_e {
BY_POSITION,
BY_NAME,
DIR_INSERT
};
/* not all fiel
www.eeworm.com/read/289075/3996053
readme
This platform actually assumes that the the cc2430em board has been attached
to the RF04EB. Who knows they might be split up some day, say if someone
wants to use the RF04EB with say a cc1010...
www.eeworm.com/read/278162/4146973
svn-base threads.txt.svn-base
Old threading method: slice-based
application calls x264
x264 runs B-adapt and ratecontrol (serial)
split frame into several slices, and spawn a thread for each slice
wait until all threads are done
d
www.eeworm.com/read/277987/4148276
py grid.py
#!/usr/bin/python
import os, sys
import Queue
import getpass
import re
from threading import Thread
from string import find, split, join, atof
is_win32 = (sys.platform == 'win32')
# svmtrain and gnu
www.eeworm.com/read/275731/4172030
am makefile.am
litesqlincludedir=$(includedir)/litesql
litesqlinclude_HEADERS=backend.hpp except.hpp operations.hpp selectquery.hpp types.hpp cursor.hpp expr.hpp persistent.hpp split.hpp upda