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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.naic.edu/~phil/hardware/pdev/fpga/gx/plinth/src/adcpad_mult.v.

1. Does memory area assigned by "vmalloc()" get swapped to disk?
... I am developing an Informed Prefetching and Caching system as part of the kernel in which it is very important that the memory assigned to hold the data does not get swapped to disk. Without any thought to swapping I used vmalloc() to assign memory to the data structures of the Informed prefetching system. ... I later realized that most probably the pages assigned using vmalloc() were getting swapped to the disk and when I referenced them, they were brought from the disk rather than memory. ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/irlab/doc/library/linux/khg/HyperNews/get/khg/283.html -- 3.6 Кб -- 23.03.2000
Похожие документы

2. http://www.naic.edu/~phil/hardware/pdev/fpga/gx/jfft/pdev/rtl/xfft_stage_1.v
... Generated by mkjfft_stage // Programmable downshift with rounding // module xfft_stage_1 ( ck, reset , bypassb, pshift, sync_i, sync_o, a_re, a_im, b_re, b_im, ovf, x_re, x_im, y_re, y_im ); parameter width=18; input ck; input reset ; input bypassb; input pshift; input sync_i; output sync_o; input [ width-1 :0] a_re; input [ width-1 :0] a_im; input [ width-1 :0] b_re; input [ width-1 :0] b_im; ... b_re_del : ax_re; assign ca_im = ph_drv[1] ? ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~phil/hardware/pdev/fpga/gx/jfft/pdev/rtl/xfft_stage_1.v -- 5.9 Кб -- 26.06.2008
Похожие документы

3. The Direction Assigned to Electric Currents
... The choice of which type of electricity is called "positive" and which "negative" was made around 1750 by Ben Franklin, early American scientist and man of many talents (the stamp on the left commemorates his role as first US postmaster--and colonial postmaster before that). ... Franklin knew of two types of electric charge, depending on the material one rubbed. ... Later, when electric batteries were discovered, scientists naturally assigned the direction of the flow of current to be from (+) to (-...
[ Сохраненная копия ]  Ссылки http://www.iki.rssi.ru/mirrors/stern/Education/woppos.html -- 9.3 Кб -- 21.12.2007
Похожие документы
Еще в разделе: (Показать все результаты (>200) - www.iki.rssi.ru/ )

4. The Direction Assigned to Electric Currents
... The choice of which type of electricity is called "positive" and which "negative" was made around 1750 by Ben Franklin, early American scientist and man of many talents (the stamp on the left commemorates his role as first US postmaster--and colonial postmaster before that). ... Franklin knew of two types of electric charge, depending on the material one rubbed. ... Later, when electric batteries were discovered, scientists naturally assigned the direction of the flow of current to be from (+) to (-...
[ Сохраненная копия ]  Ссылки http://www.cosmos.ru/mirrors/stern/Education/woppos.html -- 9.3 Кб -- 24.03.2006
Похожие документы

5. ImageStack (ImageJ API)
... Note that the size of the returned array may be greater than the number of slices currently in the stack, with unused elements set to null. public int getSize () . Returns the number of slices in this stack. public java.lang.String[] getSliceLabels () . ... Returns null if the stack is empty or the label of the first slice is null. public java.lang.String getSliceLabel (int n) . ... Returns null if the slice does not have a label. public void setSliceLabel (java.lang.String label, int n) . ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/astroimagej/imagej/api/ij/ImageStack.html -- 29.5 Кб -- 02.12.2010
Похожие документы
Еще в разделе: (Показать все результаты (>185) - www.astro.louisville.edu/ )

6. Spatial Region Boundaries
Describes how spatial region boundaries are handled. The golden rule for spatial region filtering was first enunciated by Leon VanSpeybroeck in 1986: . ... With this in mind, the rules for determining whether a boundary image pixel or table row are assigned to a region are defined below. For image filtering, pixels whose center is inside the boundary are included. ... That is, an row is inside the boundary without regard to its integerized pixel value. ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/RD/funtools/regbounds.html -- 7.3 Кб -- 01.10.2012
Похожие документы
Еще в разделе: (Показать все результаты (>789) - hea-www.harvard.edu/ )

7. OptInt PmWiki : MROIFastTipTilt / Tech Meet 2
OptInt PmWiki : MROI Fast Tip Tilt / Tech Meet 2 . ... Attendees: JSY, CAH, DFB, XS, EBS, ADR, DMAW . ... DFB & JSY: Assign working value for overall image quality requirement . ... ADR & CAH: Think about how to apportion image quality budget . ... XS: Understand space envelope, optical components & make CAD drawing . ... ADR & CAH: Optical image quality tolerancing of OAP-based layout . ... Printable View of http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/MROIFastTipTilt/TechMeet2) ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/MROIFastTipTilt/TechMeet2?action=print -- 10.1 Кб -- 01.03.2014
Похожие документы

8. Low Level Operators and Bit Fields
... Bit Fields . Bit Fields: Practical Example . ... NOTE: The combination of pointers and bit-level operators makes C useful for many low level applications and can almost replace assembly code. ... To illustrate many points of bitwise operators let us write a function, Bitcount , that counts bits set to 1 in an 8 bit number ( unsigned char ) passed as an argument to the function. int bitcount(unsigned char x) { int count; for (count=0; x != 0; x>>=1); if ( x & 01) count++; return count; } . ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/node13.html -- 13.3 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/node13.html -- 13.3 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/node13.html -- 13.3 Кб -- 02.10.2012
Похожие документы

9. Untitled Document
... The Site Safety Officer is responsible for continued safe functioning of facilities and equipment including telescopes, and the safety of personnel involved in or near maintenance activities. ... All employees are responsible for prompt reporting of conditions requiring maintenance. ... Preventive maintenance programs will be designed to insure a safe and healthful working environment for every employee and to minimize the need for emergency repairs. ... EMERGENCY REPAIRS . ... WRITTEN PROCEDURES . ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/Site/usersguide/SafetyPlan/06SafeSec21.html -- 5.7 Кб -- 21.05.2009
Похожие документы
Еще в разделе: (Показать все результаты (>263) - www.apo.nmsu.edu/ )

10. Reading user input
To read standard input into a shell script use the read command. For example: echo "Please enter your name:" read name echo "Welcome to Edinburgh $name" . This prompts the user for input, assigns this to the variable name and then displays the value of this variable to standard output . ... For example: echo "Please enter your surname\n" echo "followed by your first name: \c" read name1 name2 echo "Welcome to Glasgow $name2 $name1" . ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.3.html -- 2.3 Кб -- 17.01.1997
Похожие документы

11. http://crydee.sai.msu.ru/ftproot/pub/comp/os/os2/hobbes/incoming/iconsss.txt
... Proposed directory for placement: /pub/os2/apps/suite Your name: A. Doff Email address: m1@uni-one.nl Program contact name: (same) Program contact email: (same) Program URL: http://home.uni-one.nl/m1 Would you like the contact email address included in listings? no Operating System/Version: eComStation (tested with v1.2) Additional requirements: Rexx, REXXUTIL.DLL Replaces: /pub/os2/apps/money/pmseim20.zip ...
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/ftproot/pub/comp/os/os2/hobbes/incoming/iconsss.txt -- 2.1 Кб -- 21.01.2016
Похожие документы

12. Summary List of Setup File Parameters
Next: Details of Setup File Up: Setup Files Previous: Examples of Setup Files Contents . A list of the setup parameters is given below, followed by detailed information on each setup paramater in Section 3.6.4 . ... Note that the VLBA uses the concept of baseband channels. ... BBC: BBC assigned to each baseband channel. ... IFCHAN: IF channel to BBC for each baseband channel. ... NCHAN: Number of baseband channels. ... TPSPEEDH: Tape speed in inches per second at high density (obsolete). ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/people/Tasso.Tzioumis/sched/Summary_List_Setup_File_Par.html -- 13.8 Кб -- 10.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>3363) - www.atnf.csiro.au/ )

13. The Probook Project
AAL Guestbook . Please Sign Our Guestbook . Guestbook Entries: 147 . Add Entry | ... Previous Page | Next Page . ... Wiltz/Luxembourg, . ... Great site !!! i like the design, the pages are very well structured. ... For example for the gallery page it took more than 4 minutes to load. ... Signed on at . ... nice site, well structured. it's worth a bookmark. keep on like this. greetings to lea lucien. r. Signed on at . ... Luxembourg, . ... Current time around the World . ...
[ Сохраненная копия ]  Ссылки http://www.aal.lu/guestbook/?record=140 -- 6.0 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>50) - www.aal.lu/ )

14. Stellarium: gTime Class Reference
... Classes . ... gTime Class Reference . This class implements time calculations. ... gTime (double ai_jDays=0) . ... gTime (const gTime &timeSrc) . ... Set the time value of the time object to the julian day of year, day. ... operator= (const gTime &timeSrc) . ... Returns the time GMT value in Julian days. ... Returns the time_t value of the gTime Object. ... Returns a gTime object setted with the actual machine time. ... gTime Object assigned with real machine time. double gTime::getGmtTm . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/classgTime.html -- 32.1 Кб -- 28.02.2014
Похожие документы

15. Astronaut Bio: Charles Hobaugh (09/2011)
... Charles Owen Hobaugh (Colonel, USMC, RET.) ... EXPERIENCE: Hobaugh received his commission as a Second Lieutenant in the United States Marine Corps from the United States Naval Academy in May 1984. ... Hobaugh resigned from NASA in August 2011. SPACE FLIGHT EXPERIENCE: STS-104 (July 12 to July 24, 2001) was the 10th mission to the International Space Station (ISS). ... STS-129 (November 16 to November 29, 2009) was the 31st shuttle flight to the International Space Station. ... SEPTEMBER 2011 ...
[ Сохраненная копия ]  Ссылки http://www.jsc.nasa.gov/Bios/htmlbios/hobaugh.html -- 8.7 Кб -- 07.07.2015
Похожие документы

16. Midnight And Noon - an Astronomy Net Article
Midnight And Noon . Articles | ... Never call 12 Midnight, 12 a.m. Never call 12 Midnight, 12 p.m. Never call 12 Noon, 12 a.m. Never call 12 Noon, 12 p.m. Always refer to the 12 o'clock during the middle of the night as 12 Midnight . ... Hence to express the time from 12 noon to 12 o'clock at night, we use the term p.m. and from 12 o'clock at night to 12 o'clock noon we use a.m. However 12 o'clock midday is neither ante meridian or post meridian. ... www.astronomy.net . About Astronomy Net | ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.net/articles/13/ -- 16.0 Кб -- 09.04.2016
Похожие документы

17. http://www.astronomy.com/sitefiles/resources/image.aspx?item=%7BA6149A58-A920-49AF-96EE-0FAD66E4F93D%7D
. The image is a composite of separate exposures made by the WFC3 instrument on the Hubble Space Telescope. Three filters were used to sample broad wavelength ranges in the near infrared. The color results from assigning different hues (colors) to each monochromatic image. In this case, the assigned colors are: F105W (Y) blue; F125W (J) green; F160W (H) red. NASA/ESA/G. Illingworth/R. Bouwens/ HUDF09 Team
[ Сохраненная копия ]  Ссылки http://www.astronomy.com/sitefiles/resources/image.aspx?item=%7BA6149A58-A920-49AF-96EE-0FAD66E4F93D%7D -- 3.6 Кб -- 10.04.2016
Похожие документы

18. Are you an astronomer: Seven telltale signs! | Astronotes
Astronotes Armagh Planetarium's Stellar Blog! ... Armagh Planetarium . ... astronomers . ... Space Flight . ... Science Fiction . UFOs and Fringe Science . ... Amateur Astronomy is a fascinating and reward€нing hobby, enjoyed by people from all walks of life and all ages. ... As far as I know none these people are amateur astronomers, however there are some celebri€нties who are genuinely into astronomy. ... Amateur astronomers do seem to have an image problem. ... Subscribe to Astronotes . ...
[ Сохраненная копия ]  Ссылки http://www.armaghplanet.com/blog/are-you-an-astronomer-seven-telltale-signs.html -- 42.9 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>1790) - www.armaghplanet.com/ )

19. INTERNATIONAL SPACE STATION
CREW 21/22 . ... ISS-21 IMAGE . ... ISS-22/23 Flight Engineer, . ... In August 1996 Wheelock was assigned to the Johnson Space Center as a test engineer to provide the Shuttle equipment test. ... He was assigned as a lead test engineer participating in the ISS hardware testing. ... In 2001 he was assigned as the support astronaut for the ISS-2 and ISS-4 crews. ... The main objective of the flight was to deliver the new Harmony module to the International Space Station and deploy P6 Solar Arrays. ...
[ Сохраненная копия ]  Ссылки http://www.energia.ru/eng/iss/iss22/wheelock.html -- 12.6 Кб -- 01.10.2012
Похожие документы
Еще в разделе: (Показать все результаты (>397) - www.energia.ru/ )

20. http://www.astrosociety.org/edu/family/resources/rtpagenda.pdf
Race to the Planets Family Event Sample Agendas Family ASTRO Leader Kits and Guides are designed to contain enough materials and activities for two full family events. ... What's Next: As families leave, make sure they know about the date and time for your second Race to the Planets session and that you'll want to know how they did playing the "Surfing the Solar System" game. ... If there are any planets visible in the night sky, a nice follow up to this family event is a planet observing session. ...
[ Текст ]  Ссылки http://www.astrosociety.org/edu/family/resources/rtpagenda.pdf -- 44.3 Кб -- 02.10.2012
Похожие документы

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


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

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

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