代码搜索:Concurrent
找到约 2,002 项符合「Concurrent」的源代码
代码结果 2,002
www.eeworm.com/read/262041/4317042
h idr.h
/*
* include/linux/idr.h
*
* 2002-10-18 written by Jim Houston jim.houston@ccur.com
* Copyright (C) 2002 by Concurrent Computer Corporation
* Distributed under the GNU GPL license version
www.eeworm.com/read/252579/4402598
java futuretest.java
import java.io.*;
import java.util.*;
import java.util.concurrent.*;
public class FutureTest
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.
www.eeworm.com/read/154277/5638982
java limitedsynchronizedlong.java
package com.gctech.util;
import EDU.oswego.cs.dl.util.concurrent.SynchronizedLong;
/**
* Title:
* Description:
* Copyright: Copyright (c) 2004
* Company: gctech
www.eeworm.com/read/154277/5638993
java limitedsynchronizedint.java
package com.gctech.util;
import EDU.oswego.cs.dl.util.concurrent.SynchronizedInt;
/**
* Title:
* Description:
* Copyright: Copyright (c) 2004
* Company: gctech
www.eeworm.com/read/147311/12568183
html nomulti.html
Preventing Concurrent Requests to a Servlet
(Java Developers Almanac Example)
www.eeworm.com/read/386607/8735770
java visualcomponent.java
package net.jcip.examples;
import java.awt.event.KeyListener;
import java.awt.event.MouseListener;
import java.util.*;
import java.util.concurrent.*;
/**
* VisualComponent
*
* Delegating thr
www.eeworm.com/read/386607/8735823
java logservice.java
package net.jcip.examples;
import java.io.PrintWriter;
import java.io.Writer;
import java.util.concurrent.*;
import net.jcip.annotations.*;
/**
* LogService
*
* Adding reliable cancellation
www.eeworm.com/read/386607/8735983
java taskexecutionwebserver.java
package net.jcip.examples;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.concurrent.*;
/**
* TaskExecutionWebServer
*
* Web server using
www.eeworm.com/read/373369/9460865
java restaurantwithqueues.java
//: concurrency/restaurant2/RestaurantWithQueues.java
// {Args: 5}
package concurrency.restaurant2;
import enumerated.menu.*;
import java.util.concurrent.*;
import java.util.*;
import static net
www.eeworm.com/read/373369/9460893
java mapcomparisons.java
//: concurrency/MapComparisons.java
// {Args: 1 10 10} (Fast verification check during build)
// Rough comparison of thread-safe Map performance.
import java.util.concurrent.*;
import java.util.*;