代码搜索:errors
找到约 10,000 项符合「errors」的源代码
代码结果 10,000
www.eeworm.com/read/241276/13159061
m errors.m
function [area,roc] = errors(netans,answer,outfile)
% WBL 23 August 2002 Caculate true positive and false positive rates for all tresholds
% Returning the ROC and the area under its
www.eeworm.com/read/241181/13164502
txt errors.txt
Error C0159: Conversion of d:\account\account.pbl(dd_account_list_print.dwo) failed. Probable library file I/O error
www.eeworm.com/read/240847/13193873
java errors.java
// FrontEnd Plus for JAD
// DeCompiled : Errors.class
package sms;
public interface Errors
{
public static final int SMPP_ROK = 0;
public static final int SMPP_RINVMSGLEN = 1;
www.eeworm.com/read/325220/13217603
java errors.java
// FrontEnd Plus for JAD
// DeCompiled : Errors.class
package sms;
public interface Errors
{
public static final int SMPP_ROK = 0;
public static final int SMPP_RINVMSGLEN = 1;
www.eeworm.com/read/138079/13266910
h errors.h
#ifndef __ERRORS_H__
#define __ERRORS_H__
// enum of possible errors
typedef enum
{
NO_ERR, //0
POLL_TIMEOUT, //1
VERIFY_WRITE, //2
INVALID_SECTOR, //3
INVALID_BLOCK, //4
UNKN
www.eeworm.com/read/137224/13339462
h errors.h
//------------------------------------------------------------------------------
// File: Errors.h
//
// Desc: ActiveMovie error defines.
//
// Copyright (c) 1992-2001, Microsoft Corporation. A
www.eeworm.com/read/323119/13351270
result errors.result
drop table if exists t1;
insert into t1 values(1);
ERROR 42S02: Table 'test.t1' doesn't exist
delete from t1;
ERROR 42S02: Table 'test.t1' doesn't exist
update t1 set a=1;
ERROR 42S02: Table 'test.t1'
www.eeworm.com/read/136959/13351359
h errors.h
/*
** Header file for SNIPPETS error handlers
*/
#ifndef ERRORS__H
#define ERRORS__H
#include
int ferrorf(FILE *filehandle, const char *format, ...); /* Ferrorf.C */
FILE * cant(char
www.eeworm.com/read/323119/13352726
test errors.test
#
# Test some error conditions
#
--disable_warnings
drop table if exists t1;
--enable_warnings
--error 1146
insert into t1 values(1);
--error 1146
delete from t1;
--error 1146
update t1 set a=1;
crea