代码搜索:recursive
找到约 2,177 项符合「recursive」的源代码
代码结果 2,177
www.eeworm.com/read/190666/5180543
java thread_monitor.java
// Test that monitor locks work and are recursive.
// Origin: Bryce McKinlay
class T implements Runnable
{
public int count = 0;
Counter c;
public T (Counter c)
{
www.eeworm.com/read/189320/5199478
readme
This directory contains a set of tests for the ACE Tokens library.
. mutex
Runs a few tests on ACE_Local_Mutex and
ACE_Remote_Mutex. Tests recursive acquisition and
global vs local proxies.
www.eeworm.com/read/345992/3194273
cpr
#! /bin/sh
# cpr
#
# Implements recursive copy for machines which do not have the -R option on cp
#
# Andrew.Findlay@brunel.ac.uk
#
# Derived from:
#
# lndir - create shadow link tree
#
# Time stamp
www.eeworm.com/read/340665/3280724
c recurse-3.c
/* Tests that macros that look recursive but are not are accepted. */
/* { dg-do preprocess } */
#define g(x) x
g(g(g(g(g(g(g)))))); /* { dg-bogus "detected recursion" } */
/* This macro ge
www.eeworm.com/read/340665/3281693
java thread_monitor.java
// Test that monitor locks work and are recursive.
// Origin: Bryce McKinlay
class T implements Runnable
{
public int count = 0;
Counter c;
public T (Counter c)
{
www.eeworm.com/read/269264/4246523
cc binarydebruijn.cc
#include "binarydebruijn.h"
ulong
binary_debruijn::func(ulong n)
//
// Knuths algorithm
// specialized for m=2
// muenchhausenized: recursive part
{
ulong xret = x_[n];
if ( (0!=x_[n]) && (
www.eeworm.com/read/440906/1782400
c recurse-3.c
/* Tests that macros that look recursive but are not are accepted. */
/* { dg-do preprocess } */
#define g(x) x
g(g(g(g(g(g(g)))))); /* { dg-bogus "detected recursion" } */
/* This macro ge
www.eeworm.com/read/440906/1783374
java thread_monitor.java
// Test that monitor locks work and are recursive.
// Origin: Bryce McKinlay
class T implements Runnable
{
public int count = 0;
Counter c;
public T (Counter c)
{
www.eeworm.com/read/390610/2528060
c parser.c
/* file calcu.c */
/* (c) Donald Axel GPL - license */
/* ANSI - C program demonstration, command line calculator */
/* Recursive descent parser */
/* Improve: Make a HELP command. Add more variables.
www.eeworm.com/read/390610/2528111
c parser.c
/* file calcu.c */
/* (c) Donald Axel GPL - license */
/* ANSI - C program demonstration, command line calculator */
/* Recursive descent parser */
/* Improve: Make a HELP command. Add more variables.