代码搜索:proxy
找到约 9,859 项符合「proxy」的源代码
代码结果 9,859
www.eeworm.com/read/153151/5652828
java client.java
package com.javapatterns.proxy.imageloader;
import java.awt.Graphics;
import java.awt.Insets;
import javax.swing.JFrame;
import javax.swing.Icon;
public class Client extends JFrame
{
pri
www.eeworm.com/read/153151/5652829
java imageiconproxy.java
package com.javapatterns.proxy.imageloader;
import java.awt.Graphics;
import java.awt.Component;
import javax.swing.ImageIcon;
import javax.swing.Icon;
import javax.swing.SwingUtilities;
pub
www.eeworm.com/read/173565/9650267
ini win32whois.ini
[Config]
Font=宋体
dwEffects=0
CharSet=134
FontSize=180
WordWrap=1
ResolveDomain=1
ReverseIP=1
GetAbuseInfo=1
[Proxy]
Enabled=0
Debug=0
Type=0
Server=
Port=80
Login=
Pass=
UseAuth=0
Re
www.eeworm.com/read/269943/11053936
bat register.bat
@echo off
rem
rem Register.bat
rem Registration file for Chapter 12 free-thread example
rem
echo on
regsvr32 -s Proxy.dll
regsvr32 -s Server.dll
www.eeworm.com/read/269943/11053966
bat register.bat
@echo off
rem
rem Register.bat
rem Registration file for Chapter 12 apartment-thread example
rem
echo on
regsvr32 -s Proxy.dll
regsvr32 -s Server.dll
www.eeworm.com/read/113029/15472369
cpp fig07_23.cpp
// Fig. 7.23: fig07_23.cpp
// Hiding a class抯 private data with a proxy class.
#include
using std::cout;
using std::endl;
#include "interface.h" // Interface class definition
i
www.eeworm.com/read/100773/15864490
py connection.py
from proxy4_base import *
class Connection(asyncore.dispatcher):
RECV_BUFSIZE = 65536
#SEND_BUFSIZE = 1460
SEND_BUFSIZE = 8192
def __init__(self, socket=None):
self.conne
www.eeworm.com/read/100773/15864497
py encoding_chunked.py
# encoding_chunked, amitp@cs.stanford.edu, March 2000
#
# Deal with Transfer-encoding: chunked [HTTP/1.1]
# TEST CASE:
# http://www.apache.org/
from proxy4_base import *
class UnchunkStream:
www.eeworm.com/read/383589/8933192
config
#
# The proxy to the Glacier2 router for all outgoing connections. This
# must match the value of Glacier2.Client.Endpoints in config.glacier2.
#
Ice.Default.Router=Glacier2/router:ssl -p 10005
#
# T
www.eeworm.com/read/427147/8973324
java call.java
package proxy1;
import java.io.*;
public class Call implements Serializable{
private String className; //表示类名
private String methodName; //表示方法名
private Class[] paramTypes; //表示方法参数类型
p