代码搜索:Variables
找到约 10,000 项符合「Variables」的源代码
代码结果 10,000
www.eeworm.com/read/262057/4314772
svn-base variables.vb.svn-base
'### Visual Basic.NET and Direct X9 Legend of MiR Project ###'
'### Mir Unleashed Client Variables Module ###'
'### http://www.lomcn.co.uk ###' '### Credits to TrueADM and DeathWish ###'
'These a
www.eeworm.com/read/295270/8172890
state variables bursty_source.state variables
/* Process ID display string */
char \pid_string [64];
/* Determines whether the simulation is in debug mode */
Boolean \debug_mode;
/* Stop time for traffic generation */
double \stop_tim
www.eeworm.com/read/295270/8172909
temporary variables bursty_source.temporary variables
int intrpt_type;
int intrpt_code;
Packet* pkptr;
double pksize;
double on_period;
double off_period;
double next_packet_arrival_time;
www.eeworm.com/read/295270/8172947
temporary variables wsn_sink.temporary variables
Packet* pkptr;
double pk_size;
double ete_delay;
www.eeworm.com/read/295270/8172949
state variables wsn_sink.state variables
Stathandle \bits_rcvd_stathandle;
Stathandle \bitssec_rcvd_stathandle;
Stathandle \pkts_rcvd_stathandle;
Stathandle \pktssec_rcvd_stathandle;
Stathandle \ete_delay_stathandle;
Stathandl
www.eeworm.com/read/193277/8241802
m robust_classify_variables.m
function [x,w,x_variables,w_variables,aux_variables,F,failure] = robust_classify_variables(F,h,ops,w);
failure = 0;
% Variables before expanding nonlinear operators
initial_variables = unique([de
www.eeworm.com/read/193277/8242000
m decide_branch_variables.m
function vars = decide_branch_variables(p)
if size(p.bilinears,1)==0
if p.K.s(1)>0
if any(p.K.s>p.K.rank)
vars = p.linears;
return
end
end
end
www.eeworm.com/read/173050/9677096
hx1 variables.c.hx1
www.eeworm.com/read/173050/9677207
md1 variables.c.md1
www.eeworm.com/read/247983/12609451
sql basic_function_with_variables.sql
# Basic syntax to create a function
delimiter //
create function add_tax (price float) returns float
begin
declare tax float default 0.10;
return price*(1+tax);
end
//
delimiter ;