#javaconcurrency résultats de recherche

Calculating proper (thread) pool size - #JavaConcurrency training in #Crete with @heinzkabutz

marcandsweep's tweet image. Calculating proper (thread) pool size - #JavaConcurrency training in #Crete with @heinzkabutz

🧐 Java Concurrency Challenge! 🧐 Concurrency can be tricky! Can you find the potential issue in this Java code handling threads? 🔍 Looks fine at first glance, but something might go wrong. Can you figure it out? 💡 Drop your answers below! #JavaConcurrency #ThreadSafety

halilural1905's tweet image. 🧐 Java Concurrency Challenge! 🧐

Concurrency can be tricky! Can you find the potential issue in this Java code handling threads? 🔍

Looks fine at first glance, but something might go wrong. Can you figure it out? 💡 Drop your answers below!

#JavaConcurrency #ThreadSafety…

Join @David_Vlijmincx for the introduction and pitfalls of Java's new concurrency model. Brace yourself for this eye-opening session that challenges traditional notions! #VoxxedDaysBrussels #JavaConcurrency

VoxxedBrussels's tweet image. Join @David_Vlijmincx for the introduction and pitfalls of Java's new concurrency model. Brace yourself for this eye-opening session that challenges traditional notions!

 #VoxxedDaysBrussels #JavaConcurrency

This #ebook provides you with the concepts and techniques needed to write safe and scalable #Java programs for today's and tomorrow's systems. Download it now. bilginc.com/en/online-acad… #javaconcurrency #javadeveloper

BilgincITAcadem's tweet image. This #ebook provides you with the concepts and techniques needed to write safe and scalable #Java programs for today's and tomorrow's systems. Download it now.

bilginc.com/en/online-acad…

#javaconcurrency #javadeveloper

Last day to save $221 on #javaconcurrency video course. Watch a free lesson, learn more, & buy at informit.com/deals/video. #java

InformIT's tweet image. Last day to save $221 on #javaconcurrency video course. Watch a free lesson, learn more, & buy at informit.com/deals/video. #java

My Java Concurrency video playlist now contains 26 videos covering various aspects of Java multithreading and concurrency - including virtual threads 😊 youtube.com/playlist?list=… #Java #JavaConcurrency #JavaMultithreading #Parallelism


My Java Concurrency video playlist is now up to 22 videos: youtube.com/playlist?list=… #Java #JavaConcurrency #JavaMultithreading


My Java Concurrency video playlist is now up to 25 videos :-) youtube.com/playlist?list=… #Java #JavaConcurrency #JavaMultithreading


While my Twitter account was hacked - and then suspended for no reason - I released 2 new videos in my Java Concurrency series: #Java #JavaConcurrency Java BlockingQueue odysee.com/@jakob.jenkov:… The Producer Consumer Pattern odysee.com/@jakob.jenkov:…

jjenkov's tweet card. Producer Consumer Pattern - With Java Example

odysee.com

Producer Consumer Pattern - With Java Example


Today at 12:00 UTC #Java expert will be leading a free meetup where he'll be showing us #ProjectLoom — which aims to simplify #JavaConcurrency Spaces still available here: bit.ly/3pqcr89

skillsmatter's tweet image. Today at 12:00 UTC #Java expert will be leading a free meetup where he'll be showing us  #ProjectLoom — which aims to simplify #JavaConcurrency

Spaces still available here:
bit.ly/3pqcr89

. @Java : Runnable vs Callable @HarshaCodes takes you through these two different approaches to handling threads in Java. Read the concise & informative blog here: hubs.ly/H0-v2X10 #Javalearning #Javaconcurrency

Payara_Fish's tweet image. . @Java : Runnable vs Callable
@HarshaCodes takes you through these two different approaches to handling threads in Java. 
Read the concise & informative blog here:
hubs.ly/H0-v2X10 #Javalearning #Javaconcurrency

My Java Concurrency video playlist is now up to 19 videos :-) #Java #JavaConcurrency youtube.com/playlist?list=…


I have corrected my Java volatile tutorial. Some errors had been pointed out to me by several different developers. It was time to fix it. Both text and diagrams have been fixed 😊 jenkov.com/tutorials/java… #Java #JavaConcurrency #JavaMultithreading


TODAY: CEO & Founder Steve Millidge delivers an @EclipseFdn #JakartaTechTalk on @JakartaEE #Concurrency. What's next for #javaconcurrency within #JakartaEE10? There's still time to sign up, 4pm BST / 11am ET hubs.ly/H0V3KS80 #JavaEE

Payara_Fish's tweet image. TODAY: CEO & Founder Steve Millidge delivers an @EclipseFdn #JakartaTechTalk on @JakartaEE #Concurrency. What's next for #javaconcurrency within #JakartaEE10?
There's still time to sign up, 4pm BST / 11am ET
hubs.ly/H0V3KS80 #JavaEE

🧵 Traditional ExecutorService vs Executors.newVirtualThreadPerTaskExecutor() — which one powers your future stack? #JavaConcurrency


Exploring new patterns and best practices in Java concurrency. Thread safety is paramount! #JavaConcurrency #Multithreading #SoftwareDesign


What do HotSpot, Loom & Garbage have in common? More than you think. @javacoding mapped the #Java galaxy — from 1995 to tomorrow. Ever read #JVM history that’s actually fun? Time to catch up: javapro.io/2025/04/07/hit… #JavaConcurrency #Performance #GraalVM #ProjectLoom #ZGC

JAVAPROmagazin's tweet image. What do HotSpot, Loom & Garbage have in common? More than you think. @javacoding mapped the #Java galaxy — from 1995 to tomorrow.

Ever read #JVM history that’s actually fun? Time to catch up: javapro.io/2025/04/07/hit…

#JavaConcurrency #Performance #GraalVM #ProjectLoom #ZGC

Dive into Java concurrency with `volatile` and `synchronized`! 🚀 Learn how these keywords ensure thread safety, prevent race conditions, and optimize performance. 🧵🔒 #JavaConcurrency #ThreadSafety java.postions.app/DpzHELe


Dive into the world of atomic operations in Java! ⚙️ Learn how AtomicInteger uses CAS, volatile, and native methods for thread-safe operations, boosting efficiency! 🚀 Also, explore AtomicBoolean, AtomicLong, and more! 👨‍💻 #JavaConcurrency #AtomicOperations java.postions.app/eXftSuV


Dive into Atomic Operations in Java! ⚙️ Learn how AtomicInteger and other classes in `java.util.concurrent.atomic` ensure thread safety with CAS, volatile, and native methods. Boost your concurrency game! 🚀 #JavaConcurrency #AtomicOperations java.postions.app/eXftSuV


🔬 Curious how Loom compares with reactive stacks like Reactor? See why simplicity might just win. #ProjectLoom #JavaConcurrency


🆚 Project Loom vs. Traditional Threads: Who wins in scalability, performance, and simplicity? Find out in our deep dive. #JavaConcurrency


🚫 Thread Safety HashMap is not synchronized, making it unsafe for concurrent use. Consider using ConcurrentHashMap for multi-threaded applications. #ThreadSafety #JavaConcurrency


🚀 Concurrency doesn’t have to be hard! Explore how Lombok’s @Locked annotation helps you manage synchronized blocks easily. #JavaConcurrency buff.ly/4exXTNh


🌟 Boost productivity and thread safety with Lombok! Learn how @Locked annotation makes synchronization straightforward. #JavaConcurrency buff.ly/4exXTNh


🔒 Mastering atomicity and immutability in multithreading is key for developers to ensure high-quality software with performance and thread safety. Learn more with Anwar's insightful guide! #Multithreading #SoftwareDevelopment #JavaConcurrency 🔒 ift.tt/oO9BZEu


🧐 Java Concurrency Challenge! 🧐 Concurrency can be tricky! Can you find the potential issue in this Java code handling threads? 🔍 Looks fine at first glance, but something might go wrong. Can you figure it out? 💡 Drop your answers below! #JavaConcurrency #ThreadSafety

halilural1905's tweet image. 🧐 Java Concurrency Challenge! 🧐

Concurrency can be tricky! Can you find the potential issue in this Java code handling threads? 🔍

Looks fine at first glance, but something might go wrong. Can you figure it out? 💡 Drop your answers below!

#JavaConcurrency #ThreadSafety…

Step-by-Step Tutorial on Java AtomicBoolean Usage Discover the power of Java's AtomicBoolean class for thread-safe boolean operations. medium.com/@rahul.javatpo… #JavaAtomicBoolean #JavaConcurrency #JavaProgramming #Java #JavaDevelopers #AtomicBoolean


My Java Concurrency video playlist now contains 26 videos covering various aspects of Java multithreading and concurrency - including virtual threads 😊 youtube.com/playlist?list=… #Java #JavaConcurrency #JavaMultithreading #Parallelism


Calculating proper (thread) pool size - #JavaConcurrency training in #Crete with @heinzkabutz

marcandsweep's tweet image. Calculating proper (thread) pool size - #JavaConcurrency training in #Crete with @heinzkabutz

#AirConcurrentMap fastest smallest #Java ConcurrentNavigableMap free non-commercial no source #JavaConcurrency

rlderan's tweet image. #AirConcurrentMap fastest smallest #Java ConcurrentNavigableMap free non-commercial no source #JavaConcurrency

#AirConcurrentMap #JavaConcurrency free for non-commercial no source fastest smallest #Java ConcurrentNavigableMap

rlderan's tweet image. #AirConcurrentMap #JavaConcurrency free for non-commercial no source fastest smallest #Java ConcurrentNavigableMap

This #ebook provides you with the concepts and techniques needed to write safe and scalable #Java programs for today's and tomorrow's systems. Download it now. bilginc.com/en/online-acad… #javaconcurrency #javadeveloper

BilgincITAcadem's tweet image. This #ebook provides you with the concepts and techniques needed to write safe and scalable #Java programs for today's and tomorrow's systems. Download it now.

bilginc.com/en/online-acad…

#javaconcurrency #javadeveloper

🧐 Java Concurrency Challenge! 🧐 Concurrency can be tricky! Can you find the potential issue in this Java code handling threads? 🔍 Looks fine at first glance, but something might go wrong. Can you figure it out? 💡 Drop your answers below! #JavaConcurrency #ThreadSafety

halilural1905's tweet image. 🧐 Java Concurrency Challenge! 🧐

Concurrency can be tricky! Can you find the potential issue in this Java code handling threads? 🔍

Looks fine at first glance, but something might go wrong. Can you figure it out? 💡 Drop your answers below!

#JavaConcurrency #ThreadSafety…

Java Concurrency: Executor & ForkJoinPool ⚙️ Let Java manage threads for you! Boost performance with: ✔️ ExecutorService ✔️ Callable & Future ✔️ ForkJoinPool Build high-performance multithreaded apps! #JavaConcurrency #AdvancedJava #NeotericMethod #JavaDeveloper #Multithreading

NMethod93321's tweet image. Java Concurrency: Executor & ForkJoinPool ⚙️

Let Java manage threads for you!
Boost performance with:
✔️ ExecutorService
✔️ Callable & Future
✔️ ForkJoinPool
Build high-performance multithreaded apps!
#JavaConcurrency #AdvancedJava #NeotericMethod #JavaDeveloper #Multithreading

Today at 12:00 UTC #Java expert will be leading a free meetup where he'll be showing us #ProjectLoom — which aims to simplify #JavaConcurrency Spaces still available here: bit.ly/3pqcr89

skillsmatter's tweet image. Today at 12:00 UTC #Java expert will be leading a free meetup where he'll be showing us  #ProjectLoom — which aims to simplify #JavaConcurrency

Spaces still available here:
bit.ly/3pqcr89

Join @David_Vlijmincx for the introduction and pitfalls of Java's new concurrency model. Brace yourself for this eye-opening session that challenges traditional notions! #VoxxedDaysBrussels #JavaConcurrency

VoxxedBrussels's tweet image. Join @David_Vlijmincx for the introduction and pitfalls of Java's new concurrency model. Brace yourself for this eye-opening session that challenges traditional notions!

 #VoxxedDaysBrussels #JavaConcurrency

Unlocking Java's Concurrency: Synchronization vs. Locking!Delve into the nuances of #JavaConcurrency with this insightful comparison. #Synchronization #Locking #JavaDevelopment #ConcurrencyControl #DeveloperCommunity #ProgrammingTips #TechInsights #SoftwareEngineering

kumars861's tweet image. Unlocking Java's Concurrency: Synchronization vs. Locking!Delve into the nuances of #JavaConcurrency with this insightful comparison. 

#Synchronization #Locking #JavaDevelopment #ConcurrencyControl #DeveloperCommunity #ProgrammingTips #TechInsights #SoftwareEngineering

TODAY: CEO & Founder Steve Millidge delivers an @EclipseFdn #JakartaTechTalk on @JakartaEE #Concurrency. What's next for #javaconcurrency within #JakartaEE10? There's still time to sign up, 4pm BST / 11am ET hubs.ly/H0V3KS80 #JavaEE

Payara_Fish's tweet image. TODAY: CEO & Founder Steve Millidge delivers an @EclipseFdn #JakartaTechTalk on @JakartaEE #Concurrency. What's next for #javaconcurrency within #JakartaEE10?
There's still time to sign up, 4pm BST / 11am ET
hubs.ly/H0V3KS80 #JavaEE

What do HotSpot, Loom & Garbage have in common? More than you think. @javacoding mapped the #Java galaxy — from 1995 to tomorrow. Ever read #JVM history that’s actually fun? Time to catch up: javapro.io/2025/04/07/hit… #JavaConcurrency #Performance #GraalVM #ProjectLoom #ZGC

JAVAPROmagazin's tweet image. What do HotSpot, Loom & Garbage have in common? More than you think. @javacoding mapped the #Java galaxy — from 1995 to tomorrow.

Ever read #JVM history that’s actually fun? Time to catch up: javapro.io/2025/04/07/hit…

#JavaConcurrency #Performance #GraalVM #ProjectLoom #ZGC

Java 19: Millions of Threads in No Time Want to learn about #ProjectLoom ? @AdamBien talks to @nipafx: hubs.ly/Q01lz7F30 #Javathreading #Javaconcurrency

Payara_Fish's tweet image. Java 19: Millions of Threads in No Time
Want to learn about #ProjectLoom ? @AdamBien talks to @nipafx:
hubs.ly/Q01lz7F30  #Javathreading #Javaconcurrency

Last day to save $221 on #javaconcurrency video course. Watch a free lesson, learn more, & buy at informit.com/deals/video. #java

InformIT's tweet image. Last day to save $221 on #javaconcurrency video course. Watch a free lesson, learn more, & buy at informit.com/deals/video. #java

. @Java : Runnable vs Callable @HarshaCodes takes you through these two different approaches to handling threads in Java. Read the concise & informative blog here: hubs.ly/H0-v2X10 #Javalearning #Javaconcurrency

Payara_Fish's tweet image. . @Java : Runnable vs Callable
@HarshaCodes takes you through these two different approaches to handling threads in Java. 
Read the concise & informative blog here:
hubs.ly/H0-v2X10 #Javalearning #Javaconcurrency

Jakarta Concurrency: All You Need to Know One of our guides that takes a closer look at different @JakartaEE specifications. Read now: hubs.ly/Q01sGKGl0 #Concurency #JavaConcurrency

Payara_Fish's tweet image. Jakarta Concurrency: All You Need to Know
One of our guides that takes a closer look at different @JakartaEE specifications. 
Read now:
hubs.ly/Q01sGKGl0 #Concurency #JavaConcurrency

Our August Payara Enterprise release came out this week! It brought enhancements for @JakartaEE Concurrency - ForkJoinPool for Managed Executor Services! This will also come to Payara Community next week, watch this space & read the blog: hubs.ly/Q01jTG4V0 #javaconcurrency

Payara_Fish's tweet image. Our August Payara Enterprise release came out this week! It brought enhancements for @JakartaEE Concurrency - ForkJoinPool for Managed Executor Services!
This will also come to Payara Community next week, watch this space & read the blog:
hubs.ly/Q01jTG4V0  #javaconcurrency

Loading...

Something went wrong.


Something went wrong.


United States Trends