代码搜索:self
找到约 10,000 项符合「self」的源代码
代码结果 10,000
www.eeworm.com/read/428326/8876033
py class_init.py
# Filename: class_init.py
class Person:
def __init__(self, name):
self.name = name
def sayHi(self):
print 'Hello, my name is', self.name
p = Person('Swaroop')
p.sayH
www.eeworm.com/read/284731/8905741
pm bocomq.pm
#******************************************************************
#File: CAQMessagingQueue.pm
#Author: Chenggen Dong
#Date: May 7 2002
#Description:
# This is a perl library
www.eeworm.com/read/186812/8908376
bluepin
#!/usr/bin/python
#
# Bluetooth PIN helper
# Written by Maxim Krasnyansky
#
import sys, os, string, popen2, pygtk
pygtk.require('2.0')
# X Display initialization.
# Find running
www.eeworm.com/read/186726/8913839
pas untexcsql.pas
unit UntExcSQL;
interface
uses
Windows, UntDataClass,UntDMAppMDI,ADODB, DB;
type
TExcSQL = class(TDataClass)
protected
private
procedure AddDelModData(SQL : string);
procedu
www.eeworm.com/read/427891/8914725
c obex_client.c
/*********************************************************************
*
* Filename: obex_client.c
* Version: 0.8
* Description: Handles client operations
* Status:
www.eeworm.com/read/383449/8945819
apitest
#!/usr/bin/env python
import dbus
import dbus.decorators
import dbus.glib
import gobject
import sys
import getopt
from signal import *
mgr_cmds = [ "InterfaceVersion", "ListAdapters", "DefaultAdapte
www.eeworm.com/read/284301/8948035
py avrcp_lircd.py
#! /usr/bin/env python
"""
Simple multi-client AVRCP->lircd server
* Copyright (C) 2006 Sergei Krivov
*
* This program is free software; you can redistribute it and/or modify
*
www.eeworm.com/read/284301/8948060
py avdtp.py
"""
Partial realization of AVDTP, A2DP and AVRCP profiles
* Copyright (C) 2006 Sergei Krivov
*
* This program is free software; you can redistribute it and/or modify
* it under
www.eeworm.com/read/427351/8950270
py svm.py
import svmc
from svmc import C_SVC, NU_SVC, ONE_CLASS, EPSILON_SVR, NU_SVR
from svmc import LINEAR, POLY, RBF, SIGMOID
from math import exp, fabs
def _int_array(seq):
size = len(seq)
array = svmc.n