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

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 A