代码搜索:proxy
找到约 9,859 项符合「proxy」的源代码
代码结果 9,859
www.eeworm.com/read/233711/14142648
h timer8.h
//*****************************************************************************
//*****************************************************************************
// FILENAME: Timer8.h
// Version:
www.eeworm.com/read/130840/14172911
cpp stdafx.cpp
// stdafx.cpp : 只包括标准包含文件的源文件
// proxy.pch 将成为预编译头
// stdafx.obj 将包含预编译类型信息
#include "stdafx.h"
// TODO: 在 STDAFX.H 中
//引用任何所需的附加头文件,而不是在此文件中引用
www.eeworm.com/read/229410/14340045
h errcode.h
/***************************************************************************/
/* This code is part of WWW grabber called pavuk */
/* Copyright (c) 1997 - 2001 Stefan Ondre
www.eeworm.com/read/127651/14343556
vpj imageproxy.vpj
[COMPILER]
INCLUDEDIRS=
compile=concur|capture|:Compile:&Compile,javac %f
make=:Build:&Build,javamake
rebuild=concur|capture|:Rebuild:&Rebuild,
debug=concur|capture|:Debug:&Debug,jdb %n
execute=
www.eeworm.com/read/228751/14364476
txt sets80.txt
1, disHost
8080, httpPort
554, rtspPort (disabled)
1080, socksPort
127.0.0.1, localhost
C:\Program Files\Windows Media Player\WMPLAYER.EXE, wmplayer.exe directory
C:\Program Files\Internet Exp
www.eeworm.com/read/127116/14376943
java subject.java
package com.javapatterns.proxy;
abstract public class Subject
{
abstract public void request();
}
www.eeworm.com/read/124166/14592222
makefile
# From Thinking in Patterns (with Java) by Bruce Eckel
# At http://www.BruceEckel.com
# (c)2003 Bruce Eckel
# Copyright notice in Copyright.txt
# Automatically-generated MAKEFILE
# For examples
www.eeworm.com/read/124166/14592224
xml build.xml
build.xml for proxy of "Thinking in Java, 3rd Edition"
by Bruce Eckel
Ava
www.eeworm.com/read/124166/14592226
java proxydemo.java
//: proxy:ProxyDemo.java
// Simple demonstration of the Proxy pattern.
package proxy;
import junit.framework.*;
interface ProxyBase {
void f();
void g();
void h();
}
class Proxy imp