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

1 | 2 | 3 | 4 | 5 | След.

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

1. Apache 2.0 Hook Functions - Apache HTTP Server
... Apache HTTP Server Version 2.2 . Apache > HTTP Server > Documentation > Version 2.2 > Developer Documentation . ... In general, a hook function is one that Apache will call at some point during the processing of a request. ... Use the AP_DECLARE_HOOK macro, which needs to be given the return type of the hook function, the name of the hook, and the arguments. ... During initialisation, the server will call each modules hook registering function, which is included in the module structure: . ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/manual/de/developer/hooks.html -- 13.8 Кб -- 21.01.2013
Похожие документы

2. http://www.atnf.csiro.au/computing/software/gipsy/tsk/coder.dc1
Name: CODER Purpose: Create C-code for simple programs Category: UTILITY, COMPILE File: coder.c Author: M. Vogelaar Keywords: PROGRAM= Name of C-program: [example] Name of C-file (without extension '.c') that will be created. ... If you select OVERWRITE=N you are prompted to give a new name. ... Each application document has one line explaining the purpose of the application. ... AUTHOR= Name of Author: [default given by program] Each application document must include the name of the author. ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/gipsy/tsk/coder.dc1 -- 6.8 Кб -- 30.03.1998
Похожие документы

3. Stellarium: LabelMgr Class Reference
Stellarium 0.12.3 . ... Classes . ... LabelMgr Class Reference . ... intљ . labelObject (const QString &text, const QString &objectName, bool visible=true, float fontSize=14, const QString &fontColor="#999999", const QString &side="E", double labelDistance=-1.0, const QString &style="TextOnly") . ... labelScreen (const QString &text, int x, int y, bool visible=true, float fontSize=14, const QString &fontColor="#999999") . ... setLabelText (int id, const QString &newText) . ... virtual voidљ . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/classLabelMgr.html -- 37.7 Кб -- 28.02.2014
Похожие документы

4. Manual Page: htpasswd - Apache HTTP Server
NAME htpasswd - Create and update user authentication files SYNOPSIS htpasswd [ - c ] [ - m | ... p ] passwdfile username password htpasswd - n [ - m | ... p ] username password DESCRIPTION htpasswd is used to create and update the flat-files used to store usernames and password for basic authentication of HTTP users. ... Resources available from the httpd Apache web server can be restricted to just the users listed in the files created by htpasswd. ... The user is prompted for the password. ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/programs/htpasswd.html -- 9.8 Кб -- 20.06.2002
Похожие документы

5. Recreating Einstein Level One Processing Exposure Masks and Background Maps in
... This paper describes the main algorithms used by the Einstein Level One processing to create the exposure masks and the background maps for Einstein IPC images, and how these algorithms were recreated in the IRAF environment. Our goal was to recreate the algorithms used by the Level One Processing to create exposure masks and background maps for Einstein Image Proportional Counter (IPC) data (cf. sections 2.5 and 2.7 of Harnden et al. ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass94/vanstoned.html -- 11.6 Кб -- 03.11.2000
Похожие документы

6. Database of Optical Constants -- Level: welcome
The database contains references to the papers, data files and links to the Internet resources related to measurements and calculations of the optical constants in the wavelength interval from X-rays to radio domain. ... References to some useful books and reviews on the subject (e.g. the classical handbooks edited by E.D.Palik) and links to Internet collections of optical constants and personal WWW pages with related software were also placed in the database. You have arrived at our welcome page. ...
[ Сохраненная копия ]  Ссылки http://www.astro.spbu.ru/JPDOC/ -- 10.8 Кб -- 19.11.2010
Похожие документы

7. Doug Burke's Perl/S-Lang pages: Structure examples
... Doug's Home Page . ... S-Lang structures are converted to hash references in Perl , as shown below. ... n\n ; print Structure contents:\n ; # you can treat $s as a reference to a hash array in most respects, except: # - the order of the keys in the array matches that of the # original S-Lang structure # while ( my ( $ key , $ value ) = each %{$s} ) { print key $ key \t has a value of $ value \n ; } print \n ; $$s{afield} = 'a changed field value '; print ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~dburke/perl-slang/examples_structs.html -- 9.6 Кб -- 02.10.2012
Похожие документы

8. ImageStack (ImageJ API)
... Note that the size of the returned array may be greater than the number of slices currently in the stack, with unused elements set to null. public int getSize () . Returns the number of slices in this stack. public java.lang.String[] getSliceLabels () . ... Returns null if the stack is empty or the label of the first slice is null. public java.lang.String getSliceLabel (int n) . ... Returns null if the slice does not have a label. public void setSliceLabel (java.lang.String label, int n) . ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/astroimagej/imagej/api/ij/ImageStack.html -- 29.5 Кб -- 02.12.2010
Похожие документы

9. pipe() - Low level Piping
Next: Interrupts and Signals Up: Piping in a C program Previous: popen() - Formatted Piping . int pipe(int fd[2]) - creates a pipe and returns two file descriptors, fd[0], fd[1] . fd[0] is opened for reading, fd[1] for writing. pipe() returns 0 on success, -1 on failure and sets errno accordingly. ... Pipes opened with pipe() should be closed with close(int fd) . ... An example of piping in a C program is plot.c and subroutines and is detailed in Appendix . ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/subsubsection2_18_4_2_2.html -- 2.8 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/subsubsection2_18_4_2_2.html -- 2.8 Кб -- 11.09.2010
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/subsubsection2_18_4_2_2.html -- 2.8 Кб -- 02.10.2012
Похожие документы

10. Create a file with the cat command
. Type the command cat > name_of_file . Now type in your text. Press the <Return> key to start a new line. When you have finished typing in your text, enter Ctrl-d (Press and hold down the Ctrl key and type a "d"). This stops the cat command and returns you to the system prompt. **Caution** . Did You Know? . Examples .
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/tasks/create_cat.html -- 2.2 Кб -- 17.01.1997
Похожие документы

11. http://www.astronomy.com/sitefiles/resources/image.aspx?item=%7BA0F1E8F1-E935-4511-A025-9A9D266F00DF%7D
A massive mountain range lying just south of TitanтАЩs equator runs northwest-southeast through this newly released image from the Cassini spacecraft. The range, called by scientists тАЬTitanтАЩs Sierra,тАЭ extends 93 miles (150 km) long by 19 mi (30 km) wide. Cryogenic lava, a soup of ammonia and water, welling up from below as TitanтАЩs crust was pulled apart tectonically probably created it. ... The picture reveals features as small as 1,300 feet (400 meters) across. ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.com/sitefiles/resources/image.aspx?item=%7BA0F1E8F1-E935-4511-A025-9A9D266F00DF%7D -- 4.1 Кб -- 10.04.2016
Похожие документы

12. Image: Another view. Myself included.
. Album : Фотоальбом Сергея Аюкова :: Travels to distant places and countries :: 1997/08 Japan (Kyoto, Nara) :: 18/08 Higashi-Honganji temple . Up . << Prev . Another view. Myself included. Next >> . Album created by album generator from Marginal Hacks by David Madison on Wed Jun 5 20:38:36 2013 .
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/album/trips/1997.08.Japan/18.Higashi-Honganji/tn/b15l.jpg.index.html -- 5.2 Кб -- 05.06.2013
Похожие документы

13. Irina Glushneva
... The main field of my investigations is stellar spectrophotometry. As a result of scientific activity of our group spectrophotometric catalog was created including energy distribution data on 900 stars in the range 3200-7600AA and 250 stars in the range 6000-10800AA (Voloshina et al., Spectrophotometry of Bright Stars, ed. I.N.Glushneva, 1982, Moscow, Nauka, in Russian). ...
[ Сохраненная копия ]  Ссылки http://uranus.sai.msu.ru/glush.html -- 2.6 Кб -- 20.07.2009
Похожие документы
Еще в разделе: (Показать все результаты (>16) - uranus.sai.msu.ru/ )

14. lsst.tcc: python/tcc/mir/mirrorDeviceSet.py Source File
lsst.tcc љ 1.2.2-3-g89ecb63 . ... Files . ... python . tcc . mir . mirrorDeviceSet.py . ... 3 љ from twistedActor import DeviceSet, LinkCommands, UserCmd . ... 8 љ SlotList = ( "prim" , "sec" , "tert" ) . ... 32 љ def connectOrInit (self, slotList=None, userCmd=None, timeLim=DefaultTimeLim): . ... 49 љ if userCmd is None : . ... 54 љ def status (self, slotList=None, userCmd=None, timeLim=DefaultTimeLim): . ... 68 љ def init (self, slotList=None, userCmd=None, timeLim=DefaultTimeLim): . ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/Telescopes/TCC/html/mirror_device_set_8py_source.html -- 24.1 Кб -- 14.09.2015
Похожие документы

15. Space Shuttle created at Rapid Rockets and Wicked Robots | International Year
. Home . News . Gallery . Events . Twitter . Press Releases . Links . Contact Us . Calendar . Press & Web Coverage . Previous . Next . List . Thursday, 16 July 2009 00:17 . International Year of Astronomy, Ireland National Node . [Back To Top] .
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/scholars/iya/gallery/local_events/rapid_rockets_and_wicked_robots/space_shuttle_created_at_ra.html -- 6.5 Кб -- 31.12.2009
Похожие документы

16. Journal "Peremennye Zvezdy"
... Credit Copyright: LRO , SVC , NASA Explanation: What is the history of the Moon? The Moon was likely created from debris expelled when a Mars-sized object violently impacted the Earth about 4.5 billion years ago. ... Rocks large and small continued to impact the surface, including a particularly large impact that created Aitken Basin about 4.3 billion years ago. ... Over the next few billion years lava flowed into Earth-side basins , eventually cooling into the dark maria we see today. ...
[ Сохраненная копия ]  Ссылки http://www.astronet.ru/db/varstars/msg/1262622 -- 8.2 Кб -- 20.03.2012
Похожие документы
Еще в разделе: (Показать все результаты (>80297) - www.astronet.ru/ )

17. In The Beginning, God Created......prophecy - an Astronomy Net God Science
God Science Forum Message . Forums: . ... God and Science ћ SETI ћ Software ћ UFO ћ XEphem . ... God and Science | ... In The Beginning, God Created......prophecy . ... I am beginning to believe that Genesis creation is about the creation of prophecy as much as it is a statement that God is the creator. ... So I ask, are you (anyone) willing to consider Gen 1 2 as stories of prophecy or are you determined that it is either about science or a literal 7-day creation? ... www.astronomy.net . ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.net/forums/god/messages/32316.shtml -- 14.2 Кб -- 09.04.2016
Похожие документы

18. Armagh Planetarium Events
News of events at Armagh Planetarium . ... Events . ... Coming to galaxy near you is The Stars Awaken, a wonderful exhibition of€а full-size fan-built props and creations inspired by the amazing Star Wars saga! ... Our course Stargazing the Night Sky€аwill be presented this spring at Queens University of Belfast. ... Celebrate Stars Wars at the Stars Awaken Exhibition Posted on March 3, 2016 . ... Click here to receive news of special events at Armagh Planetarium . 2016 Armagh Planetarium Events. ...
[ Сохраненная копия ]  Ссылки http://www.armaghplanet.com/events/ -- 43.4 Кб -- 09.04.2016
Похожие документы

19. Электронная библиотека астронома-любителя. RU.SPACE.NEWS - архив за 28 октября
Электронная библиотека астронома-любителя. ... библиотека . архив RSN . ... Ru.Space.News: . Октябрь 1998 . ... 5, 1998 Greenbelt, MD 20771 Newsroom Phone: 301-286-8955 NOTE TO EDITORS/NEWS DIRECTORS: 98-158 HISTORIC JOHN GLENN FLIGHT TO FEATURE MARYLAND AND GODDARD SCIENCE EXPERIMENTS When Mercury astronaut and Ohio Senator John Glenn returns to space October 29, a fascinating array of science experiments from the Goddard Space Flight Center and Maryland students will fly with him. ...
[ Сохраненная копия ]  Ссылки http://www.astrolib.ru/rsn/1998/10/28/ -- 15.1 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>252) - www.astrolib.ru/ )

20. ranking [SAI Virtual Observatory - Wiki]
Trace: ranking . ... CREATE OR REPLACE FUNCTION my_rank (tsvector, tsquery, int ) RETURNS float AS $$ use List::Util qw(min max); my ($string, $ query ) = @_; my $maxpos = 0; # Parse tsvector, taking into account positional information foreach (split / /, $string){ if(/^'(\w+)'(:([0-9,]+))?$/){ foreach(split /,/, $3){ $ vector {$_} = $1; $maxpos = max($maxpos, $_); } } } my @ vector = map {$ vector {$_}} sort {$a = $b} keys(% vector ); # Parse tsquery, assuming it to be ORed only $ ... SAI VO | ...
[ Сохраненная копия ]  Ссылки http://vo.astronet.ru/wiki/ranking -- 12.8 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>2905) - vo.astronet.ru/ )

1 | 2 | 3 | 4 | 5 | След.


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

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

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