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

1 | 2 | 3 | След.

Показаны документы, содержащие фрагменты текста из документа
http://vega.inp.nsk.su/~inest/astrolib/Sun/kursoviki/lines-c/lines.aux.

1. How Directory, Location and Files sections work
The sections <Directory> , <Location> and <Files> can contain directives which only apply to specified directories, URLs or files respectively. Also htaccess files can be used inside a directory to apply directives to that directory. ... The order of merging is: . ... If multiple <Directory> sections apply to the same directory they are processed in the configuration file order. ... Using the options in question is only possible inside a <Directory> section (or a .htaccess file). ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/sections.html -- 7.0 Кб -- 20.06.2002
Похожие документы
Еще в разделе: (Показать все результаты (>53) - neptun.sai.msu.ru/ )

2. To both compress and view a particular section
. Next: To display a particular Up: *display, xdisplay, xexamine* - Previous: To view a section . tv> display ``xdata$rp110590.qp[block=4][1673:1800,2273:2400]'' . This is a tricky operation. The order of the instructions is critical. The image must first be compressed, then the section specified using the coordinates of the compressed image (logical coordinates). The above will display a 128 128 section. rsdc@cfa.harvard.edu . 1998-06-10
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/PROS/PUG/node71.html -- 3.6 Кб -- 01.10.2012
Похожие документы

3. Use of arrays and array sections
The English word "array" is translated into Swedish as "f lt" which is retranslated into English as "field". We may therefore perhaps use the word field either by mistake or as a suitable name of a specific array. A new feature of Fortran 90 is that you can work directly with a whole array or an array section without explicit (or implicit) DO -loops. ... An array is defined to have a shape given by its number of dimensions (called " rank ") and the extent for each one of these. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/c11.html -- 5.4 Кб -- 10.02.1996
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/f90/c11.html -- 5.4 Кб -- 10.02.1996
Похожие документы

4. Sections of the On-line Manual
Section ID Description . 1 User commands 1M System administration commands 2 System calls 3 Library functions 4 File formats 5 Headers, tables and Macros 7 Special files l Local Commands .
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/tables/man_sections.html -- 1.9 Кб -- 17.01.1997
Похожие документы

5. Armagh Observatory
... Armagh Observatory, College Hill, Armagh BT61 9DG, +44 (0)28 3752 2928 . The distance of the Sun from Earth is the basic unit of all astronomical distances. ... The 18th century transits of Venus allowed a proper geometrical determination of this unit to be made for the first time. ... One of the most famous of these problems is the black drop effect. ... They calculated the mean distance to the Sun to be 95 million miles whereas the currently accepted value is close to 93 million miles. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/venustransit/exhibit/section-III-IV.html -- 8.2 Кб -- 19.07.2011
Похожие документы

6. http://observ.pereplet.ru/images/evgeny/xorg.conf
... file but would like it to be automatically updated # again, run the following command: # sudo dpkg-reconfigure -phigh xserver-xorg Section Files EndSection Section InputDevice Identifier Generic Keyboard Driver kbd Option CoreKeyboard Option XkbRules xorg Option XkbModel pc105 Option XkbLayout us ...
[ Сохраненная копия ]  Ссылки http://observ.pereplet.ru/images/evgeny/xorg.conf -- 5.4 Кб -- 10.12.2007
Похожие документы
Еще в разделе: (Показать все результаты (>4) - observ.pereplet.ru/ )

7. Michael Kuznetsov HOME PAGE
Michael Kuznetsov . ONLINE HOME PAGE . ... My old school class . ... The members of my astronomy club . ... My ideas . My biography . ... My old school class" - this section tells about my school life. ... The members of my astronomy club" - here you can find some information about my small teaching work at my school. ... My ideas" - themes and ideas for discussions. My biography" - some information. ...
[ Сохраненная копия ]  Ссылки http://lnfm1.sai.msu.ru/~mihailo/eng/mainengl.html -- 4.1 Кб -- 08.02.2000
Похожие документы
Еще в разделе: (Показать все результаты (>54) - lnfm1.sai.msu.ru/ )

8. 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; } . ...