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

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
Похож