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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.atnf.csiro.au/vlbi/wiki/index.php?n=PmWiki.UrlApprovals.

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

2. Environment Variable
... The following environment variables may be set by the user: . ... Determines the clobber behaviour. 0 implies that datasets may not be overridden, whilst 1 implies otherwise. ... The following settings are allowed: . ... 2, DAL . ... The DAL can write table columns (to the underlying FITS file) either in a column-by-column or a row-by-row fashion. The default behaviour is row-by-row, but setting the environment variable SAS_COLUMN_WISE ensures the column-by-column method is used. ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/8.0.0/doc/dal/node9.html -- 4.7 Кб -- 01.07.2008
Похожие документы
Еще в разделе: (Показать все результаты (>6197) - xmm.vilspa.esa.es/ )

3. Pulsar Group PmWiki/Variables
... PmWiki . Summary: PmWiki group header. ... Variables . PmWiki .Variables$:Audience} . Summary:Variables available for local customisation:) (:Audience: administrators (basic) :) . ... LayoutVariables . ... BasicVariables . ... EditVariables . ... UploadVariables . ... Notify . ... Basic Variables - { BasicVariables $:Summary} . ... Edit Variables - { EditVariables $:Summary} . ... Layout Variables - { LayoutVariables $:Summary} . ... Upload Variables - { UploadVariables $:Summary} . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/people/pulsar/index.html?n=PmWiki.Variables -- 66.7 Кб -- 01.03.2014
Похожие документы

4. Adding Variables to CONFIG.SYS
README for XFree86 on OS/2 : Adding Variables to CONFIG.SYS . ... ETC . Set to an ETC directory. Normally, this is already set to the ETC directory of the TCP/IP code, such as SET ETC=C:\TCPIP\ETC For Warp 4 and later, this may point to the \MPTN\ directory. ... Normally you will set this variable to the same value as the HOSTNAME variable and simply add a :0.0 after it, such as SET DISPLAY=myhost:0.0 Read the X11 man page on the exact meaning of these postfixes and other options. ...
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/ftproot/pub/comp/os/os2/xfree86os2/html/OS29.html -- 8.3 Кб -- 23.10.2000
Похожие документы

5. Plot variables and their indices
... Some data selection widgets for plotting display more indices than needed for some of the plot variables in order to avoid recycling of the data selection widget if the variables change. ... They are organized by class, even though, strictly speaking, an plot class refers only to a specific selection of variables listed in a plot selection widget. ... Also note that the IDL variables in italic font denote a derivation from this variable, i.e. the data is not exactly identical to the variable...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~chummel/oyster/manual/node253.html -- 23.6 Кб -- 28.04.2015
Похожие документы

6. OptInt PmWiki : PmWiki / Debug Variables
OptInt PmWiki : Pm Wiki / Debug Variables . Basic Variables | Variables | ... EnableDiag . The following actions are available only if you set $EnableDiag = 1; in your configuration file. They can be used for debugging and should not be set in a production environment. ?action= ruleset . ... If you have a wiki that composes a HTML page from multiple pages, such as a normal layout with a sidebar, you'll get separate timings for each subpage and for the total page.) ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/PmWiki/DebugVariables?action=print -- 13.5 Кб -- 01.03.2014
Похожие документы

7. Funtools Environment Variables
Describes the environment variables which can be used to tailor the overall Funtools environment. ... The FITS_EXTNAME environment variable specifies the default FITS extension name when FunOpen() is called on a file lacking a primary image. ... ARRAY . The ARRAY environment variable specifies the default definition of an array file for Funtools. ... The EVENTS environment variable specifies the default definition of an raw event file for Funtools. ... You also can use the CC environment variable. ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/RD/funtools/env.html -- 9.4 Кб -- 01.10.2012
Похожие документы

8. Evaluating shell variables
The following set of rules govern the evaluation of all shell variables. ... var signifies the value of var or nothing, if var is undefined. ${var} same as above except the braces enclose the name of the variable to be substituted. ${var-thing} value of var if var is defined; otherwise thing. $var is not set to thing. ${var=thing} value of var if var is defined; otherwise thing. If undefined $var is set to thing. ${var?message} If defined, $var; otherwise print message and exit the shell. ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.2.3.html -- 2.5 Кб -- 17.01.1997
Похожие документы

9. Further Data Types
... Defining New Data Types . Unions . ... Static Variables . ... struct gun { char name[50]; int magazinesize; float calibre; }; struct gun arnies; . ... struct gun { char name[50]; int magazinesize; float calibre; } arnies; . ... typedef struct gun { char name[50]; int magazinesize; float calibre; } agun; agun arnies={"Uzi",30,7}; . ... stat() { int auto_var = 0; static int static_var = 0; printf( ``auto = %d, static = %d n'', auto_var, static_var); ++auto_var; ++static_var; } . ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/node9.html -- 12.2 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/node9.html -- 12.2 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/node9.html -- 12.2 Кб -- 02.10.2012
Похожие документы

10. Startling Star V838 Mon
... Image Processed by Al Kelly Explanation: Variable star V838 Monocerotis startled astronomers in January of 2002, undergoing a dramatic outburst like no other variable star known. Followed closely by ground-based instruments and the Hubble Space Telescope over the following months, it was soon realized that the quickly evolving dusty nebula surrounding V838 Mon was in fact made visible by "light echoes" from the outburst . ... Publications with keywords: v838 mon - light echo - variable star . ...
[ Сохраненная копия ]  Ссылки http://www.astronet.ru/db/xware/msg/1195479 -- 15.4 Кб -- 05.12.2003
Похожие документы

11. Environment Variables in Apache
The Apache HTTP Server provides a mechanism for storing information in named variables that are called environment variables . ... For additional flexibility, the directives provided by mod_setenvif allow environment variables to be set on a per-request basis, conditional on characteristics of particular requests. ... As discussed above, the environment passed to CGI scripts includes standard meta-information about the request in addition to any variables set within the Apache configuration. ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/env.html -- 15.1 Кб -- 01.08.2003
Похожие документы

12. mod_setenvif - Apache HTTP Server
... Apache HTTP Server Version 2.2 . ... Allows the setting of environment variables based on characteristics of the request . ... setenvif_module . ... The mod_setenvif module allows you to set internal environment variables according to whether different aspects of the request match regular expressions you specify. ... Environment Variables in Apache . ... The BrowserMatch is a special cases of the SetEnvIf directive that sets environment variables conditional on the User-Agent HTTP request header. ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/manual/de/mod/mod_setenvif.html -- 18.4 Кб -- 21.01.2013
Похожие документы

13. CSPICE Routines: SZPOOL_C
... Abstract Return the kernel pool size limitations. ... Brief_I/O VARIABLE I/O DESCRIPTION -------- --- -------------------------------------------------- name I Name of the parameter to be returned. n O Value of parameter specified by name. found O SPICETRUE if name is recognized. Detailed_Input name is the name of a kernel pool size parameter. The following parameters may be specified: MAXVAR is the maximum number of variables that the kernel pool may contain at any one time. ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/~sontag/spicedocs/cspice/szpool_c.html -- 7.5 Кб -- 17.12.2005
Похожие документы

14. lsst.tcc: tcc.axis.computeSlew Namespace Reference
... axis . ... tcc.axis.computeSlew Namespace Reference . ... Compute a slew to a given user-specified position, by iteration. ... Send the DRIFT command to all axes that are moving (whether you want to halt them or slew them) and update obj.actMount and obj.axisCmdState accordingly. ... If obj.axisCmdState==AxisState_Drifting and obj.targetMount[axis].isfinite(): compute a slew to the new position. ... object block: input: object block computed at approximately the current time (see above) output: . ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/Telescopes/TCC/html/namespacetcc_1_1axis_1_1compute_slew.html -- 17.4 Кб -- 14.09.2015
Похожие документы

15. http://zebu.uoregon.edu/1998/es202/distribution.html
[ Сохраненная копия ]  Ссылки http://zebu.uoregon.edu/1998/es202/distribution.html -- 4.8 Кб -- 27.01.1998
Похожие документы
Еще в разделе: (Показать все результаты (>182) - zebu.uoregon.edu/ )

16. Miscellaneous Options
... This command specifies the default delay to be used under these circumstances. ... This command configures a trap receiver at the given host address and port number for sending messages with the specified local interface address. ... While such monitor programs may also request their own trap dynamically, configuring a trap receiver will ensure that no messages are lost when the server is started. setvar variable [ default ] . This command adds an additional system variable. ...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~er/xntp/miscopt.html -- 6.5 Кб -- 21.12.2007
Похожие документы

17. variable stars | Astronomy.com
... Tonight's Sky . ... The Magazine . News . Observing . ... Magazine . ... Star Atlas . ... Gravitational wave search provides insights into galaxy evolution and mergers . ... The double star 54 Leonis, spiral galaxy NGC 3198, and emission nebula NGC 3199 . ... Open cluster NGC 2818, spiral galaxy NGC 2964, and spiral galaxy NGC 2976 . ... Astronomy for Kids . ... variable stars . ... Receive news, sky-event information, observing tips, and more from Astronomy's weekly email newsletter. ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.com/tags/variable-stars -- 56.4 Кб -- 09.04.2016
Похожие документы

18. arxiv:0705.4195 VSOP: The Variable Star One-shot Project - Научная панорама
... В теме В разделе По форуму . ... Темы, интересные всем ? ... Научная панорама ? arxiv:0705.4195 VSOP: The Variable Star One-shot Project . предыдущая тема следующая тема . ... 0 Пользователей и 1 Гость просматривают эту тему. ... arxiv:0705.4195 VSOP: The Variable Star One-shot Project I. Описание проекта и первый релиз данных (VSOP: The Variable Star One-shot Project I. Project presentation and first data release) . ... VSOP - The Variable Star One-shot Project ( http://vsop.sc.eso.org/ ). ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.ru/forum/index.php/topic,27997.0.html -- 30.4 Кб -- 10.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>157) - www.astronomy.ru/ )

19. Cepheid Variables
... CEPHEID VARIABLE STARS: A Cepheid variable or Cepheid is a member of a particular class of very luminous, massive variable stars with pulsation periods of 1-70 days. ... The relationship is calibrated using data collected from Cepheids whose distances are determined by other means. ... Browse through the 68 CCD fits images he sent you, using ds9 and locate the Cepheid variable. ... Image credits: ESA - "http://sci.esa.int/science-e-media/img/20/cepheid-variables.jpg" . ...
[ Сохраненная копия ]  Ссылки http://www.mso.anu.edu.au/~jerjen/researchprojects/cepheids/cepheids.html -- 8.3 Кб -- 02.10.2012
Похожие документы

20. Debugging and Tracing
... The VDPAU wrapper library supports tracing VDPAU function calls, and their parameters. This tracing is controlled by the following environment variables: . VDPAU_TRACE . Enables tracing. Set to 1 to trace function calls. Set to 2 to trace all arguments passed to the function. ... The VDPAU wrapper library is responsible for determining which vendor-specific driver to load for a given X11 display/screen. ... The environment variable VDPAU_DRIVER may be set to override this default. ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~phil/hardware/nvidia/doc/driverInstall/appendix-h-section-05.html -- 4.5 Кб -- 30.10.2009
Похожие документы

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


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

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

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