Home
last modified time | relevance | path

Searched defs:Interface (Results 1 – 25 of 7865) sorted by relevance

12345678910>>...315

/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/mobile/
H A Dinterface.go35 type Interface struct { struct
36 object interface{}
165 func (i *Interface) GetInt8s() *BigInts {
173 func (i *Interface) GetInt16s() *BigInts {
181 func (i *Interface) GetInt32s() *BigInts {
189 func (i *Interface) GetInt64s() *BigInts {
197 func (i *Interface) GetUint8() *BigInt {
200 func (i *Interface) GetUint16() *BigInt {
203 func (i *Interface) GetUint32() *BigInt {
206 func (i *Interface) GetUint64() *BigInt {
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/mobile/
H A Dinterface.go35 type Interface struct { struct
36 object interface{}
45 func (i *Interface) SetBool(b bool) { i.object = &b }
46 func (i *Interface) SetBools(bs []bool) { i.object = &bs }
55 func (i *Interface) SetInt8(n int8) { i.object = &n }
66 func (i *Interface) SetDefaultBool() { i.object = new(bool) }
76 func (i *Interface) SetDefaultInt8() { i.object = new(int8) }
101 func (i *Interface) GetUint8() *BigInt {
104 func (i *Interface) GetUint16() *BigInt {
107 func (i *Interface) GetUint32() *BigInt {
[all …]
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/go/types/
H A Dinterface.go16 type Interface struct { struct
19 methods []*Func // ordered list of explicitly declared methods
20 embeddeds []Type // ordered list of explicitly embedded elements
25 tset *_TypeSet // type set described by this interface, computed lazily
80 func (t *Interface) MarkImplicit() {
92 func (t *Interface) NumEmbeddeds() int { return len(t.embeddeds) }
111 func (t *Interface) Empty() bool { return t.typeSet().IsAll() }
121 func (t *Interface) IsImplicit() bool { return t.implicit }
130 func (t *Interface) Complete() *Interface {
138 func (t *Interface) Underlying() Type { return t }
[all …]
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/types2/
H A Dinterface.go13 type Interface struct { struct
16 methods []*Func // ordered list of explicitly declared methods
17 embeddeds []Type // ordered list of explicitly embedded elements
22 tset *_TypeSet // type set described by this interface, computed lazily
61 func (t *Interface) MarkImplicit() {
66 func (t *Interface) NumExplicitMethods() int { return len(t.methods) }
73 func (t *Interface) NumEmbeddeds() int { return len(t.embeddeds) }
86 func (t *Interface) Empty() bool { return t.typeSet().IsAll() }
95 func (t *Interface) IsImplicit() bool { return t.implicit }
97 func (t *Interface) Underlying() Type { return t }
[all …]
/dports/security/lego/lego-4.5.3/vendor/github.com/sacloud/libsacloud/sacloud/
H A Dinterface.go18 type Interface struct { struct
19 *Resource // ID
20 propServer // サーバ
21 propSwitch // スイッ
25 HostName string `json:",omitempty"` // ホスト
30 func (i *Interface) GetMACAddress() string {
35 func (i *Interface) GetIPAddress() string {
40 func (i *Interface) SetUserIPAddress(ip string) {
45 func (i *Interface) GetUserIPAddress() string {
50 func (i *Interface) GetHostName() string {
[all …]
/dports/net/traefik/traefik-2.6.1/vendor/github.com/sacloud/libsacloud/sacloud/
H A Dinterface.go18 type Interface struct { struct
19 *Resource // ID
20 propServer // サーバ
21 propSwitch // スイッ
25 HostName string `json:",omitempty"` // ホスト
30 func (i *Interface) GetMACAddress() string {
35 func (i *Interface) GetIPAddress() string {
40 func (i *Interface) SetUserIPAddress(ip string) {
45 func (i *Interface) GetUserIPAddress() string {
50 func (i *Interface) GetHostName() string {
[all …]
/dports/www/node10/node-v10.24.1/doc/api/
H A Dreadline.md47 ### Event: 'close'
66 ### Event: 'line'
84 ### Event: 'pause'
103 ### Event: 'resume'
118 ### Event: 'SIGCONT'
141 ### Event: 'SIGINT'
161 ### Event: 'SIGTSTP'
189 ### rl.close()
201 ### rl.pause()
262 ### rl.resume()
[all …]
/dports/multimedia/pipewire/pipewire-0.3.43/man/
H A Dpw-cli.1.rst.in13 SYNOPSIS
18 DESCRIPTION
36 GENERAL COMMANDS
45 MODULE MANAGEMENT
60 OBJECT INTROSPECTION
73 WORKING WITH REMOTES
99 NODE MANAGEMENT
117 LINK MANAGEMENT
132 EXAMPLES
135 AUTHORS
[all …]
/dports/security/py-cryptography/cryptography-3.3.2/docs/hazmat/primitives/
H A Dkey-derivation-functions.rst879 Interface section in Key derivation functions
926 .. [#nist] See `NIST SP 800-132`_.
931 .. _`ANSI X9.63:2001`: https://webstore.ansi.org
932 .. _`SEC 1 v2.0`: https://www.secg.org/sec1-v2.pdf
934 .. _`PBKDF2`: https://en.wikipedia.org/wiki/PBKDF2
935 .. _`key stretching`: https://en.wikipedia.org/wiki/Key_stretching
936 .. _`HKDF`: https://en.wikipedia.org/wiki/HKDF
937 .. _`HKDF paper`: https://eprint.iacr.org/2010/264
938 .. _`here`: https://stackoverflow.com/a/30308723/1170681
939 .. _`recommends`: https://tools.ietf.org/html/rfc7914#section-2
[all …]
/dports/www/beehive/beehive-0.4.0/vendor/github.com/fatih/set/
H A Dset.go27 type Interface interface { interface
35 IsEqual(s Interface) bool
36 IsSubset(s Interface) bool
37 IsSuperset(s Interface) bool
42 Merge(s Interface)
43 Separate(s Interface)
64 func Union(set1, set2 Interface, sets ...Interface) Interface {
83 func Difference(set1, set2 Interface, sets ...Interface) Interface {
93 func Intersection(set1, set2 Interface, sets ...Interface) Interface {
114 func SymmetricDifference(s Interface, t Interface) Interface {
[all …]
/dports/www/mattermost-server/mattermost-server-6.0.2/vendor/github.com/fatih/set/
H A Dset.go27 type Interface interface { interface
35 IsEqual(s Interface) bool
36 IsSubset(s Interface) bool
37 IsSuperset(s Interface) bool
42 Merge(s Interface)
43 Separate(s Interface)
64 func Union(set1, set2 Interface, sets ...Interface) Interface {
83 func Difference(set1, set2 Interface, sets ...Interface) Interface {
93 func Intersection(set1, set2 Interface, sets ...Interface) Interface {
114 func SymmetricDifference(s Interface, t Interface) Interface {
[all …]
/dports/sysutils/kubectl/kubernetes-1.22.2/cmd/kubeadm/app/util/apiclient/
H A Didempotency.go46 func CreateOrUpdateConfigMap(client clientset.Interface, cm *v1.ConfigMap) error {
123 func CreateOrUpdateSecret(client clientset.Interface, secret *v1.Secret) error {
137 func CreateOrUpdateServiceAccount(client clientset.Interface, sa *v1.ServiceAccount) error {
149 func CreateOrUpdateDeployment(client clientset.Interface, deploy *apps.Deployment) error {
178 func CreateOrUpdateDaemonSet(client clientset.Interface, ds *apps.DaemonSet) error {
192 func DeleteDaemonSetForeground(client clientset.Interface, namespace, name string) error {
198 func DeleteDeploymentForeground(client clientset.Interface, namespace, name string) error {
204 func CreateOrUpdateRole(client clientset.Interface, role *rbac.Role) error {
227 func CreateOrUpdateRoleBinding(client clientset.Interface, roleBinding *rbac.RoleBinding) error {
250 func CreateOrUpdateClusterRole(client clientset.Interface, clusterRole *rbac.ClusterRole) error {
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/Documentation/hwmon/
H A Dlm93.rst79 #PROCHOT
119 #VRD_HOT
140 Manual PWM
155 PWM Output Frequency
167 Automatic PWM
235 PWM Spin-Up Cycle
251 #PROCHOT and #VRDHOT PWM Ramping
264 Fan Boost
275 GPIO Pins
/dports/multimedia/v4l-utils/linux-5.13-rc2/Documentation/hwmon/
H A Dlm93.rst79 #PROCHOT
119 #VRD_HOT
140 Manual PWM
155 PWM Output Frequency
167 Automatic PWM
235 PWM Spin-Up Cycle
251 #PROCHOT and #VRDHOT PWM Ramping
264 Fan Boost
275 GPIO Pins
/dports/multimedia/v4l_compat/linux-5.13-rc2/Documentation/hwmon/
H A Dlm93.rst79 #PROCHOT
119 #VRD_HOT
140 Manual PWM
155 PWM Output Frequency
167 Automatic PWM
235 PWM Spin-Up Cycle
251 #PROCHOT and #VRDHOT PWM Ramping
264 Fan Boost
275 GPIO Pins
/dports/sysutils/atf-sun50i_h6/arm-trusted-firmware-2.5/docs/components/
H A Dfirmware-update.rst131 BL1_SMC_CALL_COUNT
144 BL1_SMC_UID
158 BL1_SMC_VERSION
172 BL1_SMC_RUN_IMAGE
192 FWU_SMC_IMAGE_COPY
241 FWU_SMC_IMAGE_AUTH
281 FWU_SMC_IMAGE_EXECUTE
309 FWU_SMC_IMAGE_RESUME
336 FWU_SMC_SEC_IMAGE_DONE
357 FWU_SMC_UPDATE_DONE
[all …]
/dports/sysutils/atf-sun50i_a64/arm-trusted-firmware-2.5/docs/components/
H A Dfirmware-update.rst131 BL1_SMC_CALL_COUNT
144 BL1_SMC_UID
158 BL1_SMC_VERSION
172 BL1_SMC_RUN_IMAGE
192 FWU_SMC_IMAGE_COPY
241 FWU_SMC_IMAGE_AUTH
281 FWU_SMC_IMAGE_EXECUTE
309 FWU_SMC_IMAGE_RESUME
336 FWU_SMC_SEC_IMAGE_DONE
357 FWU_SMC_UPDATE_DONE
[all …]
/dports/sysutils/atf-rk3399/arm-trusted-firmware-2.5/docs/components/
H A Dfirmware-update.rst131 BL1_SMC_CALL_COUNT
144 BL1_SMC_UID
158 BL1_SMC_VERSION
172 BL1_SMC_RUN_IMAGE
192 FWU_SMC_IMAGE_COPY
241 FWU_SMC_IMAGE_AUTH
281 FWU_SMC_IMAGE_EXECUTE
309 FWU_SMC_IMAGE_RESUME
336 FWU_SMC_SEC_IMAGE_DONE
357 FWU_SMC_UPDATE_DONE
[all …]
/dports/sysutils/atf-rk3328/arm-trusted-firmware-2.5/docs/components/
H A Dfirmware-update.rst131 BL1_SMC_CALL_COUNT
144 BL1_SMC_UID
158 BL1_SMC_VERSION
172 BL1_SMC_RUN_IMAGE
192 FWU_SMC_IMAGE_COPY
241 FWU_SMC_IMAGE_AUTH
281 FWU_SMC_IMAGE_EXECUTE
309 FWU_SMC_IMAGE_RESUME
336 FWU_SMC_SEC_IMAGE_DONE
357 FWU_SMC_UPDATE_DONE
[all …]
/dports/sysutils/atf-fvp/arm-trusted-firmware-2.5/docs/components/
H A Dfirmware-update.rst131 BL1_SMC_CALL_COUNT
144 BL1_SMC_UID
158 BL1_SMC_VERSION
172 BL1_SMC_RUN_IMAGE
192 FWU_SMC_IMAGE_COPY
241 FWU_SMC_IMAGE_AUTH
281 FWU_SMC_IMAGE_EXECUTE
309 FWU_SMC_IMAGE_RESUME
336 FWU_SMC_SEC_IMAGE_DONE
357 FWU_SMC_UPDATE_DONE
[all …]
/dports/www/firefox-esr/firefox-91.8.0/testing/mozbase/docs/
H A Dmozprocess.rst67 REM TIMEOUT /T 1 /NOBREAK
83 def tostdout(line):
87 fd.write("<%s>\n" % line)
90 command = './proc_sleep_echo.sh'
95 p.wait()
99 The process output can be saved (*obj = ProcessHandler(..., storeOutput=True)*) so as it is possibl…
104 import sys
107 command = './proc_sleep_echo.sh' # Windows: 'proc_sleep_echo.bat'
111 for i in xrange(10):
/dports/www/firefox/firefox-99.0/testing/mozbase/docs/
H A Dmozpower.rst67 MozPower
82 IPGEmptyFileError
86 IPGExecutableMissingError
90 IPGMissingOutputFileError
94 IPGTimeoutError
98 IPGUnknownValueTypeError
102 MissingProcessorInfoError
106 OsCpuComboMissingError
110 PlatformUnsupportedError
/dports/mail/thunderbird/thunderbird-91.8.0/testing/mozbase/docs/
H A Dmozpower.rst67 MozPower
82 IPGEmptyFileError
86 IPGExecutableMissingError
90 IPGMissingOutputFileError
94 IPGTimeoutError
98 IPGUnknownValueTypeError
102 MissingProcessorInfoError
106 OsCpuComboMissingError
110 PlatformUnsupportedError
/dports/lang/spidermonkey78/firefox-78.9.0/testing/mozbase/docs/
H A Dmozpower.rst67 MozPower
82 IPGEmptyFileError
86 IPGExecutableMissingError
90 IPGMissingOutputFileError
94 IPGTimeoutError
98 IPGUnknownValueTypeError
102 MissingProcessorInfoError
106 OsCpuComboMissingError
110 PlatformUnsupportedError
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/manual/attic/Tutorial/
H A DIndicesOld.rst42 Depth-First Search
77 Example
140 Assignments
153 Top-Down Iteration
167 Example
223 Assignments
236 Access Suffix Tree Nodes
268 Property Maps
325 Additional iterators

12345678910>>...315