Devlive 开源社区 本次搜索耗时 3.360 秒,为您找到 165 个相关结果.
  • Exporter

    2710 2024-06-30 《Apache Hudi 0.15.0》
    Introduction Arguments Examples Copy a Hudi dataset Export to json or parquet dataset Re-partitioning Custom Re-partitioning Introduction HoodieSnapshotExporter allows you...
  • Security Overview

    2708 2024-06-22 《Apache Accumulo 2.x》
    Security Overview Implementation Security Overview Accumulo has the following security features: Only authenticated users can access Accumulo. Kerberos can be enabled to re...
  • 9.3 Embed a web page

    2697 2024-05-24 《R Markdown Cookbook》
    References If you have the webshot package (Chang 2023 ) and PhantomJS installed (see Section 9.2 ), you can embed any web page in the output document through knitr::include_url...
  • GitHub 趋势日报 (2025年04月23日)

    📈 今日整体趋势 Top 10 📊 分语言趋势 Top 5 Ruby Dart C++ Java PHP Go C C MDX Vim Script Rust Jupyter Notebook Lua HTML Shell JavaScript Kotlin TypeScript Python Dockerfile ...
  • 4.14 Create an animation from multiple R plots

    2666 2024-05-23 《R Markdown Cookbook》
    References When you generate a series of plots in a code chunk, you can combine them into an animation. It is easy to do so if the output format is HTML—you only need to install ...
  • Bytecode Enhancement

    2587 2024-05-25 《Apache JDO 3.2.1》
    JDO defines a byte-code enhancement process that provides for dirty detection of fields. Before a class is used at runtime it is compiled and then “enhanced” to implement the inte...
  • Distributed collections

    2514 2025-03-14 《Redisson 3.45.0》
    Map Redis or Valkey based distributed Map object for Java implements ConcurrentMap interface. This object is thread-safe. Consider to use Live Object service to store POJO obje...
  • Kafka Connect

    2242 2025-03-14 《Apache Iceberg 1.8.1》
    Kafka Connect Kafka Connect is a popular framework for moving data in and out of Kafka via connectors. There are many different connectors available, such as the S3 sink for writ...
  • Flink Writes

    1977 2025-03-11 《Apache Iceberg 1.8.1》
    Flink Writes Iceberg support batch and streaming writes With Apache Flink ‘s DataStream API and Table API. Writing with SQL Iceberg support both INSERT INTO and INSERT OVERWRIT...
  • 第一章:多线程入门

    学习目标 1. 什么是线程与多线程 1.1 线程的概念 1.2 多线程的概念 2. 为什么需要多线程编程 2.1 提高CPU利用率 2.2 提高程序响应性 2.3 更好的资源利用 2.4 简化复杂问题的处理 3. Java中实现多线程的两种基本方式 3.1 继承Thread类 3.2 实现Runnable接口 3.3 两种方式的比较 ...