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

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

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

1. Directory handling functions
Next: File Manipulation Routines Up: File and Directory Manipulation Previous: File and Directory Manipulation . This basically involves calling appropriate functions. int chdir(char path) - changes directory to specified path string. ... NOTE: rindex() is a string handling function that returns a pointer to the last occurrence of character c in string s , or a NULL pointer if c does not occur in the string. ( index() is similar function but assigns a pointer to 1st occurrence.) ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/subsection2_18_3_1.html -- 5.6 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/subsection2_18_3_1.html -- 5.6 Кб -- 11.09.2010
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/subsection2_18_3_1.html -- 5.6 Кб -- 02.10.2012
Похожие документы

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

3. Getting Common Information About Access Points
There are various kinds of generic information you can retrieve about an XPA access point by using the xpaget command. ... Each XPA access point supports a number of reserved sub-commands that provide access to different kinds of information, e.g. the access control for that access point. ... acl get (set) the access control list [options: host type acl, for set] . ... This access point is available only on the server machine. -env get (set) an environment variable [options: name (value, for set)] . ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/sbig/archive/xmccd-4.1/xmccd-4.1e/xpa-2.1.14/doc/info.html -- 7.9 Кб -- 25.12.2003
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/RD/xpa/info.html -- 7.9 Кб -- 01.10.2012
Похожие документы

4. CSPICE Routines: KDATA_C
... Brief_I/O VARIABLE I/O DESCRIPTION -------- --- -------------------------------------------------- which I Index of kernel to fetch from the list of kernels . kind I The kind of kernel to which fetches are limited. fillen I Available space in output file string. typlen I Available space in output kernel type string. srclen I Available space in output source string. file O The name of the kernel ... If file is a text kernel or meta-text kernel handle will be zero. ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/~sontag/spicedocs/cspice/kdata_c.html -- 10.2 Кб -- 17.12.2005
Похожие документы

5. casacore: casa::CompiledParam< T > Class Template Reference
... Classes . ... casa . casa::CompiledParam< T > . ... Parameters for a compiled string function object. More... #include < CompiledParam.h > . ... CompiledParam (const CompiledParam < T > &other) . Make this object a (deep) copy of other. template<class W > . ... const String & casa::CompiledParam < T >::errorMessage . ... References casa::CompiledParam< T >::msg_p . ... const FuncExpression & casa::CompiledParam < T >::function . ... const String & casa::CompiledParam < T >::getText . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/casacore/casacore-1.2.0/doc/html/classcasa_1_1CompiledParam.html -- 34.3 Кб -- 14.02.2011
Похожие документы

6. Values, Variables, and Literals
... This chapter discusses values that JavaScript recognizes and describes the fundamental building blocks of JavaScript expressions: variables and literals. ... So, for example, you could define a variable as follows: . var answer = 42 And later, you could assign the same variable a string value, for example, . ... These are fixed values, not variables, that you literally provide in your script. ... A string literal is zero or more characters enclosed in double ( " ) or single ( ' ) quotation marks. ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/cats/~satr/JS/Guide/ident.htm -- 11.1 Кб -- 12.12.1997
Похожие документы

7. Query Operations
... to_tsquery( [ configuration , ] querytext text) RETURNS TSQUERY . ... Query rewriting is a set of functions and operators for tsquery type. ... We'll expand query supernovae using table-driven rewriting rules. =# create table aliases (t tsquery primary key, s tsquery); =# insert into aliases values(to_tsquery('supernovae'), to_tsquery('supernovae|sn')); =# select rewrite(to_tsquery('supernovae'), 'select * from aliases') && to_tsquery('crab'); ?column? --------------------------------- ( 'supernova'...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~megera/postgres/fts/doc/fts-query.html -- 13.1 Кб -- 13.04.2008
Похожие документы

8. OptInt PmWiki : PmWiki / Markup Expressions
OptInt PmWiki : Pm Wiki / Markup Expressions . ... The {(...)} "expression markup" allows for a variety of string and formatting operations to be performed from within markup. Operations defined by this recipe include substr , ftime , strlen , rand , toupper / tolower , ucfirst , ucwords , pagename and asspaced . ... Note that the initial position argument is zero-based (i.e., the first character is referenced via a "0"). the number of characters to extract . ... ftime "fmt" "when")} . ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/PmWiki/MarkupExpressions?action=print -- 19.9 Кб -- 10.04.2016
Похожие документы

9. Not so well documented Device Helpers in OS/2
... DevHlp_Security This devhlp allows to open a file for read access in the Init routine of a BASEDEV . ... returned: size of file SYIOpenFile ends Valid at INIT time only. ... This routine uses the corresponding function of the miniFSD , not normal file I/O, thus access is restricted. ... Although the size argument of the data structure implies, I'd recommend to better not read more than 32K at a time. ... DL = 044h This function will return the table of security helper functions for file access. ...
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/ftproot/pub/comp/os/os2/xfree86os2/html/os2devhlps.html -- 9.6 Кб -- 23.10.2000
Похожие документы
Еще в разделе: (Показать все результаты (>5032) - crydee.sai.msu.ru/ )

10. IRAF Multiple Extensions FITS (MEF) Files Interface
... The Multiple Extension FITS (MEF) file interface is an IRAF library providing facilities for general file operations upon FITS multi-extension files. ... The Multiple Extensions FITS (MEF) interface consists of a number of routines to mainly read a FITS Primary Data Unit or an Extension Unit and manipulate the data at a file level. ... Read the FITS header of a MEF file that matches the EXTNAME or EXTVER keyword values or if not specified, read the extension number `group'. ... The header filename. ...
[ Сохраненная копия ]  Ссылки http://www.stecf.org/conferences/adass/adassVII/zaraten.html -- 12.2 Кб -- 12.06.2006
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass97/zaraten.html -- 12.2 Кб -- 15.05.1998
Похожие документы

11. ShapeRoi (ImageJ API)
... Class . ... java.lang.Object ij.gui.Roi ij.gui.ShapeRoi . ... public class ShapeRoi . ... ShapeRoi (int x, int y, java.awt.Shape s) . ... Constructs a ShapeRoi from an Roi. public ShapeRoi (java.awt.Shape s) . Constructs a ShapeRoi from a Shape. public ShapeRoi (int x, int y, java.awt.Shape s) . ... ShapeRoi.SHAPE_ROI . ... Returns a reference to the Shape object encapsulated by this ShapeRoi. public static void addCircle (java.lang.String sx, java.lang.String sy, java.lang.String swidth) . ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/astroimagej/imagej/api/ij/gui/ShapeRoi.html -- 39.5 Кб -- 02.12.2010
Похожие документы
Еще в разделе: (Показать все результаты (>675) - www.astro.louisville.edu/ )

12. Column
... Meta Index / Home Page / F90 DAL API / API Overview A column can be accessed and released again with the procedures . ... The following example illustrates how to change the values in a column. program modifyColumn use dal type(DataSetT) :: set type(TableT) :: tab type(ColumnT) :: col integer(kind=int32), dimension(:), pointer :: x set = dataSet("test.dat",Modify) tab = table(set,"test") col = column(tab,"x",0,0,Modify) x => int32Data(col) x = 124 call release(col) call release(set) end program . ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/8.0.0/doc/dal/node29.html -- 5.1 Кб -- 01.07.2008
Похожие документы
Еще в разделе: (Показать все результаты (>10793) - xmm.vilspa.esa.es/ )

13. APO Home Page
... Current APO Weather . ... Search Site . ... Information for New Users . ... Technical Staff pages . Night Logs and Mailing Lists (maintained by APO) . ... Technical Documents and Database Search . ... Observer's Documentation and Procedures . ... Problem Reporting and APO Technical Documents Database Search . ... APO Drawing/Document Management Procedures . ... APO Technical Documents Database Search . Home Astrophysical Research Consortium . ... Mail Lists (maintained by APO) . ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/ -- 13.9 Кб -- 11.02.2016
Похожие документы

14. Entering carriage returns
For vi , a line is the string of characters between two <RETURN> characters. Although vi will automatically wrap the text onto a new line when it reaches the right-hand side of the screen, it does not insert a <RETURN> character. ... Adding a <RETURN> at the end of every line ensures that the appearance of the text on your screen corresponds to vi 's understanding of how text is structured. Setting the wrapmargin option automatically inserts a <RETURN> character whenever vi wraps text. ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/didyou/vi.1.html -- 2.5 Кб -- 17.01.1997
Похожие документы

15. http://www.stecf.org/conferences/adass/adassVII/reprints/zaraten.ps.gz
... IRAF Multiple Extensions FITS (MEF) Files Interface Nelson Zarate National Optical Astronomy Observatories Tucson, AZ 85719 (zarate@noao.edu) Abstract. ... If there are no values to match then `extver' should be INDEFL. 3.2. mef rdhdr gn (mef,group) Read extension number `group'. ... The header should have been read by now. mefo The output file MEF pointer returned by mef open. 4.2. mef copy extn (mefi, mefo, group) Copy a FITS extension given by its number `group' into an output file. ...
[ Текст ]  Ссылки http://www.stecf.org/conferences/adass/adassVII/reprints/zaraten.ps.gz -- 76.0 Кб -- 12.06.2006
Похожие документы

16. vxWorksPrograms
... aosock_Cmd Converting rpc routines on vxWorks to use daemons : . ... pnt_Cmd: interfaces to the telescope pointing, tiedowns,turret. aosock_Cmd: lets you do regular socket i/o from a tcl script. ... If TCL_ERROR is returned then then command will be aborted (or any function it is called from). ... Errors will usually return with an error message included in the return value. aosock (cl)ose $sockFd . ... TCL_OK with n telling of the bytes returned: . n >0 bytes return. ... sockFd is socket number . ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~phil/software/datataking/vxWorks.html -- 15.8 Кб -- 04.03.2013
Похожие документы

17. Stellarium: StelObjectModule Class Reference
Stellarium 0.12.3 . ... Classes . ... ClassљList . ClassљIndex . ... StelObjectModule Class Reference abstract . Specialization of StelModule which manages a collection of StelObject . ... virtual QList< StelObjectP >љ . searchAround (const Vec3d &v, double limitFov, const StelCore *core) const =0 . ... searchByNameI18n (const QString &nameI18n) const =0 . Find a StelObject by name. ... searchByName (const QString &name) const =0 . ... virtual QStringљ . ... const QString &љ . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/classStelObjectModule.html -- 37.0 Кб -- 28.02.2014
Похожие документы

18. ESO - Request Handler FAQ
... Science . ... Science Users Information > Science Archive Facility > Request Handler FAQ . ... Data Handling and Products . ... ESO Data . ... Also, please double-check that you have entered correctly the full address of the service ( http://www.eso.org/requestHandler/pipacks ), including the leading triple w. Answer: The packages contain the raw data belonging to the selected run, the associated raw calibrations, the masters derived from them and the pipeline science products generated from them...
[ Сохраненная копия ]  Ссылки http://www.eso.org/sci/archive/requestHandlerFaq.html -- 36.3 Кб -- 09.04.2016
Похожие документы

19. http://hea.iki.rssi.ru/conf/hea2007/bp-0.2.97/gen/README
This is the new output format generator. ... It works as such: The user will ask for format "output:html" with option "style=booklist". ... This is an output format. b) The "output" module's broken out format is the canon format. So the fromcanon and explode routines do nothing but return what they are given. c) The style module will return a single string. ... It takes as input a record in canon format. ... The charset used is canon. 4. bp-output.pl A new format module. ... bp-output.pl | ...
[ Сохраненная копия ]  Ссылки http://hea.iki.rssi.ru/conf/hea2007/bp-0.2.97/gen/README -- 4.3 Кб -- 13.03.1996
Похожие документы
Еще в разделе: (Показать все результаты (>714) - hea.iki.rssi.ru/ )

20. Simon Jeffery's Software Store: TAP chemical functions
SUBROUTINE TAP_ESYMB ( IZ, SYMBOL, STATUS ) . Return the element symbol. SUBROUTINE TAP_ENAME ( IZ, NAME, STATUS ) . ... FUNCTION TAP_EMASS ( IZ ) . Return the mean atomic weight of an element. FUNCTION TAP_ZELEM ( NAME ) . ... FUNCTION TAP_AELEM ( NAME ) . ... The mean atomic weight of the element associated with the given name is ! ... The element name associated with the given atomic number is ! ... The atomic number ot element associated with the given name is ! ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/~csj/software_store/tap_guide/tap_chemical.html -- 6.2 Кб -- 04.07.2002
Похожие документы

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


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

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

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