Astronet Поиск по астрономическим сайтам English Russian
       
        Точная форма слов   О проекте   Сайты   Справка
Найдено документов: 343750 (164 сайтов) ---- Время поиска: 0.96сек.   

1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | След.

Показаны документы, содержащие фрагменты текста из документа
http://www.stsci.edu/~sontag/spicedocs/cspice/sigerr_c.html.

1. CSPICE Routines: SETMSG_C
... Abstract Set the value of the current long error message. ... Particulars The CSPICE routine sigerr_c should always be called AFTER this routine is called, when an error is detected. The effects of this routine are: 1. ... As a result, The CSPICE routine, getmsg_ , will be able to retrieve message, until message has been ``erased'' by a call to reset_c , or overwritten by another call to setmsg_c . ... If acceptance of a new long error message is not allowed, a call to this routine has no effect. ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/~sontag/spicedocs/cspice/setmsg_c.html -- 7.1 Кб -- 17.12.2005
Похожие документы

2. http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/uploads/MROIDelayLine.DelayLineSoftwareLibraries/exception.pdf
... The handling level can then choose the best way to handle the error, e.g. print the message and/or halt the program. ... FileProcess( myfile.txt , status ); result = Func1(3.0, status ); if (! ExcOK ( status )){ ExcPrint( status , stderr); ExcClear( status ); } ... } double FileProcess(char * file , ExcStatus * status ) { FILE *fd; if (! ExcOK ( status )) return ; fd = fopen( file , rb ); if (fd == NULL) { ExcSignal( status ); ExcExplain( status , Unable to open %s\n , file ); return ; } ...
[ Текст ]  Ссылки http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/uploads/MROIDelayLine.DelayLineSoftwareLibraries/exception.pdf -- 144.9 Кб -- 22.01.2010
Похожие документы

3. http://www.atnf.csiro.au/computing/software/gipsy/sub/error.dc2
Subroutine: ERROR Purpose: User error handling routine. Category: SYSTEM, USER-INTERFACE File: srvreq.c Author: J.P. Terlouw Use: CALL ERROR( IER, Input integer MESSAGE ) Input character IER Severity of error. 1 = Warning 2 = Minor error 3 = Serious error 4 = Fatal error MESSAGE Character string containing message for the user. Description: The user is allowed to set the value of the MESSAGELEVEL and the ERRORLEVEL. ... Default levels: ERRORLEVEL=4, MESSAGELEVEL=1. ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/gipsy/sub/error.dc2 -- 2.4 Кб -- 05.02.2001
Похожие документы

4. TclActor Internals
TclActor is a set of classes that allow one to write an actor for the 3.5m control system. ... Thus, to the extent that the underlying hardware controllers support it, an actor based on TclActor can execute multiple commands at the same time. ... Commands must be in the following format: [cmdId [msgId]] [verb [arguments]] where: . ... The device code tends to fall into several categories: code to support executing commands, code to handle replies and code to represent the internal state of the device. ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/35m_operations/MC2/TclActorInternals.html -- 8.2 Кб -- 09.07.2008
Похожие документы

5. Programming in C
... Lecture notes + integrated exercises, solutions and marking . ... C/C++ Program Compilation . ... UNIX Library Functions . ... Further Data Types . ... Not assigning a pointer to memory address before using it . ... Exercise . ... Threads: Basic Theory and Libraries . ... Thread Levels . ... Global and Private Thread-Specific Data Example . ... Example Use of Thread Specific Data:Rethinking Global Variables . ... Further Threads Programming:Thread Attributes (POSIX) . ... Thread programming examples...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/CE.html -- 47.0 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/CE.html -- 47.0 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/CE.html -- 47.0 Кб -- 02.10.2012
Похожие документы

6. system call returns "Bad Address". Why?
The HyperNews Linux KHG Discussion Pages . Forum: The Linux Kernel Hackers' Guide . Re : Problem creating a new system call . ... When I try to call my new system call, it always returns -1. I then check the error message using perror( ). The error message is always "Bad Address". Could anybody please tell me what can cause a system call to return "Bad Address" error. ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/irlab/doc/library/linux/khg/HyperNews/get/khg/135/2.html -- 2.6 Кб -- 23.03.2000
Похожие документы

7. XPA Access Control
XPA supports host-based access control for each XPA access point. You can enable/disable access control using the XPA_ACL environment variable. ... See XPA Access Points and Templates for more information about xpa templates. ... For example: xpaset -p xpa1 -acl "somehost -" will turn off all access control for somehost to the xpa1 access point, while: xpaset -p XPA:xpa1 -acl "beberly gs" will give beberly xpaget and xpaset access to the access point whose class is XPA and whose name is xpa1. ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/sbig/archive/xmccd-4.1/xmccd-4.1e/xpa-2.1.14/doc/acl.html -- 5.7 Кб -- 25.12.2003
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/RD/xpa/acl.html -- 5.7 Кб -- 01.10.2012
Похожие документы

8. Testing for files and variables with the test command
. The shell uses a command called test to evaluate conditional expressions. Full details of this command can be found in the test manual page. For example: if test ! -f $FILE then if test "$WARN" = "yes" then echo "$FILE does not exist" fi fi . First, we test to see if the filename specified by the variable $FILE exists and is a regular file. If it does not then we test to see if the variable $WARN is assigned the value yes , and if it is a message that the filename does not exist is displayed.
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.5.html -- 2.3 Кб -- 17.01.1997
Похожие документы

9. Report on Cosmic Call 1999
... Report on Cosmic Call 1999 . ... Cosmic Call Sessions . ... This Report outlines methodology, hard- and software, which were developed to transmit first public Interstellar messages from Evpatoria Deep Space Center (EDSC), and describes four Cosmic Call Sessions, which were fulfilled in EDSC on May 24 and June 30 - July 1, 1999. ... Each Cosmic Call consists of two parts. ... Dutil Message, . ... The software for gathering all messages and creating the Cosmic Call stream, was written on C language. ...
[ Сохраненная копия ]  Ссылки http://www.cplire.ru/html/ra&sr/irm/report-1999.html -- 56.9 Кб -- 30.11.2002
Похожие документы

10. Version, UI, and Status Information
... This chapter describes the functions that allow a plug-in to display a message on the status line, get agent information, and check on the current version of the Plug-in API and Communicator. ... Displaying a Status Line Message . ... The Communicator and Plug-in API major version numbers represent code release numbers, and their minor version numbers represent point release numbers. ... Differing version numbers may mean that the current Plug-in API and Communicator versions are incompatible. ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/cats/~satr/JS/plugin/vrsn.htm -- 12.0 Кб -- 15.01.1997
Похожие документы

11. Re: FIFO Is Ignoring Non-blocking Call - an Astronomy Net XEphem Forum Message
XEphem Forum Message . Forums: . ... God and Science ћ SETI ћ Software ћ UFO ћ XEphem . ... Discussion Forums | ... Post . ... Re: FIFO Is Ignoring Non-blocking Call . ... Post Message | ... Re: Re: FIFO is ignoring non-blocking call - lemmy - January 3, 2001 - 00:35 UTC . ... www.astronomy.net . About Astronomy Net | Advertise on Astronomy Net | ... Forum posts are Copyright their authors as specified in the heading above the post. "dbHTML," "AstroGuide," "ASTRONOMY.NET" & "VA.NET" . ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.net/forums/xephem/messages/92.shtml -- 13.9 Кб -- 09.04.2016
Похожие документы

12. A Cosmic Call to Nearby Stars
... A Cosmic Call to Nearby Stars . ... The people from the Cosmic Call project sent the above image as the first page of a longer message. The message was broadcast toward local stars by radio telescope during the summer of 1999. ... This first page of the Cosmic Call 1999 message, shown above, involves only numbers and so is easier for puzzle solvers to decode than a more famous message broadcast toward distant star cluster M13 in 1974. ... 1999 2000 . ... Publications with keywords: SETI . ...
[ Сохраненная копия ]  Ссылки http://www.astronet.ru/db/xware/msg/1235504 -- 14.7 Кб -- 12.07.2009
Похожие документы

13. http://www.naic.edu/~phil/hardware/vertex/sharemegsvertex/lcu/pcr/c600/source/STARTUP/FMSGHDR.ASM
... Purpose: ; Far message handler and finder. special for c startup include version.inc ?PLM= 1 ; pascal calling conventions .xlist include cmacros.inc include msdos.inc .list createSeg _TEXT, code, word, public, CODE, createSeg _ DATA , data , word, public, DATA , DGROUP createSeg FAR _HDR,fhdr, byte , public, FAR_MSG , FMGROUP createSeg FAR_MSG ,fmsg, byte , public, FAR_MSG , FMGROUP createSeg FAR _PAD,fpad, byte , common, ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~phil/hardware/vertex/sharemegsvertex/lcu/pcr/c600/source/STARTUP/FMSGHDR.ASM -- 3.4 Кб -- 06.03.2001
Похожие документы

14. tickadj - set time-related kernel variables
... The particular variables it is concerned with are tick , which is the number of microseconds added to the system time during a clock interrupt, tickadj , which sets the slew rate and resolution used by the adjtime system call, and dosynctodr , which indicates to the kernels on some machines whether they should internally adjust the system clock to keep it in line with time-of-day clock or not. ... Set the kernel variable tickadj to an internally computed "optimal" value. -t tick . ...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~er/xntp/tickadj.html -- 4.0 Кб -- 21.12.2007
Похожие документы

15. http://www.astro.louisville.edu/software/sbig/archive/xmccd-4.1/xmccd-4.1e/xpa-2.1.14/man/man3/xparace.3
... C+ will give a nicer C++. ... SH "DESCRIPTION" .IX Header "DESCRIPTION" Currently, there is only one known circumstance in which \s-1XPA\s0 can get (temporarily) deadlocked in a race condition: if two or more \s-1XPA\s0 servers send messages to one another using an \s-1XPA\s0 client routine such as \fIXPASet()\fR, they can deadlock while each waits for the other server to respond. This can happen if the servers call \fIXPAPoll()\fR with a time limit, and send messages in between the polling call.) ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/sbig/archive/xmccd-4.1/xmccd-4.1e/xpa-2.1.14/man/man3/xparace.3 -- 8.0 Кб -- 08.06.2012
Похожие документы
Еще в разделе: (Показать все результаты (>584) - www.astro.louisville.edu/ )

16. msg: A Message-Passing Library
... As the foundation for the SAO MMT Instrument control software, we have developed an ASCII protocol for passing messages between client and server applications. Server interfaces are described as registered commands and published values. ... The mechanics of exchanging data between the client and server over a TCP/IP socket are handled by the library. ... However, we also have used the msg library to build complex systems with dozens of registered commands and hundreds of published values. ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass00/P2-28/ -- 14.4 Кб -- 29.05.2001
Похожие документы

17. Environment Variables in Apache
The Apache HTTP Server provides a mechanism for storing information in named variables that are called environment variables . ... For additional flexibility, the directives provided by mod_setenvif allow environment variables to be set on a per-request basis, conditional on characteristics of particular requests. ... As discussed above, the environment passed to CGI scripts includes standard meta-information about the request in addition to any variables set within the Apache configuration. ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/env.html -- 15.1 Кб -- 01.08.2003
Похожие документы

18. Posting to VSNet
Posting Observations . ... You will need to subscribe to vsnet-acc (to allow you access to post your observations). ... VSNet has several different e-mail sigs, and sub sigs. ... These list are controlled by a software package called " Majordomo ", which allows you to subscribe and unsubscribe yourself from these list with an e-mail message (automated). ... Once you have subscribed to vsnet-acc (which will only send you a welcome message back and nothing else) you can post to the other list. ...
[ Сохраненная копия ]  Ссылки http://www.rochesterastronomy.org/SNIMAGES/vsnet.html -- 11.3 Кб -- 10.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>168) - www.rochesterastronomy.org/ )

19. http://hea.iki.rssi.ru/conf/hea2007/bp-0.2.97/NOTES
... Changed format option parsing routine in bp-p-options. added opt_reverseauthor to bp-refer, and added options parsing. 0.1.1 perl5/ad425.ref->ad425.bib in 25.3 seconds perl5/timetest.pl 2.31s total, 1.03, 1.01, 3.52 Added p-output.pl. ... No noticible change in running time, which means the debugging statements aren't slowing us down enough to worry about dropping them. 0.0.11 perl5/ad425.ref->ad425.bib in 22.7 seconds perl5/timetest.pl 1.98 total, 1.02, 1.01, 3.39 Added format registration. ...
[ Сохраненная копия ]  Ссылки http://hea.iki.rssi.ru/conf/hea2007/bp-0.2.97/NOTES -- 11.3 Кб -- 16.12.1996
Похожие документы
Еще в разделе: (Показать все результаты (>280) - hea.iki.rssi.ru/ )

20. MAO NASU :: Topic: Fw: ASTRONET: Task 5.5 - joint call (1/1)
... Recent Topics . ... MAO main . ... Fw: ASTRONET: Task 5.5 - joint call . ... Subject: RE: ASTRONET: Task 5.5 - joint call . ... From: Haebe, Nadja [ This email address is being protected from spambots. ... To: This email address is being protected from spambots. ... implementation of the joint call. ... make an afford in finding a solution for the topic of a joint call and to . ... call, because it is a last possibility for launching a joint call within the . ... MAO NASU . ...
[ Сохраненная копия ]  Ссылки http://www.mao.kiev.ua/index.php/en/forum/info/118-fw-astronet-task-5-5-joint-call -- 35.1 Кб -- 11.04.2016
Похожие документы

1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | След.


Астронет | Научная сеть | ГАИШ МГУ | Поиск по МГУ | О проекте | Авторам

Комментарии, вопросы? Пишите: info@astronet.ru или сюда

Rambler's Top100 RFBR Яндекс цитирования