Skip to content
View antonireus's full-sized avatar

Block or report antonireus

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. delta-fork delta-fork Public

    Forked from delta-io/delta

    An open-source storage framework that enables building a Lakehouse architecture with compute engines including Spark, PrestoDB, Flink, Trino, and Hive and APIs

    Scala

  2. trino-fork trino-fork Public

    Forked from trinodb/trino

    Official repository of Trino, the distributed SQL query engine for big data, formerly known as PrestoSQL (https://trino.io)

    Java

  3. dbeaver dbeaver Public

    Forked from dbeaver/dbeaver

    Free universal database tool and SQL client

    Java

  4. exemplesblog exemplesblog Public

    Java

  5. Java Concurrency Semaphore Example Java Concurrency Semaphore Example
    1
    package synchronizers;
    2
    
                  
    3
    import java.util.concurrent.ExecutorService;
    4
    import java.util.concurrent.Executors;
    5
    import java.util.concurrent.Semaphore;
  6. Java Concurrency CountDownLatch Example Java Concurrency CountDownLatch Example
    1
    package synchronizers;
    2
    
                  
    3
    import java.util.concurrent.*;
    4
    import java.util.concurrent.atomic.AtomicInteger;
    5