Gotowa bibliografia na temat „COM CACHE”
Utwórz poprawne odniesienie w stylach APA, MLA, Chicago, Harvard i wielu innych
Zobacz listy aktualnych artykułów, książek, rozpraw, streszczeń i innych źródeł naukowych na temat „COM CACHE”.
Przycisk „Dodaj do bibliografii” jest dostępny obok każdej pracy w bibliografii. Użyj go – a my automatycznie utworzymy odniesienie bibliograficzne do wybranej pracy w stylu cytowania, którego potrzebujesz: APA, MLA, Harvard, Chicago, Vancouver itp.
Możesz również pobrać pełny tekst publikacji naukowej w formacie „.pdf” i przeczytać adnotację do pracy online, jeśli odpowiednie parametry są dostępne w metadanych.
Artykuły w czasopismach na temat "COM CACHE"
Long, Yanshan, Dan Wu, Yueming Cai i Junyue Qu. "Joint cache policy and transmit power for cache-enabled D2D networks". IET Communications 11, nr 16 (9.11.2017): 2498–506. http://dx.doi.org/10.1049/iet-com.2017.0025.
Pełny tekst źródłaOh, M., Y. G. Kim, S. Hong i S. Cha. "ASA: agent-based secure ARP cache management". IET Communications 6, nr 7 (2012): 685. http://dx.doi.org/10.1049/iet-com.2011.0566.
Pełny tekst źródłaCorreia, Artur Jordão Lima, Mario Augusto Pazoti, Francisco Assis da Silva, Leandro Luiz de Almeida i Danillo Roberto Pereira. "SIMULADOR DE UCP COM SUPORTE À MEMÓRIA CACHE E PIPELINE". Colloquium Exactarum 6, nr 3 (30.10.2014): 10–25. http://dx.doi.org/10.5747/ce.2014.v06.n3.e085.
Pełny tekst źródłaXuan, Duo, Jian Chen, Hang Yan i Lu Lv. "Cache allocation optimisation of user relationship group based on reinforcement learning". IET Communications 14, nr 22 (grudzień 2020): 4101–7. http://dx.doi.org/10.1049/iet-com.2020.0201.
Pełny tekst źródłaLiu, Jinbo, i Shaohui Sun. "Energy efficiency analysis of cache-enabled cooperative dense small cell networks". IET Communications 11, nr 4 (9.03.2017): 477–82. http://dx.doi.org/10.1049/iet-com.2016.0680.
Pełny tekst źródłaEnamipour, Leila, Zolfa Zeinalpour-Yazdi i Babak Hossein Khalaj. "Performance analysis of cache-enabled wireless networks considering stochastic geometry approach". IET Communications 13, nr 8 (14.05.2019): 1043–50. http://dx.doi.org/10.1049/iet-com.2018.5249.
Pełny tekst źródłaYeung, K. L., i G. Feng. "Cache partitioning for multiple sessions in local loss recovery of reliable multicast". IEE Proceedings - Communications 152, nr 6 (2005): 866. http://dx.doi.org/10.1049/ip-com:20045186.
Pełny tekst źródłaZeng, Jian Hua, Xiao Hua Liu i Xue Ping Liang. "Balanced Preemptive Selection Course System Using COM+ Cache Service Strategy". Applied Mechanics and Materials 513-517 (luty 2014): 1867–70. http://dx.doi.org/10.4028/www.scientific.net/amm.513-517.1867.
Pełny tekst źródłaHolt, A. "Long-range dependence and self-similarity in World Wide Web proxy cache references". IEE Proceedings - Communications 147, nr 6 (2000): 317. http://dx.doi.org/10.1049/ip-com:20000779.
Pełny tekst źródłaLi, Yue, Ye Wang, Peng Yuan, Qinyu Zhang i Zhihua Yang. "Popularity-aware back-tracing partition cooperative cache distribution for space–terrestrial integrated networks". IET Communications 13, nr 17 (29.10.2019): 2786–96. http://dx.doi.org/10.1049/iet-com.2018.6077.
Pełny tekst źródłaRozprawy doktorskie na temat "COM CACHE"
Oliveira, Wendel Muniz de. "Um modelo para gerenciamento de transações com controle de cache em um repositório chave-valor". reponame:Repositório Institucional da UFPR, 2017. http://hdl.handle.net/1884/53001.
Pełny tekst źródłaDissertação (mestrado) - Universidade Federal do Paraná, Setor de Ciências Exatas, Programa de Pós-Graduação em Informática. Defesa: Curitiba, 14/09/2017
Inclui referências : p. 48-50
Resumo: As estratégias mais comuns para alocação de dados em sistemas distribuídos são as tabelas de dispersão distribuídas (DHT) e os sistemas de diretórios distribuídos. As DHTs garantem escalabilidade, porém não dão às aplicações usuárias controle sobre a localidade dos dados. Por outro lado, os diretórios distribuídos mantêm o mapeamento entre os itens alocados e os servidores que compõem o sistema, o que garante flexibilidade de alocação, mas com escalabilidade limitada. Em um Sistema Gerenciador de Banco de Dados (SGBD), o controle sobre a localidade pode garantir a proximidade dos dados que são frequentemente acessados de forma conjunta nas consultas, com o intuito de reduzir acessos remotos que aumentam o tempo de execução. O ALOCS é um sistema desenvolvido sobre diretórios distribuídos que tem por finalidade ser utilizado como backend de armazenamento de um SGBD. Ele adota o conceito de buckets, compostos por um conjunto de pares chave-valor, como unidade de comunicação de dados entre servidores. Dessa forma, a aplicação usuária pode alocar em um mesmo bucket pares que são frequentemente utilizados em conjunto. Para minimizar ainda mais a quantidade de comunicação, o ALOCS mantém buckets previamente acessados em cache. A utilização de cache pode gerar problemas para a consistência dos dados quando vários servidores mantêm em cache buckets com dados atualizados. O objetivo desta dissertação é desenvolver uma solução para manter a consistência entre os dados atualizados em cache e o sistema de armazenamento distribuído. A solução é baseada no modelo de concorrência multiversão, com transações que garantem o isolamento por snapshot. Ele foi escolhido por sua abordagem otimista e por não bloquear transações somente de leitura. O sistema foi implementado e os experimentos mostram o impacto da alocação de dados sobre o desempenho do sistema, bem como o overhead do protocolo de controle de concorrência sobre o tempo de recuperação e escrita de dados. Os resultados demonstraram a importância do controle sobre a localidade dos dados. O uso do cache foi determinante para reduzir o tempo de execução das consultas. Palavras-chave: controle de concorrência, controle de localidade, cache.
Abstract: The most common strategies for data allocating in distributed systems are Distributed Hash Tables (DHT) and Distributed Directory Systems. DHTs guarantee scalability but do not allow control over data location to user applications. On the other hand, distributed directories store the location of data items, that is, a mapping between the stored data and servers that compose the system. This strategy guarantees flexibility of allocation but limits its scalability. In a Database Management Systems (DBMS), control over data locality can ensure the proximity of data that are frequently accessed together in queries in order to reduce the number of remote accesses that increase their execution time. ALOCS is a system developed on distributed directories to be used as a storage backend for DBMSs. It adopts the concept of buckets, composed by a set of key-value pairs, as the communication unit between servers. In this way, the user application can allocate pairs that are often used together in the same bucket. To further minimize the amount of communication, ALOCS maintains previously accessed buckets in cache. Caching can cause problems for data consistency when multiple servers cache buckets with updated data. The main objective of this dissertation is to develop a solution to maintain the consistency of the updated data in the cache and the storage system. The solution is based on a multiversion concurrency control with snapshot isolation. It has been chosen for its optimistic approach and non-blocking read-only transactions. The system was implemented and our experiments show the impact of data allocation on the system performance as well as the overhead of the concurrency control protocol on the data recovery and writing time. The results show the importance of allocation control on reducing the execution time of queries. Moreover, they show that caching is crucial to reduce the query execution time. Keywords: concurrency control, locality control, cache.
Berkenbrock, Carla Diacui Medeiros. "Uma estratégia para garantir coerência de cache e percepção em sistemas cooperativos com apoio à mobilidade". Instituto Tecnológico de Aeronáutica, 2009. http://www.bd.bibl.ita.br/tde_busca/arquivo.php?codArquivo=852.
Pełny tekst źródłaStarke, Renan Augusto. "Uma Abordagem de escalonamento heterogêneo preemptivo e não preemptivo para sistemas de tempo real com garantia em multiprocessadores". Florianópolis, SC, 2012. http://repositorio.ufsc.br/xmlui/handle/123456789/96473.
Pełny tekst źródłaMade available in DSpace on 2012-10-26T12:25:42Z (GMT). No. of bitstreams: 1 301047.pdf: 1285723 bytes, checksum: fcb30ba5e90539742c71505b32d65921 (MD5)
Sistemas de tempo real são sistemas onde o correto funcionamento não depende somente da resposta lógica correta, mas também do tempo no qual ela foi dada. Igualmente do ponto de vista lógico, a viabilidade temporal da aplicação deve ser determinada através de técnicas, como por exemplo análise do tempo de reposta. Este tipo de aplicação está cada vez mais presente atualmente e a demanda de processamento é tamanha que necessita-se de processadores com múltiplos núcleos complexos. É perceptível que o desenvolvimento dos multiprocessadores está muito mais avançado em relação às técnicas de análise de tais sistemas e, portanto, é evidente a necessidade de pesquisa com objetivo de promover maior confiabilidade e redução de superdimensionamentos. O objetivo deste trabalho é promover uma solução de escalonamento que considere a escalonabilidade em conjunto com a analisabilidade do código da aplicação. Atualmente, a pesquisa de sistemas de tempo real trata o problema do escalonamento isolado do problema de obtenção do parâmetro do tempo de computação da tarefas (WCET --Worst Case Execution Time). Dependendo da arquitetura do processador, as premissas adotadas no cálculo do WCET são incompatíveis com as premissas de escalonamento, o que gera uma contradição fundamental entre o cálculo do WCET e os algoritmos de escalonamento. A incompatibilidade das premissas pode ser ilustrada pela preempção em arquiteturas com memória cache, onde o cálculo de WCET assume execução contínua da tarefa, o que não é verdade em grande parte dos algoritmos de escalonamento. Este trabalho propõe o uso de uma abordagem heterogênea em multiprocessadores onde parte dos núcleos operam em regime preemptivo e parte em regime não preemptivo para tentar lidar com as diferentes considerações sobre preempção. As análises realizadas mostram que existe vantagem em usar a abordagem heterogênea.
Real-time systems are systems where the correct functioning depends not only on the logically correct response, but also the time when it was given. As the the logic functionality, the application response time could be analyzed to determine the viability of a real-time system. This type of application is increasingly present today and the processing demand is such that complex multi-core processors are needed. It is noticeable that the development of multiprocessor is a long way ahead compared with the techniques of analysis of such systems and is therefore necessary researches to promote more reliability and to reduce over-specified systems. The objective of this work is to promote a solution that considers scheduling in conjunction with the analyzability of the application code. Currently, the real-time research considers the scheduling problem isolated from the WCET (Worst Case Execution Time) problem. Depending on the processor architecture, the values obtained by computing WCET are incompatible with the scheduling model which creates a fundamental contradiction between the assumptions of calculation of WCET and scheduling algorithms. This work proposes the use of a heterogeneous approach where part of the multiprocessor cores operate under preemptive and part on a non-preemptive scheduling. The analysis shows that there are advantages using the heterogeneous approach.
Caetano, André Francisco Morielo. "Griddler : uma estratégia configurável para armazenamento distribuído de objetos peer-to-peer que combina replicação e erasure coding com sistema de cache /". São José do Rio Preto, 2017. http://hdl.handle.net/11449/151383.
Pełny tekst źródłaBanca: Geraldo Francisco Donega Zafalon
Banca: Pedro Luiz Pizzigatti Correa
Resumo: Sistemas de gerenciamento de banco de dados, na sua essência, almejam garantir o armazenamento confiável da informação. Também é tarefa de um sistema de gerenciamento de banco de dados oferecer agilidade no acesso às informações. Nesse contexto, é de grande interesse considerar alguns fenômenos recentes: a progressiva geração de conteúdo não-estruturado, como imagens e vídeo, o decorrente aumento do volume de dados em formato digital nas mais diversas mídias e o grande número de requisições por parte de usuários cada vez mais exigentes. Esses fenômenos fazem parte de uma nova realidade, denominada Big Data, que impõe aos projetistas de bancos de dados um aumento nos requisitos de flexibilidade, escalabilidade, resiliência e velocidade dos seus sistemas. Para suportar dados não-estruturados foi preciso se desprender de algumas limitações dos bancos de dados convencionais e definir novas arquiteturas de armazenamento. Essas arquiteturas definem padrões para gerenciamento dos dados, mas um sistema de armazenamento deve ter suas especificidades ajustadas em cada nível de implementação. Em termos de escalabilidade, por exemplo, cabe a escolha entre sistemas com algum tipo de centralização ou totalmente descentralizados. Por outro lado, em termos de resiliência, algumas soluções utilizam um esquema de replicação para preservar a integridade dos dados por meio de cópias, enquanto outras técnicas visam a otimização do volume de dados armazenados. Por fim, ao mesmo tempo que são...
Abstract: Database management systems, in essence, aim to ensure the reliable storage of information. It is also the task of a database management system to provide agility in accessing information. In this context, it is of great interest to consider some recent phenomena: the progressive generation of unstructured content such as images and video, the consequent increase in the volume of data in digital format in the most diverse media and the large number of requests by users increasingly demanding. These phenomena are part of a new reality, named Big Data, that imposes on database designers an increase in the flexibility, scalability, resiliency, and speed requirements of their systems. To support unstructured data, it was necessary to get rid of some limitations of conventional databases and define new storage architectures. These architectures define standards for data management, but a storage system must have its specificities adjusted at each level of implementation. In terms of scalability, for example, it is up to the choice between systems with some type of centralization or totally decentralized. On the other hand, in terms of resiliency, some solutions utilize a replication scheme to preserve the integrity of the data through copies, while other techniques are aimed at optimizing the volume of stored data. Finally, at the same time that new network and disk technologies are being developed, one might think of using caching to optimize access to what is stored. This work explores and analyzes the different levels in the development of distributed storage systems. This work objective is to present an architecture that combines different resilience techniques. The scientific contribution of this work is, in addition to a totally decentralized suggestion of data allocation, the use of an access cache structure with adaptive algorithms in this environment
Mestre
Caetano, André Francisco Morielo [UNESP]. "Griddler: uma estratégia configurável para armazenamento distribuído de objetos peer-to-peer que combina replicação e erasure coding com sistema de cache". Universidade Estadual Paulista (UNESP), 2017. http://hdl.handle.net/11449/151383.
Pełny tekst źródłaApproved for entry into archive by Luiz Galeffi (luizgaleffi@gmail.com) on 2017-08-23T19:42:08Z (GMT) No. of bitstreams: 1 caetano_afm_me_sjrp.pdf: 2084639 bytes, checksum: d77158373f8168fc0224d407bb07aa99 (MD5)
Made available in DSpace on 2017-08-23T19:42:08Z (GMT). No. of bitstreams: 1 caetano_afm_me_sjrp.pdf: 2084639 bytes, checksum: d77158373f8168fc0224d407bb07aa99 (MD5) Previous issue date: 2017-08-10
Coordenação de Aperfeiçoamento de Pessoal de Nível Superior (CAPES)
Sistemas de gerenciamento de banco de dados, na sua essência, almejam garantir o armazenamento confiável da informação. Também é tarefa de um sistema de gerenciamento de banco de dados oferecer agilidade no acesso às informações. Nesse contexto, é de grande interesse considerar alguns fenômenos recentes: a progressiva geração de conteúdo não-estruturado, como imagens e vídeo, o decorrente aumento do volume de dados em formato digital nas mais diversas mídias e o grande número de requisições por parte de usuários cada vez mais exigentes. Esses fenômenos fazem parte de uma nova realidade, denominada Big Data, que impõe aos projetistas de bancos de dados um aumento nos requisitos de flexibilidade, escalabilidade, resiliência e velocidade dos seus sistemas. Para suportar dados não-estruturados foi preciso se desprender de algumas limitações dos bancos de dados convencionais e definir novas arquiteturas de armazenamento. Essas arquiteturas definem padrões para gerenciamento dos dados, mas um sistema de armazenamento deve ter suas especificidades ajustadas em cada nível de implementação. Em termos de escalabilidade, por exemplo, cabe a escolha entre sistemas com algum tipo de centralização ou totalmente descentralizados. Por outro lado, em termos de resiliência, algumas soluções utilizam um esquema de replicação para preservar a integridade dos dados por meio de cópias, enquanto outras técnicas visam a otimização do volume de dados armazenados. Por fim, ao mesmo tempo que são desenvolvidas novas tecnologias de rede e disco, pode-se pensar na utilização de caching para otimizar o acesso ao que está armazenado. Este trabalho explora e analisa os diferentes níveis no desenvolvimento de sistemas de armazenamento distribuído. O objetivo deste trabalho é apresentar uma arquitetura que combina diferentes técnicas de resiliência. A contribuição científica deste trabalho é, além de uma sugestão totalmente descentralizada de alocação dos dados, o uso de uma estrutura de cache de acesso nesse ambiente, com algoritmos adaptáveis.
Database management systems, in essence, aim to ensure the reliable storage of information. It is also the task of a database management system to provide agility in accessing information. In this context, it is of great interest to consider some recent phenomena: the progressive generation of unstructured content such as images and video, the consequent increase in the volume of data in digital format in the most diverse media and the large number of requests by users increasingly demanding. These phenomena are part of a new reality, named Big Data, that imposes on database designers an increase in the flexibility, scalability, resiliency, and speed requirements of their systems. To support unstructured data, it was necessary to get rid of some limitations of conventional databases and define new storage architectures. These architectures define standards for data management, but a storage system must have its specificities adjusted at each level of implementation. In terms of scalability, for example, it is up to the choice between systems with some type of centralization or totally decentralized. On the other hand, in terms of resiliency, some solutions utilize a replication scheme to preserve the integrity of the data through copies, while other techniques are aimed at optimizing the volume of stored data. Finally, at the same time that new network and disk technologies are being developed, one might think of using caching to optimize access to what is stored. This work explores and analyzes the different levels in the development of distributed storage systems. This work objective is to present an architecture that combines different resilience techniques. The scientific contribution of this work is, in addition to a totally decentralized suggestion of data allocation, the use of an access cache structure with adaptive algorithms in this environment.
Angeli, João Paulo de. "Implementação de um algoritmo de mecânica dos fluidos computacional projetado para plataformas de processamento paralelo com memória distribuída". Universidade Federal do Espírito Santo, 2005. http://repositorio.ufes.br/handle/10/6485.
Pełny tekst źródłaDiscute a implementação do algoritmo numérico para simulação de escoamento de fluidos incompressíveis, baseado no método de diferenças finitas, projetado para plataformas de processamento paralelo com memória distribuída, particularmente para clusters de estações de trabalho. O algoritmo de solução para as equações de Navier-Stokes utiliza um esquema explicito para pressão e um esquema implícito para as velocidades. A implementação paralela é baseada na decomposição do domínio, onde o domínio computacional do problema é decomposto em vários blocos, sendo um ou mais destinados a nós de processamento distintos. Todos os nós então processam em paralelo as tarefas de computação sobre os blocos a eles designados. O processamento paralelo inclui inicialização, cálculo de coeficientes, solução linear nos subdomínios, e comunicação entre os nós. A troca de informação entre os processos referentes a cada subdomínio é realizada utilizando a biblioteca message passing interface (MPI), o que assegura portabilidade entre diferentes plataformas computacionais, abrangendo desde máquinas maciçamente paralelas (MPP) até clusters de estações de trabalho. Para melhorar os níveis de desempenho obtidos pelo algoritmo, foram investigadas técnicas para a redução do volume de comunicação entre processadores e utilização mais eficiente da memória cache dos microprocessadores. Para avaliar o desempenho do algoritmo desenvolvido e analisar as diferentes estratégias de paralelização foram executadas simulações com cluster de 2 a 56 processadores, nas quais foram avaliados o tempo de execução, speedup e eficiência paralela. Os resultados experimentais mostram que as otimizações relacionadas aos fatores de comunicação melhoram o speedup em até 165%, e a técnica de utilização mais eficiente da memória cache pode melhorar o speedup em mais 40% acima da otimização da comunicação.
This work discusses the implementation of a numerical algorithm for simulating incompressible fluid flows, based on the finite difference method, and designed for parallel computing platforms with distributed-memory, particularly for clusters of workstations. The solution algorithm for the Navier-Stokes equations utilizes an explicit scheme for pressure and an implicit scheme for velocities. The parallel implementation is based on domain decomposition, where the original calculation domain is decomposed into several blocks, each of which given to a separate processing node. All nodes then execute computations in parallel, each node on its associated sub-domain. The parallel computations include initialization, coefficient generation, linear solution on the sub-domain, and inter-node communication. The exchange of information across the sub-domains, or processors, is achieved using the message passing interface standard, MPI. The use of MPI ensures portability across different computing platforms ranging from massively parallel machines to clusters of workstations. Three different optimization strategies were evaluated in order to improve the computational performance of the algorithm, which include techniques exploring a reduction in the communication volume between processors and a more efficient utilization of the microprocessor s cache memory. In order to evaluate the performance levels obtained, and to analyze the effectiveness of the optimization strategies adopted, simulations using a 64 nodes cluster were executed. The simulations were performed using 2 to 56 processors, where execution time and speed-up were measured. The results indicate that the optimizations related to communication factors can improve the speed-up obtained up to 165%, while the cache memory optimization technique used can improve the speed-up obtained in further 40%.
Couto, Andre Luis do. "Caracterização de memorias analogicas implementadas com transistores MOS floating gate". [s.n.], 2005. http://repositorio.unicamp.br/jspui/handle/REPOSIP/260078.
Pełny tekst źródłaDissertação (mestrado) - Universidade Estadual de Campinas, Faculdade de Engenharia Eletrica e de Computação
Made available in DSpace on 2018-08-07T11:14:24Z (GMT). No. of bitstreams: 1 Couto_AndreLuisdo_M.pdf: 2940356 bytes, checksum: 959908541a3bc46b7b7035eb035de186 (MD5) Previous issue date: 2005
Resumo: A integração de memórias e circuitos analógicos em um mesmo die oferece diversas vantagens: redução de espaço nas placas, maior confiabilidade, menor custo. Para tanto, prescindir-se de tecnologia específica à confecção de memórias e utilizar-se somente de tecnologia CMOS convencional é requisito para tal integração. Essa pode ser tanto mais eficiente quanto maior a capacidade de armazenagem de dados, ou seja, maior a densidade de informação. Para isso, memórias analógicas mostram-se bem mais adequadas, posto que em uma só célula (um ou dois transistores) podem ser armazenados dados que precisariam de diversas células de memórias digitais e, portanto, de maior área. Neste trabalho, transistores MOS com porta flutuante mostraram-se viáveis de serem confeccionados e resultados de caracterização como tipos de programação, retenção de dados e endurance foram obtidos. O trabalho apresenta as principais características dos FGMOS (Floating Gate MOS) e presta-se como referência à futuros trabalhos na área
Abstract:Monolithic integration of memories and analog circuits ,in the same die offers interesting advantages like: smaller application boards, higher robustness and mainly lower costs. Today, a profitable integration of these kind of circuit can only be possible using conventional CMOS technology, which allows efficiently extraordinary levels of integration. Thus, the possibility of integrating analog memories looks more suitable since one single cell (usually use one or two transistors) serves for storing the same data stored by few digital memory cells, therefore, they requiring less area. In this work, it was implemented different memory cells together with few devices using floating gate MOS transistors and manufactured by a conventional CMOS technology. Differemt sort of programrning', data retention, and endurance were characterized as well as the main characteristics of the FGMOS (Floating Gate MOS) were obtained. The results of their characterization reveal that is possible to make and' to program fIoating gate MOSFETS analog memories and must serve as starting-point and reference for new academic studies
Mestrado
Eletrônica, Microeletrônica e Optoeletrônica
Mestre em Engenharia Elétrica
Xiang, Ping. "ANALYZING INSTRUCTTION BASED CACHE REPLACEMENT POLICIES". Master's thesis, University of Central Florida, 2010. http://digital.library.ucf.edu/cdm/ref/collection/ETD/id/2589.
Pełny tekst źródłaM.S.
School of Electrical Engineering and Computer Science
Engineering and Computer Science
Computer Engineering MSCpE
Xu, Jianliang. "Client-side data caching in mobile computing environments /". View Abstract or Full-Text, 2002. http://library.ust.hk/cgi/db/thesis.pl?COMP%202002%20XU.
Pełny tekst źródłaIncludes bibliographical references (leaves 146-158). Also available in electronic version. Access restricted to campus users.
Xu, Ji. "Data caching in wireless mobile networks /". View abstract or full-text, 2004. http://library.ust.hk/cgi/db/thesis.pl?COMP%202004%20XU.
Pełny tekst źródłaIncludes bibliographical references (leaves 57-60). Also available in electronic version. Access restricted to campus users.
Książki na temat "COM CACHE"
LANGLOIS, Louis. Vices Caches. com. Independently Published, 2017.
Znajdź pełny tekst źródłaQuinterno, Javier. La cacha, memorias de una época. Editorial de la Universidad Nacional de La Plata (EDULP), 2018. http://dx.doi.org/10.35537/10915/71351.
Pełny tekst źródłaRipoll, Leonardo, i Andrey Kolling Lehnemann. Violências várias: estudos da brutalidade no cinema. Biblioteca Universitária Publicações, 2022. http://dx.doi.org/10.5007/978-65-89363-03-3.
Pełny tekst źródłaVerbakel, Ward. Urban Andes. Redaktorzy Basil Descheemaeker i Viviana d’Auria. Leuven University Press, 2022. http://dx.doi.org/10.11116/9789461664594.
Pełny tekst źródłaKoshy, Susan, Lisa Marie Cacho, Jodi A. Byrd i Brian Jordan Jefferson, red. Colonial Racial Capitalism. Duke University Press, 2022. http://dx.doi.org/10.1215/9781478023371.
Pełny tekst źródłaYamin, Rebecca, i Donna J. Seifert. The Archaeology of Prostitution and Clandestine Pursuits. University Press of Florida, 2019. http://dx.doi.org/10.5744/florida/9780813056456.001.0001.
Pełny tekst źródłaSwann, Julian. Exile, Imprisonment, or Death. Oxford University Press, 2017. http://dx.doi.org/10.1093/acprof:oso/9780198788690.001.0001.
Pełny tekst źródłaCzęści książek na temat "COM CACHE"
Lee, Hyuk-Jun, Seung-Cheol Kim i Eui-Young Chung. "Fast Correction of Multiple Soft Errors in Highly Associative Cache with CAM-Based Tag". W Communications in Computer and Information Science, 424–31. Berlin, Heidelberg: Springer Berlin Heidelberg, 2012. http://dx.doi.org/10.1007/978-3-642-35264-5_57.
Pełny tekst źródłaYamada, Akira, Hiromasa Nakagawa, Masayuki Hata, Mitsugu Satoh, Koichi Nishida i Toshiyuki Hiraki. "The Design Method of High Speed Cache Controller/Memory (CCM) for the GMICRO Family Microprocessors". W TRON Project 1990, 249–60. Tokyo: Springer Japan, 1990. http://dx.doi.org/10.1007/978-4-431-68129-8_15.
Pełny tekst źródłaChoi, Joonwon, Adam Chlipala i Arvind. "Hemiola: A DSL and Verification Tools to Guide Design and Proof of Hierarchical Cache-Coherence Protocols". W Computer Aided Verification, 317–39. Cham: Springer International Publishing, 2022. http://dx.doi.org/10.1007/978-3-031-13188-2_16.
Pełny tekst źródła"A Cache of Letters". W When the River Ice Flows, I Will Come Home, 9–15. Academic Studies Press, 2020. http://dx.doi.org/10.2307/j.ctv1z3hkts.4.
Pełny tekst źródłaMAGALHÃES, M. M. "Efeito de diferentes lâminas de irrigação, densidades de plantio e poda do cacho para cultura da banana (Musa spp. L)". W Produção Animal e Vegetal: Inovações e Atualidades. Agron Food Academy, 2021. http://dx.doi.org/10.53934/9786599539633-6.
Pełny tekst źródła"1. A Cache of Letters". W When the River Ice Flows, I Will Come Home, 9–15. Academic Studies Press, 2020. http://dx.doi.org/10.1515/9781644692813-003.
Pełny tekst źródłaSTEVEN LI, YAU-TSUN, SHARAD MALIK i ANDREW WOLFE. "Performance Estimation of Embedded Software with Instruction Cache Modeling". W Readings in Hardware/Software Co-Design, 167–78. Elsevier, 2002. http://dx.doi.org/10.1016/b978-155860702-6/50015-6.
Pełny tekst źródłaAguilera-Prado, Marco. "Bioeconomía, una alternativa de investigación en administración y afines". W Temas y métodos de investigación en negocios, administración, mercadeo y contaduría, 193–218. Editorial Uniagustiniana, 2020. http://dx.doi.org/10.28970/9789585498426.06.
Pełny tekst źródłaLash, Dominic. "Distinguishing the Indistinguishable: Figures of Imperceptibility and Impossibility in Lost Highway and Caché". W The Cinema of Disorientation, 105–16. Edinburgh University Press, 2020. http://dx.doi.org/10.3366/edinburgh/9781474462778.003.0008.
Pełny tekst źródłaBognolo, Anna. "El Proyecto Mambrino: para una Base de Datos de motivos caballerescos". W La actualidad de los estudios de Siglo de Oro. Edition Reichenberger, 2023. http://dx.doi.org/10.59010/9783967280494_009.
Pełny tekst źródłaStreszczenia konferencji na temat "COM CACHE"
Carvalho, Milene B., i Carlos A. P. S. Martins. "Arquitetura de Cache com Associatividade Reconfigurável". W Workshop em Sistemas Computacionais de Alto Desempenho. Sociedade Brasileira de Computação, 2004. http://dx.doi.org/10.5753/wscad.2004.19000.
Pełny tekst źródłaKrause, Arthur, Francis Moreira, Valéria Girelli i Philippe Olivier Navaux. "Poluição de Cache e Thrashing em Aplicações Paralelas de Alto Desempenho". W XX Simpósio em Sistemas Computacionais de Alto Desempenho. Sociedade Brasileira de Computação, 2019. http://dx.doi.org/10.5753/wscad.2019.8683.
Pełny tekst źródłaSouza, Richard R. de, Giancarlo C. Heck, Renato Carmo i Roberto A. Hexsel. "Avaliação de Desempenho, Área e Energia de Caches com Controle de Poluição". W Simpósio em Sistemas Computacionais de Alto Desempenho. Sociedade Brasileira de Computação, 2009. http://dx.doi.org/10.5753/wscad.2009.17399.
Pełny tekst źródłaKerr Jr., Roberto B., i Edson T. Midorikawa. "Um Algoritmo de Reconfiguração da Associatividade em Memórias Cache". W Workshop em Sistemas Computacionais de Alto Desempenho. Sociedade Brasileira de Computação, 2007. http://dx.doi.org/10.5753/wscad.2007.18761.
Pełny tekst źródłaPaixão, Goedson Teixeira, Wagner Meira Jr. i Fernando Caixeta Sanches. "Servidores Cache WWW em Arquiteturas Multiprocessadas". W International Symposium on Computer Architecture and High Performance Computing. Sociedade Brasileira de Computação, 1999. http://dx.doi.org/10.5753/sbac-pad.1999.19807.
Pełny tekst źródłaMendes, Paulo Renato C., Lenise M. V. Rodrigues, João L. da S. Guio Soares, Arthur Serra, Yago Coelho, Nedimar Turatti, Antonio A. de A. Rocha i Daniel Sadoc Menasché. "Aumentando a Eficiência do Cache Proativo com Algoritmos de Mochilas para PoPs e Hashes para Servidores". W Simpósio em Sistemas Computacionais de Alto Desempenho. Sociedade Brasileira de Computação, 2022. http://dx.doi.org/10.5753/wscad.2022.226307.
Pełny tekst źródłaKöhler, Ricardo, i Marco Alves. "Acelerando requisições de prováveis cache misses com requisições em paralelo cache/DRAM". W IX Simpósio Brasileiro de Engenharia de Sistemas Computacionais. Sociedade Brasileira de Computação - SBC, 2019. http://dx.doi.org/10.5753/sbesc_estendido.2019.8643.
Pełny tekst źródłaEngel, Fábio, i Elias Procópio Duarte Jr. "Preenchimento de Cache de Video na Borda da Rede Baseado em Coloração de Grafos". W XVIII Workshop em Clouds e Aplicações. Sociedade Brasileira de Computação, 2020. http://dx.doi.org/10.5753/wcga.2020.12445.
Pełny tekst źródłaSouza, Guilherme B., Roberto G. Pacheco i Rodrigo S. Couto. "Um Cache de Imagens Urbanas Auxiliado por Redes Adversárias Generativas". W Workshop de Computação Urbana. Sociedade Brasileira de Computação - SBC, 2021. http://dx.doi.org/10.5753/courb.2021.17116.
Pełny tekst źródłaAlves, Carlos Eduardo Rodrigues, i Osvaldo Catsumi Imamura. "Análise Comparativa de Métodos de Coerência de Dados em Memórias Cache". W Simpósio Brasileiro de Arquitetura de Computadores e Processamento de Alto Desempenho. Sociedade Brasileira de Computação, 1993. http://dx.doi.org/10.5753/sbac-pad.1993.23027.
Pełny tekst źródła