代码搜索:cannot
找到约 7,468 项符合「cannot」的源代码
代码结果 7,468
www.eeworm.com/read/431224/8695132
m tc.m
function T = tc(a,T,T0,Tn)
idx = find(T == 0);
if idx
T(idx) = T0;
warn(a,idx, ['Time constant ', Tn, ...
' cannot be zero. ', ...
Tn, ' = ', num2str(T0), ...
www.eeworm.com/read/431224/8697959
m setx0.m
function a = setx0(a)
global DAE Settings
if ~a.n, return, end
x = DAE.x(a.x);
w = DAE.x(a.w);
theta = DAE.y(a.bus);
Tf = a.con(:,2);
Tw = a.con(:,3);
theta0 = a.dat(:,1);
k = a.dat(:,2);
%check t
www.eeworm.com/read/286629/8753045
log basavr.log
2007-7-27 PM 05:41:56
Cannot open file C:\Documents and Settings\Administrator\Application Data\bascom-avr.xml
www.eeworm.com/read/285975/8798035
011_best ch17.011_best
##############################################################################
## Code fragment (Recommended) from Chapter 17 of "Perl Best Practices" ##
## Copyright (c) O'Reilly & Associates
www.eeworm.com/read/285975/8798065
010_best ch17.010_best
##############################################################################
## Code fragment (Recommended) from Chapter 17 of "Perl Best Practices" ##
## Copyright (c) O'Reilly & Associates
www.eeworm.com/read/384940/8828313
m tc.m
function T = tc(a,T,T0,Tn)
idx = find(T == 0);
if idx
T(idx) = T0;
warn(a,idx, ['Time constant ', Tn, ...
' cannot be zero. ', ...
Tn, ' = ', num2str(T0), ...
www.eeworm.com/read/384940/8831745
m setx0.m
function a = setx0(a)
global DAE Settings
if ~a.n, return, end
x = DAE.x(a.x);
w = DAE.x(a.w);
theta = DAE.y(a.bus);
Tf = a.con(:,2);
Tw = a.con(:,3);
theta0 = a.dat(:,1);
k = a.dat(:,2);
%check t
www.eeworm.com/read/285344/8849206
c p11.9.c
#include
#include
#include
int main(void)
{
key_t key;
int shmid;
int proj_id;
key=IPC_PRIVATE;
shmid=shmget(key,1024,0660);
if(shmid==-1)
perror("cannot cr
www.eeworm.com/read/285344/8849208
c p11.6.c
#include
#include
#include
#include
int main(void)
{
key_t key;
int semid;
int nsems;
int proj_id;
key=IPC_PRIVATE;
nsems=2;
semid=semget(key,
www.eeworm.com/read/285344/8849214
c p11.2.c
#include
#include
#include
#include
int main(void)
{
key_t key;
int msqid;
int proj_id;
key=IPC_PRIVATE;
msqid=msgget(key,0777);
if(msqid==-1)