代码搜索:task
找到约 10,000 项符合「task」的源代码
代码结果 10,000
www.eeworm.com/read/277414/4155611
java task.java
import java.io.Serializable;
//该类实现了序列化
public interface Task extends Serializable
{
Object execute();
}
www.eeworm.com/read/277246/4157271
java task.java
/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* ful
www.eeworm.com/read/276084/4169136
java task.java
package book.thread.pool;
/**
* 定义任务的接口类
*/
public interface Task {
/**
* 执行任务
* @throws Exception 执行过程中可能出现的异常
*/
public void perform() throws Exception;
}
www.eeworm.com/read/275940/4171540
java task.java
public class Task
{
private static final String[][] recieveDialog = {
//FIND_CROSS
{"......",
"你醒了!",
"你是谁?我在哪里?",
"我是这里的仙子,刚才你被这里的小怪物打昏了。",
"剑,剑,我的剑呢?",
"你的剑被他们抢走了,我只来得及将你救出来
www.eeworm.com/read/272724/4215176
java task.java
// Task - a periodic action
//
// Copyright (C) 1996 by Jef Poskanzer . All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modificatio
www.eeworm.com/read/270919/4233610
tex task.tex
\documentclass[10pt,letterpaper]{article}
\usepackage{mathptmx}
\usepackage{courier}
\usepackage[dvips]{graphicx}
\usepackage{xspace}
\usepackage{color}
\usepackage{subfigure}
\usepackage[small]{capt
www.eeworm.com/read/270327/4240524
java task.java
/* ===========================================================
* JFreeChart : a free chart library for the Java(tm) platform
* ===========================================================
*
* (
www.eeworm.com/read/268372/4253882
java task.java
/* ===========================================================
* JFreeChart : a free chart library for the Java(tm) platform
* ===========================================================
*
* (
www.eeworm.com/read/449675/1674466
java task.java
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package ActiveObject.core;
import ActiveObject.exception.ObjectAnalysisException;
import ActiveObj