Academic literature on the topic 'La Scala'

Create a spot-on reference in APA, MLA, Chicago, Harvard, and other styles

Select a source type:

Consult the lists of relevant articles, books, theses, conference reports, and other scholarly sources on the topic 'La Scala.'

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 "La Scala"

1

Ofenbeck, Georg, Tiark Rompf, Alen Stojanov, Martin Odersky, and Markus Püschel. "Spiral in scala." ACM SIGPLAN Notices 49, no. 3 (2014): 125–34. http://dx.doi.org/10.1145/2637365.2517228.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Ingwersen, Niels, and Jørgen Gustava Brandt. "Scala-Suite/Lys." World Literature Today 62, no. 1 (1988): 136. http://dx.doi.org/10.2307/40144146.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Odersky, Martin. "The Scala experiment." ACM SIGPLAN Notices 41, no. 1 (2006): 166–67. http://dx.doi.org/10.1145/1111320.1111052.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Gupta, Vaishnavi. "Suitability of Scala." International Journal for Research in Applied Science and Engineering Technology 9, no. VIII (2021): 90–99. http://dx.doi.org/10.22214/ijraset.2021.37249.

Full text
Abstract:
: We all are not new to the fact that data is increasing exponentially. It is increasing more than ever before, from 2 zetabytes in 2010 to 59 zetabytes in 2020. Not only this, it is predicted to be 149 zetabytes by 2024. As the data is growing and that too how the traditional methods like SQL, Excel, etc., would not be enough and feasible to analyze or store huge amount of data as they have storage and processing restrictions. It was important to use tools which are much more efficient and much more effective. To handle this ‘Big Data’ various tools were created E.g.: Hadoop, Spark, NoSQL, etc., not only this various programming languages also came into picture. Scala is just one of them. In this paper we are trying to highlight the importance of Scala, and how it is so unpopular and under-rated as compared to other programming languages; despite the fact that it is a strong statically typedgeneralpurpose programming language which supports both object oriented language and functional programming. Also, it is easy to understand and use as compared to other programming languages. In this paper we will see and discuss how Scala has been beneficial and why do we want it to gain more popularity in the industry. We will also see the cons associated and if it’s worthy enough given its cons.
APA, Harvard, Vancouver, ISO, and other styles
5

Author, Placeholder. "Editorial: Scala Culturae." Mankind Quarterly 61, no. 4 (2021): 788–91. http://dx.doi.org/10.46469/mq.2021.61.4.1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Křikava, Filip, Heather Miller, and Jan Vitek. "Scala implicits are everywhere: a large-scale study of the use of Scala implicits in the wild." Proceedings of the ACM on Programming Languages 3, OOPSLA (2019): 1–28. http://dx.doi.org/10.1145/3360589.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Sun, Xian-He, Thomas Fahringer, and Mario Pantano. "Scala: A Performance System for Scalable Computing." International Journal of High Performance Computing Applications 16, no. 4 (2002): 357–70. http://dx.doi.org/10.1177/109434200201600401.

Full text
Abstract:
Summary Lack of effective performance-evaluation environments is a major barrier to the broader use of high performance computing. Conventional performance environments are based on profiling and event instrumentation. It becomes problematic as parallel systems scale to hundreds of nodes and beyond. A framework of developing an integrated performance modeling and prediction system, SCALability Analyzer (SCALA), is presented in this study. In contrast to existing performance tools, the program performance model generated by SCALA is based on scalability analysis. SCALA assumes the availability of modern compiler technology, adopts statistical and symbolic methodologies, and has the support of browser interface. These technologies, together with anew approach of scalability analysis, enable SCALA to provide the user with a more intuitive level of performance analysis for scalable computing. A prototype SCALA system has been implemented. Initial experimental results show that SCALA is unique in its ability of revealing the scaling properties of a computing system.
APA, Harvard, Vancouver, ISO, and other styles
8

OLIVEIRA, BRUNO C. D. S., and JEREMY GIBBONS. "Scala for generic programmers." Journal of Functional Programming 20, no. 3-4 (2010): 303–52. http://dx.doi.org/10.1017/s0956796810000171.

Full text
Abstract:
AbstractDatatype-generic programming (DGP) involves parametrization of programs by the shape of data, in the form of type constructors such as ‘list of’. Most approaches to DGP are developed in pure functional programming languages such as Haskell. We argue that the functional object-oriented language Scala is in many ways a better choice. Not only does Scala provide equivalents of all the necessary functional programming features (such as parametric polymorphism, higher-order functions, higher-kinded type operations, and type- and constructor-classes), but it also provides the most useful features of object-oriented languages (such as subtyping, overriding, traditional single inheritance, and multiple inheritance in the form of traits). Common Haskell techniques for DGP can be conveniently replicated in Scala, whereas the extra expressivity provides some important additional benefits in terms of extensibility and reuse. We illustrate this by comparing two simple approaches in Haskell, pointing out their limitations and showing how equivalent approaches in Scala address some of these limitations. Finally, we present three case studies on how to implement in Scala real DGP approaches from the literature: Hinze's ‘Generics for the Masses’, Lämmel and Peyton Jones's ‘Scrap your Boilerplate with Class’, and Gibbons's ‘Origami Programming’.
APA, Harvard, Vancouver, ISO, and other styles
9

Yamaguchi, Hiroshi, and Shigeru Chiba. "Inverse macro in Scala." ACM SIGPLAN Notices 51, no. 3 (2016): 85–94. http://dx.doi.org/10.1145/2936314.2814213.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Green, London. "Toscanini at La Scala." Opera Quarterly 10, no. 3 (1994): 209–12. http://dx.doi.org/10.1093/oq/10.3.209.

Full text
APA, Harvard, Vancouver, ISO, and other styles
More sources

Dissertations / Theses on the topic "La Scala"

1

N'guessan, Olayinka. "Generic programming in Scala." Texas A&M University, 2006. http://hdl.handle.net/1969.1/5008.

Full text
Abstract:
Generic programming is a programming methodology that aims at producing reusable code, defined independently of the data types on which it is operating. To achieve this goal, that particular code must rely on a set of requirements known as concepts. The code is only functional for the set of data types that fulfill the conditions established by its concepts. Generic programming can facilitate code reuse and reduce testing. Generic programming has been embraced mostly in the C++ community; major parts of the C++ standard library have been developed following the paradigm. This thesis is based on a study (by Garcia et al.) on generic programming applied to other languages (C#, Eiffel, Haskell, Java and ML). That study demonstrated that those languages are lacking in their support for generic programming, causing diffculties to the programmer. In this context, we investigate the new object-oriented language Scala. This particular language appealed to our interest because it implements "member types" which we conjecture to fix some of the problems of the languages surveyed in the original study. Our research shows that Scala's member types are an expressive language feature and solve some but not all of the problems identified in the original study (by Garcia et al.). Scala's members types did not resolve the problem of adding associated types to the parameter list of generic methods. This issue led to repeated constraints, implicit instantiation failure and code verbosity increase. However, Scala's member types enabled constraint propagation and type aliasing, two significantly useful generic programming mechanisms.
APA, Harvard, Vancouver, ISO, and other styles
2

Pradel, Michael. "Rollen und Kollaborationen in Scala." Master's thesis, Saechsische Landesbibliothek- Staats- und Universitaetsbibliothek Dresden, 2008. http://nbn-resolving.de/urn:nbn:de:bsz:14-ds-1214390925931-22406.

Full text
Abstract:
The interrelations of a set of software objects are usually manifold and complex. Common object-oriented programming languages provide constructs for structuring objects according to shared properties and behavior, but fail to provide abstraction mechanisms for the interactions of objects. Roles seem to be a promising approach to solve this problem as they focus on the behavior of an object in a certain context. Combining multiple roles yields collaborations, an interesting abstraction and reuse unit. However, existing approaches towards roles in programming languages require vast extensions of the underlying language or even propose new languages. We propose a programming technique that enables role-based programming with commonly available language constructs. Thus, programmers can express roles and collaborations by simply using a library, and hence, without the need to change the language, its compiler, and its tools. We explain our proposal on a language-independent level. Moreover, we provide an implementation in form of a library for the Scala programming language. Finally, we apply our ideas to design patterns and analyze to which extent these can be expressed and reused with roles<br>Die Zusammenhänge zwischen Softwareobjekten sind vielfältig und komplex. In den meisten objektorientierten Programmiersprachen werden Objekte an Hand von gemeinsamen Eigenschaften und Verhalten klassifiziert. Konstrukte zum Strukturieren bezüglich ihrer Interaktionen fehlen jedoch. Ein vielversprechender Lösungsansatz sind Rollen, welche das Verhalten von Objekten in einem bestimmten Kontext beschreiben. Zusammenhängende Rollen können zu Kollaborationen abstrahiert werden. Diese sind insbesondere als wiederverwendbare Bausteine interessant. Allerdings verändern bisherige Ansätze zu rollenbasiertem Programmieren die zu Grunde liegende Sprache erheblich oder schlagen gar neue Sprachen vor. Im Gegensatz dazu zeigen wir eine Programmiermethode, die rollenbasiertes Programmieren mit üblichen Sprachkonstrukten ermöglicht. Somit können Rollen und Kollaborationen als Bibliothek bereitgestellt werden, also ohne Sprache, Compiler und Werkzeuge anpassen zu müssen. Wir erläutern unseren Ansatz zunächst sprachunabhängig. Desweiteren wird eine Implementierung als Bibliothek für die Scala Programmiersprache präsentiert. Als praktische Anwendung stellen wir Entwurfsmustern dar und überprüfen, inwiefern sich diese mit Rollen ausdrücken und wiederverwenden lassen
APA, Harvard, Vancouver, ISO, and other styles
3

Montagna, Marco. "Scala delle distanze in astrofisica." Bachelor's thesis, Alma Mater Studiorum - Università di Bologna, 2017. http://amslaurea.unibo.it/12831/.

Full text
Abstract:
La misura delle distanze in astrofisica è una materia complessa ma essenziale per la comprensione dei fenomeni astronomici. Nei secoli gli astronomi hanno ideato diversi metodi per ottenere questa importante misura. Nel loro insieme questi metodi formano una scala delle distanze, dove ogni gradino della scala è calibrato a partire dal gradino precedente. I metodi per misurare le distanze in astrofisica sono raggruppati in tre categorie: i metodi geometrici, basati sul concetto di parallasse, che possono essere usati solo all'interno della Via Lattea; gli indicatori primari, i quali sono basati sul concetto di candele standard, ovvero oggetti di cui si conosce a priori la magnitudine assoluta, utili per determinare distanze fino a 300 Mpc; infine, gli indicatori secondari, calibrati a partire dagli indicatori primari, che sono usati per ottenere le distanze di oggetti fino ai confini dell'Universo conosciuto. In questa tesi di laurea vengono presi in esame i diversi metodi: la parallasse stellare annua, il fit di sequenza principale, le candele standard e in particolare le Cefeidi, le stelle RR Lyrae e le supernovae Ia, il piano fondamentale, la legge di Tully-Fisher, la legge di Hubble. Infine, dopo aver parlato delle galassie più lontane osservate dal telescopio spaziale Hubble, una breve sezione è dedicata a cenni riguardo al problema delle distanze in cosmologia.
APA, Harvard, Vancouver, ISO, and other styles
4

Barbantini, Elena. "Scala delle distanze in Astrofisica." Bachelor's thesis, Alma Mater Studiorum - Università di Bologna, 2018. http://amslaurea.unibo.it/16354/.

Full text
Abstract:
Con i vari metodi utilizzati per calcolare le distanze dei corpi celesti è stata creata una vera e propria scala delle distanze astrofisiche, in cui ogni gradino funge da calibro per quello successivo. Infatti, a partire dalla misura delle distanze all'interno del sistema solare e delle stelle vicine, è stato possibile calcolare le distanze delle galassie vicine e successivamente di quelle più lontane, potendo, infine, determinare il valore della costante di Hubble per la stima delle dimensioni dell'Universo.
APA, Harvard, Vancouver, ISO, and other styles
5

Prampolini, Nicoló. "Scala delle distanze in astrofisica." Bachelor's thesis, Alma Mater Studiorum - Università di Bologna, 2018. http://amslaurea.unibo.it/17091/.

Full text
Abstract:
In astrofisica non è possibile ottenere misure dirette di una distanza, tutto ciò che si può ottenere sono in realtà stime indirette basate su quantità osservative. Solo pochissimi dei metodi utilizzati sono completamente indipendenti e spesso la loro applicabilità èe limitata a distanze relativamente ridotte; tutti gli altri basano su leggi empiriche che evidenziano delle correlazioni la cui costante di proporzionalità deve essere definita da una calibrazione. Tramite i primi dunque si calibra un metodo successivo, capace di raggiungere distanze maggiori, che a sua volta verrà usato per calibrare un metodo successivo e via dicendo; il sistema che così si costruisce è noto come scala delle distanze cosmiche ed è l’argomento centrale di questo elaborato.
APA, Harvard, Vancouver, ISO, and other styles
6

Leonardi, Pietro. "Scala delle distanze in astrofisica." Bachelor's thesis, Alma Mater Studiorum - Università di Bologna, 2019. http://amslaurea.unibo.it/18761/.

Full text
Abstract:
La determinazione delle distanze, partendo dal sistema solare fino ad arrivare a scale cosmologiche, ricopre un ruolo di grande importanza per tutte le aree dell’astrofisica. Tra tutti i metodi esistenti non ne esiste uno in grado di misurare distanze in maniera consistente, e a causa di ciò le scale di distanza devono essere costruite passo dopo passo, utilizzando diversi metodi, i quali funzionano su intervalli limitati di distanze. La misura di una distanza “diretta” è possibile solo per oggetti “vicini” alla Terra (qualche centinaio di parsec). Gli altri metodi, che possiamo chiamare indiretti, sono dipendenti tra di loro. Ogni metodo deve essere calibrato mediante il metodo precedente, pertanto ogni errore in un metodo si ripercuote in quelli successivi. Il sistema che così si costituisce si chiama scala delle distanze cosmiche, che è l’argomento centrale di questo elaborato.
APA, Harvard, Vancouver, ISO, and other styles
7

Vettori, Gregorio. "Scala delle distanze in astrofisica." Bachelor's thesis, Alma Mater Studiorum - Università di Bologna, 2020. http://amslaurea.unibo.it/21197/.

Full text
Abstract:
In astrofisica la determinazione delle distanze ha sempre assunto un ruolo molto importante, poiché essa consente una più accurata comprensione della struttura e dell’evoluzione dell’universo in cui ci troviamo. Ci sono molti metodi che possono essere seguiti, a seconda degli oggetti di studio e dello scopo della ricerca. I metodi diretti (geometrici), utilizzabili solo nei dintorni del Sistema Solare, permettono di calibrare quelli indiretti (indicatori primari e secondari), i quali sono utilizzabili a distanze molto maggiori. Ogni metodo consente di accurare il successivo, creando così un meccanismo di misura chiamato scala delle distanze cosmiche, la quale ha come fine ultimo la calibrazione della legge di Hubble, di fondamentale importanza in cosmologia.
APA, Harvard, Vancouver, ISO, and other styles
8

Dionisi, Marco. "Scala delle distanze in astrofisica." Bachelor's thesis, Alma Mater Studiorum - Università di Bologna, 2014. http://amslaurea.unibo.it/7380/.

Full text
Abstract:
La misura delle distanze in astrofisica non è affatto semplice, ma è molto importante per capire le dimensioni dell'Universo e le caratteristiche dei corpi celesti. Inoltre per descrivere le enormi distanze astronomiche sono state introdotte delle apposite unità di misura, quali l'Unità Astronomica, l'anno luce e il parsec. Esistono vari modi per calcolare le distanze: i metodi geometrici, basati sulla parallasse; gli indicatori primari, utilizzano le cosiddette candele standard, cioè oggetti di cui è nota la magnitudine assoluta, per calcolare le distanze di galassie vicine, e sono calibrati sulle misure dei metodi geometrici; gli indicatori secondari, utilizzano gli indicatori primari come calibri per poter calcolare le distanze di galassie ed ammassi di galassie lontani. Quindi le distanze si calcolano attraverso una serie di passaggi successivi, creando così una vera e propria scala, in cui ogni gradino corrisponde ad un metodo che viene calibrato sul precedente. Con i metodi geometrici da Terra sono state misurate distanze fino a poche centinaia di parsec, con il satellite Ipparcos si è arrivati ai Kiloparsec e col satellite Gaia saranno note le distanze di tutte le stelle della galassia. Con gli indicatori primari è stato possibile calcolare le distanze delle galassie vicine e con quelli secondari le distanze di galassie ed ammassi lontani, potendo così stimare con la Legge di Hubble le dimensioni dell'Universo. In questo elaborato verranno analizzati diversi metodi: i vari tipi di parallasse (quella annua e di ammasso in particolare), il fit di sequenza principale per gli ammassi stellari, le stelle variabili (Cefeidi classiche, W Virginis, RR Lyrae), le Supernovae di tipo Ia, la relazione di Tully-Fisher, il Piano Fondamentale e la Legge di Hubble.
APA, Harvard, Vancouver, ISO, and other styles
9

Toro, Ipinza Matías. "Customizable gradual effects for scala." Tesis, Universidad de Chile, 2015. http://repositorio.uchile.cl/handle/2250/134924.

Full text
Abstract:
Magíster en Ciencias, Mención Computación<br>Operaciones realizadas por un programa de computación pueden producir efectos. Efectos computacionales pueden ser definidos como operaciones que interactúan y que se comunican con su ambiente. Ejemplos de efectos son imprimir en pantalla, leer data de usuarios, asignación de memoria, excepciones, etc. Una función que no produce efectos es llamada una función pura. Los sistemas de efectos ayudan a controlar estos efectos colaterales . Por ejemplo, permite correr funciones puras en paralelo sin temer a obtener carreras de datos. Una function pura también preserva la transparencia referencial, asegurando que si una función es aplicada con los mismos argumentos más de una vez, el resultado sigue siendo el mismo. En este trabajo se diseñó y desarrolló un sistema de efectos genérico que se caracteriza por ser práctico, combinando para ello tres conceptos de efectos fundamentales: efectos graduales, efectos polimórficos y efectos personalizados. Debido a que la verificación estática puede ser demasiada restrictiva (algunos programas válidos son rechazados), Bañados et al propusieron una teoría que mezcla chequeo de efectos dinámico y estático, permitiendo a desarrolladores a adaptar gradualmente una disciplina de efectos en proyectos existentes. Este sistema de efectos graduales da la flexibilidad para moverse entre un sistema completamente anotado con efectos (estático) a uno sin anotaciones de efectos (dinámico), introduciendo chequeos en tiempo de ejecución cuando sea necesario. Rytz et al diseño e implementó un sistema de efectos polimórficos, el cual incrementa la expresividad de los sistemas de efectos usando patrones de orden superior para efectos. Una función es polimórfica en los efectos de su argumento si es que los efectos de la función depende de los efectos de su argumento. Esto permite expresar funciones como map, pura en efectos salvo por los efectos que la función que recibe como argumento pueda producir. En general los dominios de efectos carecen de localidad: tienen un alcance muy general. Por ejemplo: no es necesario considerar toda operación de entrada/salida como un efecto. Los sistemas de efectos no permiten hacer un seguimiento de efectos de operaciones específicas definidas por el usuario. Incorporar y personalizar un sistema de efectos requiere conocimientos previos acerca de sistemas de efectos. Inclusive, con la experiencia adecuada, implementar una disciplina de efectos puede ser difícil o lento. Es necesario un sistema que permita la fácil creación de dominios de efectos. El trabajo de ésta tesis consiste en tres partes. La primera parte extiende la formalización del sistema de efectos graduales añadiendo efectos polimórficos. En la segunda parte se diseña la sintaxis y semántica necesaria para crear dominios de efectos a través de un lenguaje específico de dominio (DSL). El DSL permite la creación de dominios de efectos con estructuras y relaciones complejas, y la especificación de donde los efectos deben ser producidos mediante especificaciones de efectos externa. También se entrega una formalización del DSL extendiendo el sistema de efectos combinado de la primera parte. La tercera y final parte consiste en la implementación del sistema final de efectos y del DSL en el lenguaje de programación Scala a través de plugins para el compilador.
APA, Harvard, Vancouver, ISO, and other styles
10

Haenchen, Hartmut, Thomas Bürger, and Karl-Wilhelm Geck. "Vom Dresdner Kreuzchor zur Mailänder Scala." Saechsische Landesbibliothek- Staats- und Universitaetsbibliothek Dresden, 2013. http://nbn-resolving.de/urn:nbn:de:bsz:14-qucosa-107287.

Full text
Abstract:
Der Dirigent Hartmut Haenchen hat einen Schenkungsvertrag mit der SLUB geschlossen, um die Dokumente seines künstlerischen Wirkens dauerhaft für Forschung und Praxis zur Verfügung zu stellen. Schon als Schüler und Student hat er sich mit den musikalischen Quellen der Bibliothek beschäftigt, heute ist er auf den Konzert- und Opernbühnen der Welt zu Hause. Die SLUB widmet ihm eine Ausstellung (vom 22. Februar bis 5. Mai) und eine Matinee am 17. März. Thomas Bürger und Karl-Wilhelm Geck befragten ihn am 8. Februar – bei seinem Besuch der SLUB zwischen zwei Proben an der Mailänder Scala – zu seinem Werdegang und zu seinen weiteren Plänen.
APA, Harvard, Vancouver, ISO, and other styles
More sources

Books on the topic "La Scala"

1

Braun, Oliver. Scala. Carl Hanser Verlag GmbH & Co. KG, 2010. http://dx.doi.org/10.3139/9783446426221.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Miron, Violeta. Scala. Editura Eminescu, 1986.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
3

Truyos, Grabriel Games. Scala Averni. Grafiques Miramar, 1985.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
4

Segalini, Sergio. La Scala. Sand, 1989.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
5

Layka, Vishal, and David Pollak. Beginning Scala. Apress, 2015. http://dx.doi.org/10.1007/978-1-4842-0232-6.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Pollak, David. Beginning Scala. Apress, 2009. http://dx.doi.org/10.1007/978-1-4302-1990-3.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Lacava, Alessandro, Janek Bogucki, Aliaksandr Bedrytski, Matthew de Detrich, and Benjamin Neil. Professional Scala. John Wiley & Sons, Inc., 2016. http://dx.doi.org/10.1002/9781119281313.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

service), SpringerLink (Online, ed. Beginning Scala. Apress, 2009.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
9

Alex, Payne, ed. Programming Scala. Oreilly, 2009.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
10

Seeberger, Heiko. Durchstarten mit Scala. entwickler press, 2011.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
More sources

Book chapters on the topic "La Scala"

1

Alexandrov, Alexander. "Scala." In Encyclopedia of Big Data Technologies. Springer International Publishing, 2019. http://dx.doi.org/10.1007/978-3-319-77525-8_306.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Alexandrov, Alexander. "Scala." In Encyclopedia of Big Data Technologies. Springer International Publishing, 2018. http://dx.doi.org/10.1007/978-3-319-63962-8_306-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Alexandrov, Alexander. "Scala." In Encyclopedia of Big Data Technologies. Springer International Publishing, 2020. http://dx.doi.org/10.1007/978-3-319-63962-8_306-2.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Layka, Vishal, and David Pollak. "Scala Collections." In Beginning Scala. Apress, 2015. http://dx.doi.org/10.1007/978-1-4842-0232-6_6.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Pollak, David. "About Scala and How to Install It." In Beginning Scala. Apress, 2009. http://dx.doi.org/10.1007/978-1-4302-1990-3_1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Pollak, David. "Scala Syntax, Scripts, and Your First Scala Programs." In Beginning Scala. Apress, 2009. http://dx.doi.org/10.1007/978-1-4302-1990-3_2.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Pollak, David. "Collections and the Joy of Immutability." In Beginning Scala. Apress, 2009. http://dx.doi.org/10.1007/978-1-4302-1990-3_3.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

Pollak, David. "Fun with Functions, and Never Having to Close That JDBC Connection." In Beginning Scala. Apress, 2009. http://dx.doi.org/10.1007/978-1-4302-1990-3_4.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

Pollak, David. "Pattern Matching." In Beginning Scala. Apress, 2009. http://dx.doi.org/10.1007/978-1-4302-1990-3_5.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Pollak, David. "Actors and Concurrency." In Beginning Scala. Apress, 2009. http://dx.doi.org/10.1007/978-1-4302-1990-3_6.

Full text
APA, Harvard, Vancouver, ISO, and other styles

Conference papers on the topic "La Scala"

1

"ScalA'14 Foreword." In 2014 5th Workshop on Latest Advances in Scalable Algorithms for Large-Scale Systems (ScalA). IEEE, 2014. http://dx.doi.org/10.1109/scala.2014.16.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Jeffery, Alex. "Dependent object types with implicit functions." In Scala '19: Tenth ACM SIGPLAN Scala Symposium. ACM, 2019. http://dx.doi.org/10.1145/3337932.3338811.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Scalas, Alceste, Nobuko Yoshida, and Elias Benussi. "Effpi." In Scala '19: Tenth ACM SIGPLAN Scala Symposium. ACM, 2019. http://dx.doi.org/10.1145/3337932.3338812.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Parreaux, Lionel, Aleksander Boruch-Gruszecki, and Paolo G. Giarrusso. "Towards improved GADT reasoning in Scala." In Scala '19: Tenth ACM SIGPLAN Scala Symposium. ACM, 2019. http://dx.doi.org/10.1145/3337932.3338813.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Laufer, Konstantin, John O'Sullivan, and George K. Thiruvathukal. "Tests as maintainable assets via auto-generated spies." In Scala '19: Tenth ACM SIGPLAN Scala Symposium. ACM, 2019. http://dx.doi.org/10.1145/3337932.3338814.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

De Bleser, Jonas, Dario Di Nucci, and Coen De Roover. "SoCRATES." In Scala '19: Tenth ACM SIGPLAN Scala Symposium. ACM, 2019. http://dx.doi.org/10.1145/3337932.3338815.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Moors, Adriaan, Tiark Rompf, Philipp Haller, and Martin Odersky. "Scala-virtualized." In the ACM SIGPLAN 2012 workshop. ACM Press, 2012. http://dx.doi.org/10.1145/2103746.2103769.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

Weiel, Manuel, Ingo Maier, Sebastian Erdweg, Michael Eichberg, and Mira Mezini. "Towards virtual traits in Scala." In the Fifth Anuual Scala Workshop. ACM Press, 2014. http://dx.doi.org/10.1145/2637647.2637654.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

"Title Page iii." In 2014 5th Workshop on Latest Advances in Scalable Algorithms for Large-Scale Systems (ScalA). IEEE, 2014. http://dx.doi.org/10.1109/scala.2014.1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Welton, Benjamin, and Barton P. Miller. "The Anatomy of Mr. Scan: A Dissection of Performance of an Extreme Scale GPU-Based Clustering Algorithm." In 2014 5th Workshop on Latest Advances in Scalable Algorithms for Large-Scale Systems (ScalA). IEEE, 2014. http://dx.doi.org/10.1109/scala.2014.10.

Full text
APA, Harvard, Vancouver, ISO, and other styles

Reports on the topic "La Scala"

1

Josephson, Gary B., and Joseph H. Westsik. Goethite Bench-scale and Large-scale Preparation Tests. Office of Scientific and Technical Information (OSTI), 2011. http://dx.doi.org/10.2172/1029091.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

CARLSON, ROLF E. Sandia SCADA Program -- High Surety SCADA LDRD Final Report. Office of Scientific and Technical Information (OSTI), 2002. http://dx.doi.org/10.2172/800787.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Wardle, Kent E., Kurt Frey, and Candido Pereira. FY10 Report on Multi-scale Simulation of Solvent Extraction Processes: Molecular-scale and Continuum-scale Studies. Office of Scientific and Technical Information (OSTI), 2014. http://dx.doi.org/10.2172/1118139.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Muralidharan, Karthik, and Paul Niehaus. Experimentation at Scale. National Bureau of Economic Research, 2017. http://dx.doi.org/10.3386/w23957.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Barrera, J., D. C. Smith, and D. J. Devlin. Nano-scale materials. Office of Scientific and Technical Information (OSTI), 1998. http://dx.doi.org/10.2172/555226.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Rearden, B. T., and Matthew Anderson Jessee. SCALE Code System. Office of Scientific and Technical Information (OSTI), 2016. http://dx.doi.org/10.2172/1424483.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Rearden, Bradley T., and Matthew Anderson Jessee. SCALE Code System. Office of Scientific and Technical Information (OSTI), 2018. http://dx.doi.org/10.2172/1426571.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

de Visser, C. L. M., and R. van Ree. Small-scale Biorefining. Wageningen University & Research, 2016. http://dx.doi.org/10.18174/405718.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

Wieselquist, William, Robert Lefebvre, and Matthew Jessee. SCALE Code System. Office of Scientific and Technical Information (OSTI), 2020. http://dx.doi.org/10.2172/1616812.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Hedges, Jeffrey R. Convective Scale Dynamics. Defense Technical Information Center, 1990. http://dx.doi.org/10.21236/ada231567.

Full text
APA, Harvard, Vancouver, ISO, and other styles
We offer discounts on all premium plans for authors whose works are included in thematic literature selections. Contact us to get a unique promo code!