代码搜索:runtime
找到约 10,000 项符合「runtime」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5522880
m next-runtime-1.m
/* Test that the correct version number (6) is set in the module descriptor
when compiling for the NeXT runtime. */
/* Author: Ziemowit Laski */
/* { dg-do compile { target *-
www.eeworm.com/read/162614/5522921
m gnu-runtime-2.m
/* Sanity check for GNU-runtime version of constant strings,
regardless of runtime used on target system. */
/* { dg-do compile } */
/* { dg-options "-fgnu-runtime" } */
#include
www.eeworm.com/read/162614/5522949
m gnu-runtime-1.m
/* Test that compiling for the GNU runtime works (regardless of
the system runtime used). */
/* Author: Ziemowit Laski */
/* { dg-do compile } */
/* { dg-options "-fgnu-runtime
www.eeworm.com/read/292144/3956025
src runtime_tools.app.src
{application, runtime_tools,
[{description, "RUNTIME_TOOLS version 1"},
{vsn, "%VSN%"},
{modules, [dbg,observer_backend,
inviso_rt,inviso_rt_lib,inviso_rt_meta,
i
www.eeworm.com/read/292144/3956029
erl runtime_tools_sup.erl
%% ``The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
%% compliance with the License. You should have received a
www.eeworm.com/read/278327/4146362
c runtime2_md.c
/*
* Copyright (c) 1998-2001 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the confidential and proprietary information of Sun
* Microsystems, Inc. ("Confidential Information").
www.eeworm.com/read/438925/1821190
js boolean_comparison.runtime.js
function ttrace(val) {
trace(val);
return true;
}
function ftrace(val) {
trace(val);
return false;
}
function retval(val) {
return val;
}
function test1() {
if (ttrace->('a') && ttrace->(2))
www.eeworm.com/read/438925/1821191
js simple_return.runtime.js
function foo() {
trace("before");
var x = bar->();
trace(x);
}
function bar() {
return baz->();
}
var baz = function(frame) {
return bee();
}
function bee() {
return "after";
}
foo();
assert
www.eeworm.com/read/438925/1821201
js notifier_api.runtime.js
var en = new EventNotifier();
function test_EventNotifier() {
trace(2);
trace(en.wait->());
trace(4);
trace(en.wait->());
trace(6);
}
en(1);
test_EventNotifier();
en(3);
en(5);
assertTrail(2,3,