Academic literature on the topic 'Programming light'
Create a spot-on reference in APA, MLA, Chicago, Harvard, and other styles
Consult the lists of relevant articles, books, theses, conference reports, and other scholarly sources on the topic 'Programming light.'
Next to every source in the list of references, there is an 'Add to bibliography' button. Press on it, and we will generate automatically the bibliographic reference to the chosen work in the citation style you need: APA, MLA, Harvard, Chicago, Vancouver, etc.
You can also download the full text of the academic publication as pdf and read online its abstract whenever available in the metadata.
Journal articles on the topic "Programming light"
Mensah and Rocca. "Light Robust Goal Programming." Mathematical and Computational Applications 24, no. 4 (September 28, 2019): 85. http://dx.doi.org/10.3390/mca24040085.
Full textMöglich, Andreas, and Peter Hegemann. "Programming genomes with light." Nature 500, no. 7463 (August 2013): 406–8. http://dx.doi.org/10.1038/500406a.
Full textHemmig, Elisa A., Celestino Creatore, Bettina Wünsch, Lisa Hecker, Philip Mair, M. Andy Parker, Stephen Emmott, Philip Tinnefeld, Ulrich F. Keyser, and Alex W. Chin. "Programming Light-Harvesting Efficiency Using DNA Origami." Nano Letters 16, no. 4 (March 2016): 2369–74. http://dx.doi.org/10.1021/acs.nanolett.5b05139.
Full textde Sousa, J. S., G. A. Farias, and J. P. Leburton. "Light-induced programming of Si nanocrystal flash memories." Applied Physics Letters 92, no. 10 (March 10, 2008): 103508. http://dx.doi.org/10.1063/1.2839326.
Full textDanielson, Mary K., and Jonathan C. Barnes. "Programming origami-like soft actuators using visible light." Matter 4, no. 5 (May 2021): 1449–52. http://dx.doi.org/10.1016/j.matt.2021.04.004.
Full textTemkin, Daniel. "Light Pattern: Writing Code with Photographs." Leonardo 48, no. 4 (August 2015): 375–81. http://dx.doi.org/10.1162/leon_a_01091.
Full textLi, Qingyan, Tengteng Li, Yating Zhang, Hongliang Zhao, Jie Li, and Jianquan Yao. "Dual-functional optoelectronic memories based on ternary hybrid floating gate layers." Nanoscale 13, no. 5 (2021): 3295–303. http://dx.doi.org/10.1039/d0nr09066b.
Full textIbrahim, Mastura, Siti Aishah Wahid, and Sullyfaizura Mohd Rawi. "Development of alternative rear flickering light system." International Journal of Technology, Innovation and Humanities 1, no. 1 (October 21, 2020): 21–25. http://dx.doi.org/10.29210/88901.
Full textXing, Jiaming, Liang Chu, and Chong Guo. "Optimization of Energy Consumption Based on Traffic Light Constraints and Dynamic Programming." Electronics 10, no. 18 (September 17, 2021): 2295. http://dx.doi.org/10.3390/electronics10182295.
Full textTu Luu, Hong, Lydie Nouvelière, and Said Mammar. "Dynamic Programming for fuel consumption optimization on light vehicle." IFAC Proceedings Volumes 43, no. 7 (July 2010): 372–77. http://dx.doi.org/10.3182/20100712-3-de-2013.00097.
Full textDissertations / Theses on the topic "Programming light"
Nicácio, Daniel Henricus de Knegt Dutra 1984. "LUTS : a Light-Weight User-Level Transaction Scheduler." [s.n.], 2012. http://repositorio.unicamp.br/jspui/handle/REPOSIP/275651.
Full textTese (doutorado) - Universidade Estadual de Campinas, Instituto de Computação
Made available in DSpace on 2018-08-22T08:27:32Z (GMT). No. of bitstreams: 1 Nicacio_DanielHenricusdeKnegtDutra_D.pdf: 2579331 bytes, checksum: b8e15a6f91203b98455f39d63d63a634 (MD5) Previous issue date: 2012
Resumo: Sistemas de Memória Transacional em Software (MTS) têm sido usados como uma abordagem para melhorar o desempenho ao permitir a execução concorrente de blocos atômicos. Porém, em cenários com alta contenção, sistemas baseados em MTS podem diminuir o desempenho consideravelmente, já que a taxa de conflitos aumenta. Políticas de gerenciamento de contenção têm sido usadas como uma forma de selecionar qual transação abortar quando um conflito ocorre. No geral, gerenciadores de contenção não são capazes de evitar conflitos, tendo em vista que eles apenas selecionam qual transação abortar e o momento em que ela deve reiniciar. Como gerenciadores de contenção agem somente após a detecção de um conflito, é difícil aumentar a taxa de transações finalizadas com sucesso. Abordagens mais pró-ativas foram propostas, focando na previsão de quando uma transação deve abortar e atrasando o início de sua execução. Contudo, as técnicas pró-ativas continuam sendo limitadas, já que elas não substituem a transação fadada a abortar por outra transação com melhores probabilidades de sucesso, ou quando o fazem, dependem do sistema operacional para essa tarefa, tendo pouco ou nenhum controle de qual transação será a substituta. Esta tese apresenta o LUTS, Lightweight User-Level Transaction Scheduler, um escalonador de transação de baixo custo em nível de usuário. Diferente de outras técnicas, LUTS provê maneiras de selecionar outra transação a ser executada em paralelo, melhorando o desempenho do sistema. Nós discutimos o projeto do LUTS e propomos uma heurística dinâmica, com o objetivo de evitar conflitos, que foi construída utilizando os métodos disponibilizados pelo LUTS. Resultados experimentais, conduzidos com os conjuntos de aplicações STAMP e STMBench7, e executando nas bibliotecas TinySTM e SwissTM, mostram como nossa heurística para evitar conflitos pode melhorar efetivamente o desempenho de sistema de MTS em aplicações com alta contenção
Abstract: Software Transaction Memory (STM) systems have been used as an approach to improve performance, by allowing the concurrent execution of atomic blocks. However, under high-contention workloads, STM-based systems can considerably degrade performance, as transaction conflict rate increases. Contention management policies have been used as a way to select which transaction to abort when a conflict occurs. In general, contention managers are not capable of avoiding conflicts, as they can only select which transaction to abort and the moment it should restart. Since contention manager's act only after a conflict is detected, it becomes harder to effectively increase transaction throughput. More proactive approaches have emerged, aiming at predicting when a transaction is likely to abort, postponing its execution. Nevertheless, most of the proposed proactive techniques are limited, as they do not replace the doomed transaction by another or, when they do, they rely on the operating system for that, having little or no control on which transaction to run. This article proposes LUTS, a Lightweight User-Level Transaction Scheduler. Unlike other techniques, LUTS provides the means for selecting another transaction to run in parallel, thus improving system throughput. We discuss LUTS design and propose a dynamic conflict-avoidance heuristic built around its scheduling capabilities. Experimental results, conducted with the STAMP and STMBench7 benchmark suites, running on TinySTM and SwissTM, show how our conflict-avoidance heuristic can effectively improve STM performance on high contention applications
Doutorado
Ciência da Computação
Doutor em Ciência da Computação
Yüz, Gönul Simge [Verfasser], and Ulrich [Akademischer Betreuer] Schwarz. "Re-programming cell interactions with light dependent heterodimers / Gönül Simge Yüz ; Betreuer: Ulrich Schwarz." Heidelberg : Universitätsbibliothek Heidelberg, 2018. http://d-nb.info/1177384981/34.
Full textYüz, Gönul Simge [Verfasser], and Ulrich S. [Akademischer Betreuer] Schwarz. "Re-programming cell interactions with light dependent heterodimers / Gönül Simge Yüz ; Betreuer: Ulrich Schwarz." Heidelberg : Universitätsbibliothek Heidelberg, 2018. http://nbn-resolving.de/urn:nbn:de:bsz:16-heidok-241688.
Full textMyronidi, Despoina. "LIGHT-BEAT: REACTIVE LIGHT FOR THE EMOTIONAL COMFORT OF NEWBORN BABIES." Thesis, KTH, Ljusdesign, 2021. http://urn.kb.se/resolve?urn=urn:nbn:se:kth:diva-297961.
Full textTerzic, Marilyn. "When education becomes entertainment : the effects of heavy viewing of content light programming on instructional television comprehension and recall." Thesis, National Library of Canada = Bibliothèque nationale du Canada, 2000. http://www.collectionscanada.ca/obj/s4/f2/dsk1/tape3/PQDD_0021/MQ54252.pdf.
Full textFeralio, Tyler Samuel. "The Effect Of Biodiesel Blends On Particle Number Emissions From A Light Duty Diesel Engine." ScholarWorks @ UVM, 2015. http://scholarworks.uvm.edu/graddis/400.
Full textSimsek, Yusuf. "Development Of Software For Calculations Of The Reflectance, Transmittance And Absorptance Of Multilayered Thin Films." Master's thesis, METU, 2008. http://etd.lib.metu.edu.tr/upload/12610275/index.pdf.
Full textWang, Liang. "NOVEL DENSE STEREO ALGORITHMS FOR HIGH-QUALITY DEPTH ESTIMATION FROM IMAGES." UKnowledge, 2012. http://uknowledge.uky.edu/cs_etds/4.
Full textSathianathan, Sarmatha. "School-Based Sexual Violence Prevention: An Analysis of the 2015 Ontario Curriculum in Light of Themes Present in the Literature and the Social Norm Approach." Thesis, Université d'Ottawa / University of Ottawa, 2019. http://hdl.handle.net/10393/39762.
Full textKaravadara, Nilesh. "RA-LPEL : a Resource-Aware Light-weight Parallel Execution Layer for reactive stream processing networks on the SCC many-core tiled architecture." Thesis, University of Hertfordshire, 2016. http://hdl.handle.net/2299/17225.
Full textBooks on the topic "Programming light"
1947-, McGibbon Barry, ed. UML xtra-light: How to specify your software requirements. Cambridge, U.K: Cambridge University Press, 2003.
Find full textGame design: From blue sky to green light. Wellesley, Mass: A K Peters, 2007.
Find full textPeter, Schaeffer, ed. Optics: An introduction for technicians and technologists. Upper Saddle River, N.J: Prentice Hall, 2000.
Find full textZen & the art of the Macintosh: Discoveries on the path to computer enlightment. Philadelphia, Pa: Running Press, 1986.
Find full textZnO bao mo zhi bei ji qi guang, dian xing neng yan jiu. Shanghai Shi: Shanghai da xue chu ban she, 2010.
Find full textLight Years. Simon Pulse, 2018.
Find full textLight Years. Simon Pulse, 2017.
Find full textGriffin, Emily Ziff. Light Years. Audible Studios on Brilliance Audio, 2018.
Find full textKratochvil, Milan, and Barry McGibbon. UML Xtra-Light: How to Specify Your Software Requirements. Cambridge University Press, 2002.
Find full textBlaker, J. Warren, and Peter Schaeffer. Optics: An Introduction for Technicians and Technologists. Prentice Hall, 1999.
Find full textBook chapters on the topic "Programming light"
Trobaugh, James J., and Mannie Lowe. "Light Detection." In Winning LEGO MINDSTORMS Programming, 121–39. Berkeley, CA: Apress, 2012. http://dx.doi.org/10.1007/978-1-4302-4537-7_8.
Full textElkin, Michael, Ofer Neiman, and Shay Solomon. "Light Spanners." In Automata, Languages, and Programming, 442–52. Berlin, Heidelberg: Springer Berlin Heidelberg, 2014. http://dx.doi.org/10.1007/978-3-662-43948-7_37.
Full textChapman, B., F. Bodin, L. Hill, J. Merlin, G. Viland, and F. Wollenweber. "A Light-Weight Integrated Programming Environment⋆." In Euro-Par’99 Parallel Processing, 125–34. Berlin, Heidelberg: Springer Berlin Heidelberg, 1999. http://dx.doi.org/10.1007/3-540-48311-x_13.
Full textBaillot, Patrick, Marco Gaboardi, and Virgile Mogbil. "A PolyTime Functional Language from Light Linear Logic." In Programming Languages and Systems, 104–24. Berlin, Heidelberg: Springer Berlin Heidelberg, 2010. http://dx.doi.org/10.1007/978-3-642-11957-6_7.
Full textHeld, Stephan, and Daniel Rotter. "Shallow-Light Steiner Arborescences with Vertex Delays." In Integer Programming and Combinatorial Optimization, 229–41. Berlin, Heidelberg: Springer Berlin Heidelberg, 2013. http://dx.doi.org/10.1007/978-3-642-36694-9_20.
Full textKaliszyk, Cezary, and Josef Urban. "Lemma Mining over HOL Light." In Logic for Programming, Artificial Intelligence, and Reasoning, 503–17. Berlin, Heidelberg: Springer Berlin Heidelberg, 2013. http://dx.doi.org/10.1007/978-3-642-45221-5_34.
Full textTan, Gang. "JNI Light: An Operational Model for the Core JNI." In Programming Languages and Systems, 114–30. Berlin, Heidelberg: Springer Berlin Heidelberg, 2010. http://dx.doi.org/10.1007/978-3-642-17164-2_9.
Full textPang, Aiken, and Peter Membrey. "Light Sensors: Turning a Laser Pointer into a Hi-Tech Tripwire." In Beginning FPGA: Programming Metal, 221–65. Berkeley, CA: Apress, 2016. http://dx.doi.org/10.1007/978-1-4302-6248-0_12.
Full textGauthier, Thibault, and Cezary Kaliszyk. "Sharing HOL4 and HOL Light Proof Knowledge." In Logic for Programming, Artificial Intelligence, and Reasoning, 372–86. Berlin, Heidelberg: Springer Berlin Heidelberg, 2015. http://dx.doi.org/10.1007/978-3-662-48899-7_26.
Full textLu, Wei. "Introducing the Light Sensor and Color Sensor." In Beginning Robotics Programming in Java with LEGO Mindstorms, 193–202. Berkeley, CA: Apress, 2016. http://dx.doi.org/10.1007/978-1-4842-2005-4_11.
Full textConference papers on the topic "Programming light"
Zheng Li, Yi Sun, and Jinyuan Jia. "Light weighted VRML interaction programming." In 2009 IEEE 10th International Conference on Computer-Aided Industrial Design & Conceptual Design. IEEE, 2009. http://dx.doi.org/10.1109/caidcd.2009.5375062.
Full textKim, Junhui, and Joongheon Kim. "Light-Weight Programming Language for Blockchain (demo)." In MobiSys '19: The 17th Annual International Conference on Mobile Systems, Applications, and Services. New York, NY, USA: ACM, 2019. http://dx.doi.org/10.1145/3307334.3328567.
Full textPadmasiri, T. D. N. D., and D. N. Ranasinghe. "Genetic programming tuned fuzzy controlled traffic light system." In 2014 International Conference on Advances in ICT for Emerging Regions (ICTer). IEEE, 2014. http://dx.doi.org/10.1109/icter.2014.7083885.
Full textBaker, Christopher G., Michael A. Heroux, H. Carter Edwards, and Alan B. Williams. "A Light-weight API for Portable Multicore Programming." In 2010 18th Euromicro International Conference on Parallel, Distributed and Network-Based Processing (PDP). IEEE, 2010. http://dx.doi.org/10.1109/pdp.2010.49.
Full textLiu, Peng, Xiangyu Zhang, Omer Tripp, and Yunhui Zheng. "Light: replay via tightly bounded recording." In PLDI '15: ACM SIGPLAN Conference on Programming Language Design and Implementation. New York, NY, USA: ACM, 2015. http://dx.doi.org/10.1145/2737924.2738001.
Full textAdasme, Pablo, Ismael Soto, Enrique San Juan, Fabian Seguel, and Ali Dehghan Firoozabadi. "Maximizing Signal to Interference Noise Ratio for Massive MIMO: A Mathematical Programming Approach." In 2020 South American Colloquium on Visible Light Communications (SACVC). IEEE, 2020. http://dx.doi.org/10.1109/sacvlc50805.2020.9129889.
Full textGaboardi, Marco, and Romain Péchoux. "Algebras and coalgebras in the light affine Lambda calculus." In ICFP'15: 20th ACM SIGPLAN International Conference on Functional Programming. New York, NY, USA: ACM, 2015. http://dx.doi.org/10.1145/2784731.2784759.
Full textLe, Tung, and Chen Cai. "A new feature for approximate dynamic programming traffic light controller." In the Second International Workshop. New York, New York, USA: ACM Press, 2010. http://dx.doi.org/10.1145/1899441.1899450.
Full textXiao, Yao, Bo Zhou, and Jiahui Xuan. "Robot intelligent welding programming based on line structure light sensing." In 2018 33rd Youth Academic Annual Conference of Chinese Association of Automation (YAC). IEEE, 2018. http://dx.doi.org/10.1109/yac.2018.8406480.
Full textVasilakis, Nikos, Ben Karel, Yash Palkhiwala, John Sonchack, André DeHon, and Jonathan M. Smith. "Ignis: scaling distribution-oblivious systems with light-touch distribution." In PLDI '19: 40th ACM SIGPLAN Conference on Programming Language Design and Implementation. New York, NY, USA: ACM, 2019. http://dx.doi.org/10.1145/3314221.3314586.
Full text