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

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

Показаны документы, содержащие фрагменты текста из документа
http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.7.4.html.

1. Programming Languages
... VMS users have the following compilers available: C, C++, Pascal, FORTRAN, and MACRO--which is a low-level language. ... Create a source file containing valid program statements as defined by the language. ... Run the program. ... FORT RECALC $ LINK RECALC $ RUN RECALC When you write your programs, your source files should always have a file type that identifies the programming language being used. ... Users create a source file of MACRO statements and then compile, link, and run, the file. ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/ftp/documents/system-docs/vms-guide/html/VUG_45.html -- 9.1 Кб -- 01.11.1995
Похожие документы

2. rotatelogs - Piped logging program to rotate Apache logs - Apache HTTP Server
... Apache HTTP Server Version 2.4 . Apache > HTTP Server > Documentation > Version 2.4 > Programs . ... rotatelogs is a simple program for use in conjunction with Apache's piped logfile feature. It supports rotation based on a time interval or maximum size of the log. ... If given, rotatelogs will execute the specified program every time a new log file is opened. ... The time between log file rotations in seconds. ... At the end of each rotation time (here after 24 hours) a new log is started. ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/manual/fr/programs/rotatelogs.html -- 15.8 Кб -- 19.11.2015
Похожие документы

3. Containers and Pop-up Shells
... Any elements created after this call will be placed in the container. ... After such a shell container has been created, it is not visible yet. ... Main program: /* example9.c -XT */ # include stddef.h # include gipsyc.h # include cmain.h # include init.h # include finis.h # include userfio.h # include ggi.h /* * Button keyword handler for quitting. */ static void quit(ident id, char * key , int code, void *arg) { bool button =toflog(FALSE); ( void )userflog( , 1, 2, ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/gipsy/pguide/gui-example9.html -- 7.3 Кб -- 17.01.2009
Похожие документы

4. The DrawingArea Widget, And Drawing
... Backing pixmap for drawing area */ static GdkPixmap *pixmap = NULL; /* Create a new backing pixmap of the appropriate size */ static gint configure_event (GtkWidget *widget, GdkEventConfigure *event) { if (pixmap) gdk_pixmap_unref(pixmap); pixmap = gdk_pixmap_new(widget->window, widget->allocation.width, widget->allocation.height, -1); gdk_draw_rectangle (pixmap, widget->style->white_gc, TRUE, 0, 0, widget->allocation.width, widget->allocation.height); return TRUE; } . ... Event Handling . ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/cats/~satr/GTK2/sec-thedrawingareawidget.html -- 10.6 Кб -- 19.07.2002
Похожие документы

5. http://www.eso.org/~qc/dfos/ABbuilder.txt
NAME ABbuilder - DFO data organization tool SYNOPSIS ABbuilder <options> where <options> are: --raw-dir directory containing raw data --cal-dir directory containing calib data --cal-ldir directory containing symbolic links to calib files --cal-list mcalib list --vcal-dir directory containing virtual products --pro-dir where pipeline products are created --ab-dir where association blocks are created --oca-rul file containing OCA rules --instrume instrument --date YYYY-MM-DD --mode { CALIB | ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~qc/dfos/ABbuilder.txt -- 8.0 Кб -- 17.02.2006
Похожие документы

6. A prototype build system for CASA using SCons Bojan Nikolic web pages (r. 329)
... Bojan Nikolic web pages (r. 329) . ... Building CASA . ... Introduction to SCons . I have designed a prototype implementation of a build system for CASA based on the SCons tool. ... This system is experimental and not the official way of building CASA. ... The main version of the code for this build system is contained in a bzr branch, together with the remainder of the CASA system. ... Build: . ... To debug the SCons build process: . ... A prototype build system for CASA using SCons . ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/~bn204/alma/sweng/casascons.html -- 16.6 Кб -- 04.04.2016
Похожие документы

7. Examples of creating a command alias in the C shell
To create a simple command alias: alias del 'rm -i' del memo.txt rm: remove memo.txt? y . This creates the alias del for the command rm -i which prompts you for confirmation that you want to remove a file before it does so. ... To create a command alias that consists of several commands: alias what 'ps -aux | ... This creates the alias what . ... To refer to another command alias within an alias: alias h history alias rev 'h | ... To pass command arguments to the alias: alias print 'lpr \\!^ ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_csh5.html -- 3.8 Кб -- 17.01.1997
Похожие документы

8. Getting Started in Actor Prolog. Hello World.
Actor Prolog is an object-oriented logic language. So, any program written in Actor Prolog consists of classes. ... An example of Actor Prolog program. -- -- (c) 2002, Alexei A. Morozov, IRE RAS. -- ------------------------------------------- project : (( 'Hello' )) class 'Hello' specializing 'Console': [ goal:- writeln ( "Hello World!" This program consists of solely 'Hello' class. ... Thus, the execution of the program starts with the creation of an instance of the 'Hello' class. ...
[ Сохраненная копия ]  Ссылки http://www.cplire.ru/Lab144/start/e_hello.html -- 7.1 Кб -- 24.09.2007
Похожие документы

9. IPC:Interrupts and Signals: <signal.h>
... int kill(int pid, int signal) - a system call that send a signal to a process, pid . ... sig_talk.c --- Example of how 2 processes can talk */ /* to each other using kill () and signal () */ /* We will fork() 2 process and let the parent send a few */ /* signals to it`s child */ /* cc sig_talk.c -o sig_talk */ #include stdio.h #include signal.h void sighup(); /* routines child will call upon sigtrap */ void sigint (); void sigquit(); main() { int pid ; /* get child process */ if ((...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/node24.html -- 13.3 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/node24.html -- 13.3 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/node24.html -- 13.3 Кб -- 02.10.2012
Похожие документы

10. (Untitled)
I. Installation . ... AMPLE package distributive (created with program InstallShield for Microsoft Visual C++) has been downloaded on FTP server of IAA RAS as archive Ample.zip. ... Note: If the window "file download" appears, select Open... switch button, then press OK button. ... The shortcut for AMPLE will be linked with this folder, and auxiliary files will be created here during AMPLE work. ... When running AMPLE all auxiliary and new configuration files are created in the WORK folder. ...
[ Сохраненная копия ]  Ссылки http://www.ipa.nw.ru/PAGE/FUNDAMENTAL/LSBSS/winample_guide/user9rxw.htm -- 6.9 Кб -- 10.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>583) - www.ipa.nw.ru/ )

11. The first Russian symposium on nanosatellites will take place in SSAU
... SSAU History . ... The first Russian symposium on nanosatellites RusNanoSat-2015 will take place in Samara State Aerospace University from June 2 to June 4. ... The first SSAU nanosatellite SamSat-218 (the first Russian students nanosatellite) will be sent into orbit in the first launch campaign from the space-launch complex Vostochniy, together with a small spacecraft Aist-2 . ... The first Russian symposium on nanosatellite RusNanoSat-2015 will be attended by the leading Russian and foreign . ...
[ Сохраненная копия ]  Ссылки http://www.ssau.ru/engnews/11526/ -- 30.1 Кб -- 20.05.2015
Похожие документы

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

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

14. CREATE FULLTEXT CONFIGURATION
... CREATE FULLTEXT CONFIGURATION -- create full-text configuration . CREATE FULLTEXT CONFIGURATION cfgname PARSER prsname [ LOCALE localename ] [ AS DEFAULT ]; CREATE FULLTEXT CONFIGURATION cfgname [ { PARSER prsname | ... PARSER . ... LOCALE . ... Create new configuration test with default parser and ru_RU.UTF-8 locale. CREATE FULLTEXT CONFIGURATION test PARSER default LOCALE 'ru_RU.UTF-8'; =# \dF+ test Configuration "public.test" Parser name: "pg_catalog.default" Locale: 'ru_RU.UTF-8' Token | ...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~megera/postgres/fts/doc/sql-fts-createcfg.html -- 10.1 Кб -- 13.04.2008
Похожие документы

15. Server-Wide Configuration
This document explains some of the directives provided by the core server which are used to configure the basic operations of the server. ... Process Creation . Network Configuration . ... User . ... A single control process is responsible for launching child processes which listen for connections and serve them when they arrive. ... The User and Group directives are used to set the privileges of the Apache child processes. ... The child process creates multiple threads to serve requests. ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/server-wide.html -- 12.1 Кб -- 15.10.2001
Похожие документы

16. http://www.naic.edu/~phil/hardware/vertex/sharemegsvertex/lcu/pcr/dos/DOSHELP.HLP
... This is the MS-DOS general help file. ... Type FASTHELP with no arguments to display the text in this file. ... APPEND Allows programs to open data files in specified directories as if they were in the current directory. ... COPY Copies one or more files to another location. ... FC Compares two files or sets of files, and displays the differences between them. ... PATH Displays or sets a search path for executable files. ... SYS Copies MS-DOS system files and command interpreter to a disk you...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~phil/hardware/vertex/sharemegsvertex/lcu/pcr/dos/DOSHELP.HLP -- 6.7 Кб -- 06.03.2001
Похожие документы

17. Command Line Examples
... omgchain (omgchain-1.6) [xmmsas_20070708_1801-7.1.0] . ... Use command `omgchain` to process the ODF data set in the current directory or to where SAS_ODF has been set to, and to place the product files in the current directory. Use command `omgchain outdirectory=output_directory_path` to process the ODF data set in the current directory or to where SAS_ODF has been set to, and to place the output files into the specified directory. ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/7.1.0/doc/omgchain/node17.html -- 3.9 Кб -- 09.07.2007
Похожие документы
Еще в разделе: (Показать все результаты (>16293) - xmm.vilspa.esa.es/ )

18. Creating a filesystem
... Filesystems are created, i.e., initialized, with the mkfs љ command. ... Search for bad blocks and initialize the bad block list accordingly. -l filename . ... badblocks /dev/fd0H1440 1440 > bad-blocks . ... 1 block group . 8192 blocks per group, 8192 fragments per group . ... Then bad blocks were searched with badblocks љ , with the output redirected to a file, bad-blocks . Finally, the filesystem was created, with the bad block list initialized by whatever badblocks љ found. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/sag-0.4/node45.html -- 7.0 Кб -- 04.05.1997
Похожие документы

19. http://www.astro.louisville.edu/software/alsvid/alsvid-current/README
... Linux systems will usually have the Python core (Version 2.7) available. ... ALSVID Python Utilities for Processing FITS Images ================================================== file _renumber.py Renumber files in a directory fits _1d_to_dat.py Extract a 1-dimensional FITS array as data fits _absolute_value.py Absolute value of an image fits _background_remove.py Fit and subtract a background fits _bias.py Subtract a bias frame fits _bin.py Bin a stack of images one by one ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/alsvid/alsvid-current/README -- 8.6 Кб -- 22.03.2016
Похожие документы

20. Dynamic HTML in Communicator
... To run the <LAYER> version of the example, select: flower.htm . ... However, if the page had several layers with absolute positions, and you wanted to place another layer in a relative position to one of the existing layers, you could use inline JavaScript to calculate the value for LEFT or TOP . ... In this example, there is really no need to use inline JavaScript to position the last flower layer, since you could just let the TOP value default to its natural value, as in the other flower layers. ...
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/~vab/html.doc/dhtml/dynhtml/layers34.htm -- 11.4 Кб -- 13.08.1997
Похожие документы

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


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

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

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