代码搜索:split
找到约 9,328 项符合「split」的源代码
代码结果 9,328
www.eeworm.com/read/337546/3335048
kconfig
menu "I2O device support"
config I2O
tristate "I2O support"
depends on PCI
---help---
The Intelligent Input/Output (I2O) architecture allows hardware
drivers to be split into two parts: an
www.eeworm.com/read/327225/3463215
tests star.tests
if test $# = 0; then
exec "$THIS_SH" star.tests 1 abc 'd e f'
fi
# 'd e f' should be split into 3 separate args:
for a in $*; do echo ".$a."; done
# must produce .1 abc d e f.
for a in "$*"; do e
www.eeworm.com/read/327225/3463261
tests star.tests
if test $# = 0; then
exec "$THIS_SH" star.tests 1 abc 'd e f'
fi
# 'd e f' should be split into 3 separate args:
for a in $*; do echo ".$a."; done
# must produce .1 abc d e f.
for a in "$*"; do e
www.eeworm.com/read/324920/3490994
c setup.c
/*
* Unmaintained SGI Visual Workstation support.
* Split out from setup.c by davej@suse.de
*/
#include
#include
#include
#include
www.eeworm.com/read/324920/3493897
kconfig
menu "I2O device support"
config I2O
tristate "I2O support"
depends on PCI
---help---
The Intelligent Input/Output (I2O) architecture allows hardware
drivers to be split into two parts: an
www.eeworm.com/read/321483/3535243
t getfullpathname.t
use strict;
use Test;
use Win32;
plan tests => 16;
my $cwd = Win32::GetCwd;
my @cwd = split/\\/, $cwd;
my $file = pop @cwd;
my $dir = join('\\', @cwd);
ok(scalar Win32::GetFullPathName('.'), $cwd);
www.eeworm.com/read/318961/3559956
tests star.tests
if test $# = 0; then
exec "$THIS_SH" star.tests 1 abc 'd e f'
fi
# 'd e f' should be split into 3 separate args:
for a in $*; do echo ".$a."; done
# must produce .1 abc d e f.
for a in "$*"; do e
www.eeworm.com/read/318961/3560002
tests star.tests
if test $# = 0; then
exec "$THIS_SH" star.tests 1 abc 'd e f'
fi
# 'd e f' should be split into 3 separate args:
for a in $*; do echo ".$a."; done
# must produce .1 abc d e f.
for a in "$*"; do e
www.eeworm.com/read/316872/3606450
c xfrm4_state.c
/*
* xfrm4_state.c
*
* Changes:
* YOSHIFUJI Hideaki @USAGI
* Split up af-specific portion
*
*/
#include
#include
#include
#include
www.eeworm.com/read/307309/3725336
tests star.tests
if test $# = 0; then
exec "$THIS_SH" star.tests 1 abc 'd e f'
fi
# 'd e f' should be split into 3 separate args:
for a in $*; do echo ".$a."; done
# must produce .1 abc d e f.
for a in "$*"; do e