代码搜索:Concurrent
找到约 2,002 项符合「Concurrent」的源代码
代码结果 2,002
www.eeworm.com/read/381089/2649585
java producer.java
package com.oreilly.tiger.ch10;
import java.io.PrintStream;
import java.util.Date;
import java.util.concurrent.BlockingQueue;
public class Producer extends Thread {
private BlockingQueue
www.eeworm.com/read/378584/2684588
java simplecachepool.java
package com.jdon.util;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
/**
* View Source
*
* @author Brian Chan
www.eeworm.com/read/358237/2998627
java timerservice.java
package example;
import java.util.*;
import java.util.concurrent.*;
import javax.webbeans.Component;
import javax.webbeans.In;
import com.caucho.servlet.comet.*;
@Component
public class TimerServi
www.eeworm.com/read/353051/3091183
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/159169/5587972
java logserver.java
package gps.util;
import java.util.HashSet;
import java.util.Iterator;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.logging.LogRecord;
/**
* log server handles conc
www.eeworm.com/read/290548/8477104
c signal.c
/*
* linux/kernel/signal.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*
* 1997-11-02 Modified for POSIX.1b signals by Richard Henderson
*
* 2003-06-02 Jim Houston - Concurrent Computer
www.eeworm.com/read/386607/8735810
java delegatingvehicletracker.java
package net.jcip.examples;
import java.util.*;
import java.util.concurrent.*;
import java.awt.*;
import java.awt.Point;
import net.jcip.annotations.*;
/**
* DelegatingVehicleTracker
*
* Del
www.eeworm.com/read/386607/8735832
java lifecyclewebserver.java
package net.jcip.examples;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.concurrent.*;
import java.util.logging.*;
/**
* LifecycleWebServer
*
www.eeworm.com/read/373369/9459978
java interruptablelongrunningcallable.java
//: gui/InterruptableLongRunningCallable.java
// Using Callables for long-running tasks.
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.concurrent.*;
import n
www.eeworm.com/read/373369/9460744
java taskmanager.java
//: net/mindview/util/TaskManager.java
// Managing and executing a queue of tasks.
package net.mindview.util;
import java.util.concurrent.*;
import java.util.*;
public class TaskManager