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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.atnf.csiro.au/computing/software/miriad/doc/intf2c.html.

1. Character Device Drivers
... int major . ... Here is an example of foo_write() : static int foo_write(struct inode * inode, struct file * file, char * buf, int count) { unsigned int minor = MINOR(inode->i_rdev); char ret; while (count > 0) { ret = foo_write_byte(minor); if (ret < 0) { foo_handle_error(WRITE, ret, minor); continue; } buf++ = ret; count-- } return count; } foo_write_byte() and foo_handle_error() are either functions defined elsewhere in foo.c or pseudocode. ... 2. return value of foo_write(...) by My name here . ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/irlab/doc/library/linux/khg/HyperNews/get/devices/char.html -- 8.3 Кб -- 23.03.2000
Похожие документы

2. Doug Burke's Perl/S-Lang pages: Datatype examples
... Doug's Home Page . ... In the examples below we show a number of ways that data can be moved back and forth between S-Lang and Perl . ... Source code typeof : "undef"; __END__ __SLang__ variable foo = Any_Type [3]; foo[0] = "a string"; foo[1] = 23; define getfoo(x) { return foo[x]; } message( "In S-Lang:" ); vmessage( "typeof(foo[0]) = %s", string(typeof(foo[0])) ); vmessage( "typeof(foo[1]) = %s", string(typeof(foo[1])) ); vmessage( "typeof(foo[2]) = %s", string(typeof(foo[2])) ); . ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~dburke/perl-slang/examples_datatypes.html -- 12.1 Кб -- 02.10.2012
Похожие документы
Еще в разделе: (Показать все результаты (>3591) - hea-www.harvard.edu/ )

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

4. Dynamic HTML in Communicator
... The previous example, Chapter 12, "Expanding Colored Squares Example," illustrates how to expand and contract the clipping region of a layer without changing the wrapping width of the layer. This example illustrates how to capture mouse events so that the user can make a layer's wrapping width wider or narrower by dragging the mouse. ... how to capture mouse events for a layer . how to change the wrapping width of a layer by using the load() function . ... Capturing Events for the Layer . ...
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/~vab/html.doc/dhtml/dynhtml/layers38.htm -- 11.3 Кб -- 13.08.1997
Похожие документы

5. Programming in C
... Lecture notes + integrated exercises, solutions and marking . ... C/C++ Program Compilation . ... UNIX Library Functions . ... Further Data Types . ... Not assigning a pointer to memory address before using it . ... Exercise . ... Threads: Basic Theory and Libraries . ... Thread Levels . ... Global and Private Thread-Specific Data Example . ... Example Use of Thread Specific Data:Rethinking Global Variables . ... Further Threads Programming:Thread Attributes (POSIX) . ... Thread programming examples...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/CE.html -- 47.0 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/CE.html -- 47.0 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/CE.html -- 47.0 Кб -- 02.10.2012
Похожие документы

6. Stellarium: LogBook Class Reference
Stellarium 0.12.3 . ... Classes . ... Renderer . ... ClassљList . ... LogBook Class Reference . ... voidљ . enableLogBook (bool b) . ... virtual boolљ . ... Detect or show the configuration GUI elements for the module. ... virtual voidљ . ... getCallOrder ( StelModuleActionName actionName) const . ... virtual bool LogBook::configureGui . boolљ . ... virtual void LogBook::draw . ... The main StelStyle instance should be passed. virtual void LogBook::init . ... virtual void LogBook::update . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/classLogBook.html -- 27.9 Кб -- 28.02.2014
Похожие документы

7. A Java-IRAF Spectrum Visualization Tool
... A Java application designed to display spectra from Hubble Space Telescope's STIS instrument relies on a Java-IRAF interface to access the data in a efficient way. ... A simple spectrum visualization tool is being developed by the Science Software Group at the Space Telescope Science Institute (STScI), basically to evaluate the capabilities (and weaknesses) of Java as a possible environment for development of data visualization and analysis tools tailored to Hubble Space Telescope (HST) data. ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass98/buskoic2/ -- 12.7 Кб -- 16.07.1999
Похожие документы

8. Convolver (ImageJ API)
... METHOD . ... All Implemented Interfaces: . ... public class Convolver . ... This method is called by ImageJ to inform the plugin-filter about the passes to its run method. int . ... Method Detail public int setup (java.lang.String arg, ImagePlus imp) . ... This method is called once when the filter is loaded. 'arg', which may be blank, is the argument specified for this plugin in IJ_Props.txt or in the plugins.config file of a jar archive containing the plugin. 'imp' is the currently active image. ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/astroimagej/imagej/api/ij/plugin/filter/Convolver.html -- 26.1 Кб -- 02.12.2010
Похожие документы

9. Defining files with wildcard characters
. Wildcard characters can be used to represent many other characters. Use them whenever you need to define a string of characters, such as a filename, for use with a command. Useful wildcards are: * matches any characters ? match any single character [...] matches any character in the enclosed list or range. Examples .
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/tasks/defining.html -- 2.1 Кб -- 17.01.1997
Похожие документы

10. DNA: The Molecule that Defines You
... Credit Copyright: Drew Berry , WEHI , HHMI , DNALC Explanation: Every living thing on planet Earth is defined by its own molecule -- what's yours? ... The many copies of DNA that compose you were all copied from one single cell, and your body is continually making new copies. ... No one knows if DNA-like molecules will also define life that originates outside of Earth. ... 2011 2012 . ... Publications with keywords: life - molecules . Publications with words: life - molecules . ...
[ Сохраненная копия ]  Ссылки http://www.astronet.ru/db/xware/msg/1269215 -- 15.1 Кб -- 23.08.2012
Похожие документы
Еще в разделе: (Показать все результаты (>51424) - www.astronet.ru/ )

11. sfit help file
... While Sfit accepts input from "stdio", it is more natural to save/edit commands in a file (eg "solve_input.sfit") and run the code simply by entering > Sfit solve_input.sfit [linelist] . ... The model grid (3.4MB) produced by Example 1 and a selection of input spectra ( f008 f036 f068 f304 f354 ), together with SFIT output files are also given in this folder . ... The model grid (2.8MB) produced by Example 3 and an input spectrum together with SFIT output files are also given in this folder . ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/~csj/software_store/guide/sfit.html -- 10.2 Кб -- 03.07.2008
Похожие документы

12. Configuring Multiple IP Addresses
... The question is, how to get a machine with one network interface to respond to more than one IP addresses. ... changes (most likely only in the includes). ---------------------netinet/if_vif.h-------------------------------------- typedef struct { struct ifnet vif_if; struct ifnet *vif_sif; /* slave interface */ int vif_flags; } vif_softc_t; #define VIFMTU (1024+512) --------------------------------------------------------------------------- ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/misc/vif-info.html -- 12.8 Кб -- 15.10.2001
Похожие документы

13. JavaScript Form Validator Documentation
The Form validation script is distributed free from JavaScript-Coder.com . ... When there are many fields in the form, the JavaScript validation becomes too complex. ... Each field in the form can have 0, 1, or more validations. ... Just after defining your form, Create a form validator object passing the name of the form . ... FORM> . ... You can add any number of validations.The list of validation descriptors are provided at the end of the documentation. ... option value="" selected>[choose yours] . ...
[ Сохраненная копия ]  Ссылки http://hea.iki.rssi.ru/Z-90/scripts/Documentation.html -- 15.5 Кб -- 03.08.2003
Похожие документы
Еще в разделе: (Показать все результаты (>485) - hea.iki.rssi.ru/ )

14. Brilliant! Thanks - an Astronomy Net Blackholes2 Forum Message
Blackholes2 Forum Message . Forums: . ... Brilliant! Thanks . ... My interpretation of the MM experiment was that it did not prove the speed of light was constant in all directions because it could not see direction. ... People assume that the space containing the experiment is rigid (or 4-D grid space-time with fixed scale. ... www.astronomy.net . ... Forum posts are Copyright their authors as specified in the heading above the post. "dbHTML," "AstroGuide," "ASTRONOMY.NET" & "VA.NET" . ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.net/forums/blackholes2/messages/4927.shtml -- 16.9 Кб -- 09.04.2016
Похожие документы

15. Ботинки Call It Spring - Call It Spring - Call It Spring Туфли женские.
... Цвет: разноцветный . ... Материал верха: искусственная кожа . ... Размер US: 37,5 . ... Ботинки Call It Spring. ... Бренд: DELL, Поверхность экрана: глянцевая, Разрешение экрана: 1920x1080, Производитель процессора: Intel, Серия процессора: Intel Core M, Оперативная память: 4Gb, Жесткий диск: SSD, Тип графического адаптера: Интегрированный, Серия графического процессора: Intel HD Graphics 5xxx, Предустановленная ОС: Windows 8 Professional, Цвет: черный, Графический процессор: Intel HD Graphics 5300 ...
[ Сохраненная копия ]  Ссылки http://astrokuban.info/astroku9512.html -- 20.6 Кб -- 14.02.2016
Похожие документы

16. Armagh Planetarium: Discover Primary Science | Astronotes
Astronotes Armagh Planetarium's Stellar Blog! ... 2011 saw 472 Irish primary schools showcase excellence in science and maths. ... The Discover Primary Science and Maths programme recognises the achievements of primary school children and teachers in the application of science and maths.€а Schools registered on the Discover Primary Science and Maths programme can apply for an Award of Science and Maths Excellence after they have met certain criteria for science and maths related activities. ...
[ Сохраненная копия ]  Ссылки http://www.armaghplanet.com/blog/irish-primary-schools-science-and-maths.html -- 44.3 Кб -- 09.04.2016
Похожие документы

17. lsst.tcc: include/tcc/tcsShim.h Source File
lsst.tcc љ 1.2.2-3-g89ecb63 . ... Files . ... include . tcc . tcsShim.h . ... 51 љ double const FL = 1.0; . ... 97 љ std::ostream & operator<< (std::ostream &os, ASTROM const &astrom); . ... 99 љ std::ostream & operator<< (std::ostream &os, FLDOR const &fldor); . ... 101 љ std::ostream & operator<< (std::ostream &os, PORIG const &porig); . ... 103 љ std::ostream & operator<< (std::ostream &os, SITE const &site); . ... 105 љ std::ostream & operator<< (std::ostream &os, TARG const &targ); . ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/Telescopes/TCC/html/tcs_shim_8h_source.html -- 27.6 Кб -- 14.09.2015
Похожие документы

18. http://www.astronomy.com/sitefiles/resources/image.aspx?item=%7B04F8D393-E225-4970-A714-4DCF6293B7FF%7D
. This example of a galaxy group lens in the CFHTLS-SL2S, called SL2SJ021408-053532, shows a very complex arc structure (in blue). Such complex arc geometries allow us to probe the details of the dark matter profiles associated with the group of yellow galaxies in the center of the image. Canada-France-Hawaii Telescope Corporation 2006
[ Сохраненная копия ]  Ссылки http://www.astronomy.com/sitefiles/resources/image.aspx?item=%7B04F8D393-E225-4970-A714-4DCF6293B7FF%7D -- 3.4 Кб -- 10.04.2016
Похожие документы

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. Отправлено межзвездное радиопослание "Cosmic Call 2003" - Вселенная, жизнь,
Добро пожаловать, Гость . ... Вселенная, жизнь, разум (Модераторы: ivanij , AlexAV , Nucleosome ) ? Отправлено межзвездное радиопослание "Cosmic Call 2003" . ... Гость . ... 6 июля года из Евпаторийского центра дальней космической связи (ЕЦДКС) было отправлено очередное, уже четвертое по счету, межзвездное радиопослание 'Cosmic Call 2003' к пяти окрестным (расстояние от 33 до 46 световых лет) звездам солнечного типа из созвездий Андромеда, Большая Медведица, Кассиопея, Орион и Рак. ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.ru/forum/index.php/topic,2959.0.html -- 35.6 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>259) - www.astronomy.ru/ )

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


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

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

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