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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.atnf.csiro.au/computing/software/gipsy/sub/wkey.dc2.

1. http://www.atnf.csiro.au/computing/software/gipsy/sub/deputy.dc2
Subroutine: DEPUTY Purpose: Start a task which temporarily assumes the role of the calling task. Category: SYSTEM, USER-INTERFACE File: srvreq.c Author: J.P. Terlouw Use: CALL DEPUTY( STRING, Input character IRC ) Output integer STRING character string containing a servant task name. ... The same set of keywords applies to all tasks spawned from successive calls to deputy. ... Example: CALL DEPUTY('KIJK',IRC) Related docs: WKEY.DC2 SUBST.DC2 XEQ.DC2 Updates: Aug 10, 1981: JPT, Original document. ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/gipsy/sub/deputy.dc2 -- 3.0 Кб -- 05.02.2001
Похожие документы

2. Writing programs that use comedi and comedilib
Comedi Documentation . ... Right to the source: #include <stdio.h> /* for printf() */ #include <comedilib.h> int subdev = 0; /* change this to your input subdevice */ int chan = 0; /* change this to your channel */ int range = 0; /* more on this later */ int aref = AREF_GROUND; /* more on this later */ int main(int argc,char *argv[]) { comedi_t *it; lsampl_t data; it=comedi_open("/dev/comedi0"); comedi_data_read(it,subdev,chan,range,aref,&data); printf("%d\n",data); return 0; } . ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/comedi/doc/x94.html -- 8.9 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/comedi/doc/x94.html -- 8.9 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/comedi/doc/x94.html -- 8.9 Кб -- 02.10.2012
Похожие документы

3. MAO NASU :: Topic: Call for applications to the PhD program of the API/GRAPPA,
... Recent Topics . ... MAO main . ... Call for applications to the PhD program of the API/GRAPPA, Amsterdam . ... Тема: Call for applications to the PhD program of the API/GRAPPA, Amsterdam . ... We are now advertising the Call for Applications to the PhD Program of the Anton Pannekoek Institute for Astronomy (API) and the Gravitation and Astroparticle Physics Amsterdam (GRAPPA) Centre, at the University of Amsterdam. ... Applications need to be submitted on or before December 11th, 2014. ... MAO NASU ...
[ Сохраненная копия ]  Ссылки http://www.mao.kiev.ua/index.php/en/forum/info/270-call-for-applications-to-the-phd-program-of-the-api-grappa-amsterdam -- 20.6 Кб -- 11.04.2016
Похожие документы

4. CSPICE Routines: ERRACT_C
... Abstract Retrieve or set the default error action. ... ABORT" -- When an error is detected by a CSPICE routine, or when ANY routine signals detection of an error via a call to sigerr_c , the toolkit will output any error messages that it has been enabled to output (see errprt_c and errdev_c also ), and then execute an exit statement. ... ABORT" In this mode, the toolkit sends error messages to the error output device and then stops. ... Index_Entries get/set default error action . ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/~sontag/spicedocs/cspice/erract_c.html -- 15.1 Кб -- 17.12.2005
Похожие документы

5. Active Region 1002 on an Unusually Quiet Sun
... Active Region 1002 on an Unusually Quiet Sun . ... Our Sun has shown few active regions -- that house even fewer associated sunspots -- for over a year now, and such a period of relative calm is quite unusual. What is well known is that our Sun is in a transitional period between solar cycles called a Solar Minimum , where solar activity has historically been reduced. ... Publications with keywords: active region - solar cycle - sunspot . ... A Sunspot in the New Solar Cycle . ... Solar Moss . ...
[ Сохраненная копия ]  Ссылки http://www.astronet.ru/db/xware/msg/1229671 -- 15.2 Кб -- 24.09.2008
Похожие документы

6. Summary of Fortran 77 statements
... Executable GOTO statements . ... Input/output statements . ... GOTO statement_number_variable, (snr1, snr2, snr3) - an assigned GOTO statement, jumps to the statement number that equals the statement number variable (an arbitrary number of statement numbers snr are permitted). GOTO statement_number_variable - this is an assigned ordinary GOTO statement, it is a combination of the first one, GOTO snr1, and previous one, GOTO statement_number_variable without a list of permitted alternatives. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/a2.html -- 15.9 Кб -- 23.03.1996
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/f90/a2.html -- 15.9 Кб -- 23.03.1996
Похожие документы

7. ImageMath (ImageJ API)
... Class . ... METHOD . ... java.lang.Object ij.plugin.filter.ImageMath . ... This method is called by ImageJ to inform the plugin-filter about the passes to its run method. int . ... This method is called after setup(arg, imp) unless the DONE flag has been set. ... The method should return a combination (bitwise OR) of the flags specified in interfaces PlugInFilter and ExtendedPlugInFilter . ... This method is called by ImageJ to inform the plugin-filter about the passes to its run method. ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/astroimagej/imagej/api/ij/plugin/filter/ImageMath.html -- 23.4 Кб -- 02.12.2010
Похожие документы

8. User-space device drivers
... It is not always necessary to write a device driver for a device, especially in applications where no two applications will compete for the device. ... If your process is running as superuser (root), you can use the mmap() call to map some of your process memory to actual memory locations, by mmap() 'ing a section of /dev/mem. ... If you need to use cli() , you need a kernel-space driver, and a user-space driver will only cause grief as more and more Linux users use SMP machines. ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/irlab/doc/library/linux/khg/HyperNews/get/devices/fake.html -- 8.8 Кб -- 23.03.2000
Похожие документы

9. Сапоги BAILELUNA - BAILELUNA - BAILELUNA Туфли Instreet
... Тип: Сапоги . Внутренний Материал: Натуральный мех . Материал: Натуральная кожа . ... Цвет: коричневый . Коллекция: Весна-лето 2016 . ... Материал подошвы: резина . ... Туфли Instreet. ... Бренд: Sinbo, Тип: Чайник, Мощность: от 2100 до 2500 Вт, Мощность: 2200 Вт, Объем: 1л - 1.5л, Объем: 1.5 л, Тип нагревательного элемента: закрытая спираль, Материал корпуса: металл, Особенности: Индикатор уровня воды, Цвет: серебристый . ... Основной материал: Серебро . ... Материал: Серебро . ...
[ Сохраненная копия ]  Ссылки http://astrokuban.info/astroku9770.html -- 20.8 Кб -- 14.02.2016
Похожие документы

10. http://lnfm1.sai.msu.ru/SETI/koi/conf/SETI-2011%20First%20Announcement.pdf
... Third IAA Symposium on SEARCHING FOR LIFE SIGNATURES Photo credit: http://ivs.nict.go.jp/mirror/public ations/gm2004/finkel/ Call for Papers St. Petersburg, Russia, June 27-30, 2011 http://iaaweb.org/content/view/295/434/ The Inter national Academy of Astronautics cr eated a SETI committee in the seventies now established in Per manent Study Group. ... Tentative Program Monday, June 27: Morning: PASSIVE SETI - Current and Near-Future Searches. ... Afternoon: ACTIVE SETI - Societal Issues. ... June. ...
[ Текст ]  Ссылки http://lnfm1.sai.msu.ru/SETI/koi/conf/SETI-2011%20First%20Announcement.pdf -- 180.1 Кб -- 28.01.2011
Похожие документы
Еще в разделе: (Показать все результаты (>284) - lnfm1.sai.msu.ru/ )

11. http://hea-www.harvard.edu/~fine/CFA/raw/CGI-security-guidelines
... The best way to illustrate the problem is with a few different examples. C example --------- The most well-known example exploits a common implementation of the UNIX popen() call, and affects primarily C programs. popen() allows the programmer to start up a command, and read from or write to it as if it were a file. ... Now imagine a CGI that uses popen to process user input. ... Perl Script example ------------------- Perl has the same problem with it's open command the C has with popen. ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/CFA/raw/CGI-security-guidelines -- 4.2 Кб -- 01.12.1998
Похожие документы
Еще в разделе: (Показать все результаты (>2182) - hea-www.harvard.edu/ )

12. Algorithm
... epframes * Read input parameters: *** Open the ODF in directory SAS_ODF *** (can also be defined via --odfdir or -o; see taskmain) call OAL_odfInfo *** Print infos about the proposal call OAL_proposalInfo *** Specify which exposure and CCD one is interested in call OAL_expandFileName(shortfileName,fileName) OAL_selectScope(EPN, IMAGING) or TIMING or BURST call OAL_setState(fileName) *** Print Infos about the exposure ... start time of first frame call setAttribute(outccd,"TSTOP" ,...) ! ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/8.0.0/doc/epframes/node14.html -- 9.7 Кб -- 01.07.2008
Похожие документы
Еще в разделе: (Показать все результаты (>17666) - xmm.vilspa.esa.es/ )

13. Command Syntax
... A MIDAS command line is structured as command/qualifier par1 par2 ... par8 !comments . ... In case you omit the qualifier, the default qualifier of that command is used by MIDAS. The default qualifier of a MIDAS command may be displayed via SHOW/COMMAND command . ... If the command procedure which is activated by a MIDAS command uses the CROSSREF command, it is also possible to execute that command via: command/qualifier label4=par4 label1=par1 label7=par7 ... !comments . ... command/qualifier ? ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/precise/Midas_doc/doc/95NOV/vol1/node33.html -- 9.6 Кб -- 23.02.1996
Похожие документы

14. http://www.naic.edu/~tghosh/software/parcheck.pro
Viewing contents of file '/net/www/deutsch/idl/idllib/ghrs/pro/ parcheck .pro' ;********************************************************************* ;+ ; ;*name: ; parcheck (general idl library 01) 30-mar-1987 ; ;*class: ; error checking ; ;*category: ; ;*purpose: ; to check that a procedure has been called with the minimum of allowed ; number of parameters . ; ;*calling sequence: ; parcheck , nparm , minparms , callingpro ; ;* parameters : ; ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~tghosh/software/parcheck.pro -- 4.4 Кб -- 24.01.2003
Похожие документы

15. KPNO 4-meter Active Primary - Software
... 216, Astronomical Data Analysis Software and Systems IX, eds. N. Manset, C. Veillet, D. Crabtree (San Francisco: ASP), 385 . ... A software system for active control of the KPNO 4-meter primary mirror is presented. The system consists of an embedded PC running RT-Linux, controlling a set of A/D and D/A modules. ... The primary mirror is supported by 33 pressurized units. ... The communication with the Telescope Control System is implemented using a KPNO standard ``software router'' package. ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass99/P2-06/ -- 11.4 Кб -- 04.10.2000
Похожие документы

16. http://www.ssau.ru/files/science/conferences/itnt2015/itnt_2015_70.pdf
TOOLS OF TEST GENERATION FOR SATELLITES CONTROL PROGRAMS Andrey Tyugashev, Ekaterina Myasnikova, Elena Sopchenko S.P. Korolyov Samara State Aerospace University (National Reseach University) The paper presents a research in the field of test automation for testing spacecraft control programs. ... Programmers or designers of spacecraft systems write tests manually. ... Tests are carried out by issuing the control actions on the spacecraft and condition monitoring systems parameters of the spacecraft. ...
[ Текст ]  Ссылки http://www.ssau.ru/files/science/conferences/itnt2015/itnt_2015_70.pdf -- 161.6 Кб -- 04.08.2015
Похожие документы

17. ESO - Newsletter March 2016
... ESO Science Newsletter March 2016 . ... Follow the links or visit ESO Science Announcements to read more. ... The Call for Proposals for observations at ESO telescopes in Period 98 (1 October 2016 - 31 March 2017) has been released. ... The deadline for proposals is 12:00 CEST 31 March 2016 . ... ESO Workshop, ESO Headquarters, Garching, Germany, 27 June БЂ“ 1 July, 2016 . ... Upcoming ESO or ESO-Related Workshops . ... The workshop is open for registration and the abstract deadline is 1 March 2016 ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/sci/publications/newsletter/mar2016.html -- 35.6 Кб -- 10.04.2016
Похожие документы

18. The layout of a program
Sometimes we require more than one line for a statement Print *, 'This is a long output line',& ' this is the second part',& ' and this is the third part!' Nowadays, in the free form, we continue a line with the symbol "&" (called ampersand), i.e. with the sign & at the end of the old line instead of an almost arbitrary character in column 6 of the new line. ... Exclamation mark in column 1 of course means a comment line also in the old fixed form. ... 3.1) What does the following line mean? ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/c3.html -- 5.1 Кб -- 11.02.1996
Похожие документы

19. ASP: Simple Effective Education and Dissemination (SEED) Grants For Astronomy
home education . SEARCH ASP SITE: Match ALL words Match ANY word . ... SEED Grants to Scientists . ... The ASP SEED Grant program supports the ASP's mission to advance science and science literacy through astronomy by encouraging active researchers to engage in public outreach, K-14 formal education, or informal education programs or activities. ... Development, use, and dissemination of a well-illustrated college-level presentation on a specific topic or problem in current research . ... search . ...
[ Сохраненная копия ]  Ссылки http://www.astrosociety.org/edu/grants/grants.html -- 24.5 Кб -- 02.10.2012
Похожие документы

20. The Sun: from active to quiet. Heliophysics between two solar cycles.
... Arrival to Moscow - Sheremetievo . ... Moscow transport - METRO . ... Address: 119991 Moscow, Leninski prospekt, 53 . ... S. Kuzin (LPI RAN, Russia) - chair . ... V. Grechnev (ISTP, Russia) . ... B. Somov (SAI MSU, Russia) . A. Stepanov (GAO RAN, Russia) . ... The Sun: active and quiet. ... Transients and flares in active and quiet solar corona. ...
[ Сохраненная копия ]  Ссылки http://www.tesis.lebedev.ru/ru/workshop2009.html -- 12.1 Кб -- 09.04.2016
Похожие документы

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


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

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

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