代码搜索:source
找到约 10,000 项符合「source」的源代码
代码结果 10,000
www.eeworm.com/read/273665/4201058
patch-source
#!/bin/sh -e
#
#
for patch in debian/patches/*.patch; do
echo '->'`basename $patch`:
patch -p1 --ignore-whitespace < $patch
done
# This code is currently not used because it creates a long version
www.eeworm.com/read/273665/4201059
unpatch-source
#!/bin/sh -e
#
#
# We want to reverse the patches in the opposite order we applied
# them, hence the 'ls|sort -r'.
for patch in `ls debian/patches/*.patch | sort -r`; do
patch -p1 -R --ignore-whites
www.eeworm.com/read/273665/4201139
patch-source
#!/bin/sh -e
#
#
for patch in debian/patches/*.patch; do
echo '->'`basename $patch`:
patch -p1 --ignore-whitespace < $patch
done
# This code is currently not used because it creates a long version
www.eeworm.com/read/273665/4201140
unpatch-source
#!/bin/sh -e
#
#
# We want to reverse the patches in the opposite order we applied
# them, hence the 'ls|sort -r'.
for patch in `ls debian/patches/*.patch | sort -r`; do
patch -p1 -R --ignore-whites
www.eeworm.com/read/273665/4201233
patch-source
#!/bin/sh -e
#
#
for patch in debian/patches/*.patch; do
echo '->'`basename $patch`:
patch -p1 --ignore-whitespace < $patch
done
# This code is currently not used because it creates a long version
www.eeworm.com/read/273665/4201234
unpatch-source
#!/bin/sh -e
#
#
# We want to reverse the patches in the opposite order we applied
# them, hence the 'ls|sort -r'.
for patch in `ls debian/patches/*.patch | sort -r`; do
patch -p1 -R --ignore-whites
www.eeworm.com/read/271651/4226017
h source.h
/*
* Copyright (C) 2003-2007 Funambol
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Fr
www.eeworm.com/read/271651/4226246
cpp source.cpp
/*
* Copyright (C) 2003-2007 Funambol
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Fr