代码搜索:else

找到约 10,000 项符合「else」的源代码

代码结果 10,000
www.eeworm.com/read/146056/5740767

in was.in

#!/bin/sh # # $Id: WAS.in,v 1.1 2004/12/20 16:19:37 sunjd Exp $ # # WAS # # Description: Manages a Websphere Application Server as an HA resource # # # Author: Alan Robertson # Support: linux-ha-dev@
www.eeworm.com/read/144920/5748244

asp maillink.asp

www.eeworm.com/read/136827/5846250

cpp monthview.cpp

/********************************************************************** ** Copyright (C) 2000-2005 Trolltech AS. All rights reserved. ** ** This file is part of the Qtopia Environment. ** ** This pr
www.eeworm.com/read/136571/5869527

c getopt.c

/* Getopt for GNU. NOTE: getopt is now part of the C library, so if you don't know what "Keep this file name-space clean" means, talk to drepper@gnu.org before changing it! Copyright
www.eeworm.com/read/135691/5882294

asp maillink.asp

www.eeworm.com/read/135153/5887260

c srvclip.c

#include "device.h" #if DYNAMICREGIONS #include "srvclip2.c" #else #include "srvclip1.c" #endif
www.eeworm.com/read/135153/5887354

c winclip.c

#include "device.h" #if DYNAMICREGIONS #include "winclip2.c" #else #include "winclip1.c" #endif
www.eeworm.com/read/135153/5887568

c devclip.c

#include "device.h" #if DYNAMICREGIONS #include "devclip2.c" #else #include "devclip1.c" #endif
www.eeworm.com/read/133772/5902119

c tcp_input.c

//========================================================================== // // src/sys/netinet/tcp_input.c // //==========================================================================
www.eeworm.com/read/131315/5936110

move-if-change

#!/bin/sh # Like mv $1 $2, but if the files are the same, just delete $1. # Status is 0 if $2 is changed, 1 otherwise. if test -r $2 then if cmp $1 $2 > /dev/null then echo $2 is unchanged rm -f $1 el