代码搜索:Compiles
找到约 1,454 项符合「Compiles」的源代码
代码结果 1,454
www.eeworm.com/read/212387/15156713
java clickmeapp.java
/**
* ClickMeApp.java is an application that compiles and runs
* under J2SE v5.0. It requires two additional files:
* ClickMe.java
* Spot.java
*/
import javax.swing.SwingUtilities;
import
www.eeworm.com/read/209853/15212433
makefile
# Master makefile for Thinking in C++, 2nd Ed. by Bruce Eckel
# at http://www.BruceEckel.com
# Compiles all the code in the book
# Copyright notice in Copyright.txt
help:
@echo To compile all
www.eeworm.com/read/209853/15212526
bugs makefile.bugs
# Master makefile for Thinking in C++, 2nd Ed. by Bruce Eckel
# at http://www.BruceEckel.com
# Compiles all the code in the book
# Copyright notice in Copyright.txt
help:
@echo To compile all
www.eeworm.com/read/470154/1475786
txt makefile.txt
# This makefile compiles the source code for the "RSA Data Security, Inc.
# MD5 Message-Digest Algorithm" as found in RFC 1321. That code is copyrighted:
#
# Copyright (C) 1991-2, RSA Data Securit
www.eeworm.com/read/233448/4671078
c asm2.c
/* Test for complex asm statements. Make sure it compiles
then test for some of the asm statements not being translated. */
/* { dg-do compile { target i?86-*-* } }
{ dg-require-iconv "IBM1047"
www.eeworm.com/read/233448/4672911
c static12.c
// PR c++/18470
template struct A
{
static const int i=1;
};
template struct B : A
{
using A::i;
char s[i]; // fails
char t[A::i]; // compiles
};
www.eeworm.com/read/233448/4684249
c asm3.c
/* Test for complex asm statements. Make sure it compiles
then test for some of the asm statements not being translated. */
/* { dg-do compile { target i?86-*-* } }
{ dg-require-iconv "IBM1047"
www.eeworm.com/read/209559/4967301
kconfig
config MCA_LEGACY
bool "Legacy MCA API Support"
depends on MCA
help
This compiles in support for the old slot based MCA API. If you
have an unconverted MCA driver, you will need to say Y her
www.eeworm.com/read/162614/5529264
c asm3.c
/* Test for complex asm statements. Make sure it compiles
then test for some of the asm statements not being translated. */
/* { dg-do compile { target { { i?86-*-* x86_64-*-* } && ilp32 } } }
www.eeworm.com/read/340665/3268800
c array.c
/* WinBond bug report
this is a compile test. At one time static arrays over 500 elements
didn't work. We'll test both global and local array. If it compiles at
all, it it passes.
*/
#incl