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

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

Показаны документы, содержащие фрагменты текста из документа
http://mavr.sao.ru/hq/sts/linux/book/c_marshall/section2_22_22.html.

1. Process Control: <stdlib.h>,<unistd.h>
... fork() . ... A process is basically a single running program. ... System is prototyped in <stdlib.h> . ... Each command and sorresponding arguments are put in a args array */ /* execvp is called to execute these commands in child process */ /* spawned by fork () */ /* cc -o fork fork .c */ #include stdio.h #include sys/types.h #include unistd.h main() { char buf [1024]; char * args [64]; for (;;) { /* * Prompt for and read a command. */ printf( Command: ); if (gets( ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/node22.html -- 11.7 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/node22.html -- 11.7 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/node22.html -- 11.7 Кб -- 02.10.2012
Похожие документы
Еще в разделе: (Показать все результаты (>940) - jet.sao.ru/ )

2. Module mod_actions
This module provides for executing CGI scripts based on media type or request method. ... Source File: mod_actions.c . ... Action . ... Syntax: Action action-type cgi-script . ... Examples: # Requests for files of a particular type: Action image/gif /cgi-bin/images.cgi # Files of a particular file extension AddHandler my-file-type .xyz Action my-file-type /cgi-bin/program.cgi . ... This directive adds an action, which will activate cgi-script when a file is requested using the method of method . ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/mod/mod_actions.html -- 7.1 Кб -- 03.10.2002
Похожие документы
Еще в разделе: (Показать все результаты (>116) - neptun.sai.msu.ru/ )

3. Astronomy HyperText Book: Stellar Evolution
... Stellar Evolution is driven entirely by the never ending battle between Pressure and Gravity . As imbalances are reached, the star is driven to find a new Energy source. ... Pressure and gravitational forces are equal, the star is stable and its core is sufficiently hot to fuse Hydrogen into Helium More about main sequence stars . ... The luminosity generated by the core fusion of Helium into Carbon is far greater than the shell luminosity associated with the fusion of Hydrogen into Helium. ...
[ Сохраненная копия ]  Ссылки http://zebu.uoregon.edu/textbook/se.html -- 4.8 Кб -- 16.12.1997
Похожие документы
Еще в разделе: (Показать все результаты (>226) - zebu.uoregon.edu/ )

4. OptInt PmWiki : PmWiki / Available Actions
OptInt PmWiki : Pm Wiki / Available Actions . Default actions . ... Cookbook actions . Page actions are applied to wiki pages, as a query string appended to the URL . ... displays dialog for setting/changing password of the specified page or group of pages, see passwords , see also $EnablePostAttrClearSession if you do not want to have the session cleared after validating change General use of passwords . ... display the specified page (default action if no ?action= is present) . ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/PmWiki/AvailableActions?action=print -- 25.5 Кб -- 01.03.2014
Похожие документы

5. mod_actions - Apache HTTP Server
... Apache HTTP Server Version 2.2 . Apache > HTTP Server > Documentation > Version 2.2 > Modules . ... This module provides for executing CGI scripts based on media type or request method. ... The Action directive lets you run CGI scripts whenever a file of a certain MIME content type is requested. ... Action action-type cgi-script [virtual] . ... Script method cgi-script . ... This directive adds an action, which will activate cgi-script when a file is requested using the method of method . ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/tb/manual/de/mod/mod_actions.html -- 11.1 Кб -- 10.12.2010
Похожие документы

6. mod_actions - Apache HTTP Server
... Apache HTTP Server Version 2.2 . Apache > HTTP Server > Documentation > Version 2.2 > Modules . ... This module provides for executing CGI scripts based on media type or request method. ... The Action directive lets you run CGI scripts whenever a file of a certain MIME content type is requested. ... Action action-type cgi-script [virtual] . ... Script method cgi-script . ... This directive adds an action, which will activate cgi-script when a file is requested using the method of method . ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/manual/en/mod/mod_actions.html -- 12.9 Кб -- 21.01.2013
Похожие документы

7. Home Page for SAOimage: The Next Generation
... user-defined data file formats . ... better integration with a user's analysis routines To add such functionality to SAOimage, we developed the XPA Messaging System that allows X programs to define points of public access through which data and commands can be exchanged with external programs. ... We have utilized XPA to develop "SAOimage: The Next Generation" (SAOtng), an extensible image display service that can cooperate with other processes and programs. ... SAOtng help pages . ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/RD/saotng/ -- 7.1 Кб -- 01.10.2012
Похожие документы

8. Pulsar Group PmWiki/Available Actions
... PmWiki . Summary: PmWiki group header. ... Summary: All PmWiki page actions (?action=) and other query parameters:) . ... Cookbook actions . ... See also site page actions . ... displays dialog for setting/changing password of the specified page or group of pages, see passwords , see also $EnablePostAttrClearSession if you do not want to have the session cleared after validating change { PmWiki /Passwords$:Summary} . ... edit the specified page, see basic editing { PmWiki/BasicEditing $:Summary} . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/people/pulsar/index.html?n=PmWiki.AvailableActions -- 34.1 Кб -- 01.03.2014
Похожие документы

9. Execute a command without creating a new process
. The exec statement causes the command specified as its argument to be executed in place of the current shell without creating a new process. For example: exec zmail -visual . This runs just the zmail program without a shell. When you quit the application the current shell also exits.
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.7.4.html -- 2.0 Кб -- 17.01.1997
Похожие документы

10. Laminations and group actions in€аdynamics
... A dynamical system is an action of the infinite cyclic group. Group action study is€аimportant for€аdifferent areas of€аdynamics and geometry. The topics of€аthe conference include: . ... Diophantine approximations and homogeneous flows, e.t.c. We plan a€аminicours by€аD.€аCalegari about the solution of€аthe Ahlfors' measure conjecture for limit sets of€аKleinian groups. ... In 5тАУ7€аminutes you'll see a€аchurch on€аyour right€атАФ turn right to€аBolshoy Vlasyevsky street after that. ...
[ Сохраненная копия ]  Ссылки http://www.mccme.ru/~urkud/lamgr/ -- 12.7 Кб -- 09.05.2011
Похожие документы

11. Batch Jobs
... Commands can be executed even when you are not physically at a terminal, or even logged on the system. ... Because you may not necessarily be on the system when the batch job is executed, the system relies on the command procedure for any information needed to complete the task. ... Since a batch job logs in under your username, your LOGIN.COM file will be executed before the batch command procedure (see "Defining Your Environment" on page 35 for information about setting up your LOGIN.COM file). ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/ftp/documents/system-docs/vms-guide/html/VUG_17.html -- 6.7 Кб -- 01.11.1995
Похожие документы

12. 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
Похожие документы

13. Alsvid - Python Programs for Processing FITS Astronomical Image Data
The Python programs offered here result from the development of methodology for processing image data with high precision, in a flexible command line system useful for astronomical and laboratory image processing. ... Alsvid is efficient in robotic and automated or scripted server processing of astronomical images, and also in interactive command line processing for research and visualization. ... In large part it replaces IRAF and IDL when scripted image processing is required. ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/alsvid/ -- 3.4 Кб -- 22.03.2016
Похожие документы
Еще в разделе: (Показать все результаты (>740) - www.astro.louisville.edu/ )

14. MAO NASU :: Topic: Fw: Actions directed to stop Russian aggression against
... Forum . ... Recent Topics . ... MAO main . ... Fw: Actions directed to stop Russian aggression against Ukraine . ... Subject: Re: Actions directed to stop Russian aggression against Ukraine . ... Actions directed to stop Russian aggression against Ukraine" and I hope . ... around Ukraine is very dangerous indeed and who thinks that together we . ... Board Categories MAO main - Info - MAO - news - Flame Technical - Technical Support(Forum)(пўпµя…пїпѕпґпґпµяЂппєп°(п¤пѕяЂяѓпј)) . ... MAO NASU . ...
[ Сохраненная копия ]  Ссылки http://www.mao.kiev.ua/index.php/en/forum/info/83-fw-actions-directed-to-stop-russian-aggression-against-ukraine -- 19.2 Кб -- 11.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>293) - www.mao.kiev.ua/ )

15. S.P. Korolev RSC Energia - International Space Station
... S.P. KOROLEV ROCKET AND SPACE CORPORATION ENERGIA . ... OAO RSC "Energia" . ... Company's History . ... History . Brief History of Rocket and Space Technology . ... Flights Chronology . ... Project History . ISS Russian Segment . ... ISS 45/46 . ... Estimation of fulfilment quality dependance level of the reactivity test performed by astronauts in relation to tiredness and other neurobehavioral reactions in 12-months space flight on the ISS. ... 2015 JSC "S.P. Korolev RSC "Energia" . ...
[ Сохраненная копия ]  Ссылки http://www.energia.ru/en/iss/researches/nasaexp/04.html -- 23.4 Кб -- 10.04.2016
Похожие документы

16. The SAOtng Programming Interface
... Easy to use C, FORTRAN, and UNIX interfaces provide direct access to SAOtng information, data, and control functions. ... XPA allows an Xt program such as SAOtng to define named ``public access points'' through which data and commands can be exchanged with other programs. ... New image files can be loaded using the file public access point: csh) imset file ../data/coma.fits Sending an image file name to the file access point causes SAOtng to load and display that image. ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass96/mandele.html -- 13.2 Кб -- 23.06.1998
Похожие документы

17. http://www.eso.org/sci/libraries/SPIE2008/7019-74_poster.pdf
Workstation Software Framework A Model Driven Development Framework L. Andolfato, R. Karban European Organisation for Astronomical Research in the Southern Hemisphere PROCESS The Workstation Software Framework (WSF) is a state machine model driven generate event driven software applications. State machine models are used to provides different, versatile generation options. ... A tool provided by WSF will transform the textual representation of the model in C++ state, event, and action classes. ...
[ Текст ]  Ссылки http://www.eso.org/sci/libraries/SPIE2008/7019-74_poster.pdf -- 327.0 Кб -- 15.07.2008
Похожие документы

18. IKI IPL home page
You can also see this page in Russian with using KOI8 (X Windows) or CP1251 (MS Windows) Cyrillic coding. The Laboratory supports the space TV experiments, mainly in the planetary exploration missions. ... Image Co-registration . ... PHOBOS mission - Martian satellites investigations. Phobos on the Martian limb, the image from Phobos-2 probe from 02/28/89. ... Russian Space Bulletin. ... Last modified at June,26 1997 Alexey Kuzmin: akuzmin@mx.iki.rssi.ru . Back to IKI home page ...
[ Сохраненная копия ]  Ссылки http://www.iki.rssi.ru/IPL/ -- 4.8 Кб -- 05.08.1997
Похожие документы
Еще в разделе: (Показать все результаты (>566) - www.iki.rssi.ru/ )

19. http://www.astrosociety.org/wp-content/uploads/2013/07/capitol-hill.pdf
Capitol Hill Basics The official legislative process begins when a bill or resolution is numbered (H.R. signifies a House bill and S. a Senate bill), referred to a committee and printed by the Government Printing Office. ... A bill can be referred to a subcommittee or considered by the committee as a whole. ... Referral to Other Chamber When a bill is passed by the House or the Senate, it is then referred to the other chamber, where it usually follows the same route through committee and floor action. ...
[ Текст ]  Ссылки http://www.astrosociety.org/wp-content/uploads/2013/07/capitol-hill.pdf -- 104.3 Кб -- 13.08.2013
Похожие документы
Еще в разделе: (Показать все результаты (>1111) - www.astrosociety.org/ )

20. http://xmm.vilspa.esa.es/sas/8.0.0/doc/playback.ps.gz
... By default playback only displays the content of the process information. ... showdaltrace respectively.) xmmsas 20080701 1801-8.0.0 XMM-Newton Science Analysis System Page: 2 3.1 Examples In the following we use the data set test.ds created as follows:  dscreatedataset name =' test.ds '  dsaddtable name ='table' rows=10 set =' test.ds  dssetattr to= test.ds % HELLO --type=string --value= hello ccb 1. playback -- sets = test.ds displays: ... Any data set. ...
[ Текст ]  Ссылки http://xmm.vilspa.esa.es/sas/8.0.0/doc/playback.ps.gz -- 44.7 Кб -- 02.07.2008
Похожие документы

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


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

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

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