代码搜索:does

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

代码结果 10,000
www.eeworm.com/read/163959/5504145

java resolvablenode.java

// $Id: ResolvableNode.java,v 1.7 2005/02/27 05:08:47 oneovthafew Exp $ package org.hibernate.hql.ast; import antlr.SemanticException; import antlr.collections.AST; /** * The contract for expressio
www.eeworm.com/read/162614/5527635

x 20030125-1.x

# Only Linux does inlclude all c99 functions at the moment. if { ! [istarget "*linux*"] } { return 1 } return 0
www.eeworm.com/read/162614/5531367

c c99-array-lval-7.c

/* Test for non-lvalue arrays: test that C90 does not allow them in conditional expressions, while in C99 they decay and are allowed. */ /* Origin: Joseph Myers */ /* {
www.eeworm.com/read/160303/5574083

txt description.txt

This is a test of the NORTH-EAST connection. It does so with pfs=yes on east, and pfs=no on North. This is testcase for Mantis #311
www.eeworm.com/read/160303/5574132

txt description.txt

These tests are Pluto unit tests - it runs IKE in a bottle. It does not talk to KLIPS at all, but does require that a number of aliases be configured on the loopback device. It also requires some entr
www.eeworm.com/read/160303/5574970

v1

# V1 _confread --search finds fred, even though it should not! # It does not find walter (good) and does find joe (good). # Notice that it always finds an empty section (bad). # # ipsec _confread --co
www.eeworm.com/read/159001/5589496

c bstring.c

/* * A simple memset() in case your ANSI C does not provide it */ memset(void *s, int c, int length) { char *p = s; while (length--) *(p++) = c; }
www.eeworm.com/read/156960/5608279

cpp p1-29.cpp

#include main() { int a,b; //输入数据 couta; coutb; //除法判断 if (b!=0 && a%b==0) { cout
www.eeworm.com/read/475959/6771501

cpp 2_16.cpp

#include using namespace std; int main() { double x = 10/7.0; cout
www.eeworm.com/read/233441/6788006

cpp swap.cpp

// swap() does not swap the value of the arguments! void swap( int v1, int v2 ) { int tmp = v2; v2 = v1; v1 = tmp; }