Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JDK 11 jdk.scripting.nashorn.jmod - Scripting Nashorn Module
JDK 11 jdk.scripting.nashorn.jmod is the JMOD file for JDK 11 Scripting Nashorn module.
JDK 11 Scripting Nashorn module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.scripting.nashorn.jmod.
JDK 11 Scripting Nashorn module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Scripting Nashorn module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.scripting.nashorn.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/nashorn/internal/WeakValueCache.java
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package jdk.nashorn.internal;
import java.lang.ref.ReferenceQueue;
import java.lang.ref.WeakReference;
import java.util.HashMap;
import java.util.function.Function;
/**
* This class provides a map based cache with weakly referenced values. Cleared references are
* purged from the underlying map when values are retrieved or created.
* It uses a {@link java.util.HashMap} to store values and needs to be externally synchronized.
*
* @param <K> the key type
* @param <V> the value type
*/
public final class WeakValueCache<K, V> {
private final HashMap<K, KeyValueReference<K, V>> map = new HashMap<>();
private final ReferenceQueue<V> refQueue = new ReferenceQueue<>();
/**
* Returns the value associated with {@code key}, or {@code null} if no such value exists.
*
* @param key the key
* @return the value or null if none exists
*/
public V get(final K key) {
// Remove cleared entries
for (;;) {
final KeyValueReference<?, ?> ref = (KeyValueReference) refQueue.poll();
if (ref == null) {
break;
}
map.remove(ref.key, ref);
}
final KeyValueReference<K, V> ref = map.get(key);
if (ref != null) {
return ref.get();
}
return null;
}
/**
* Returns the value associated with {@code key}, or creates and returns a new value if
* no value exists using the {@code creator} function.
*
* @param key the key
* @param creator function to create a new value
* @return the existing value, or a new one if none existed
*/
public V getOrCreate(final K key, final Function<? super K, ? extends V> creator) {
V value = get(key);
if (value == null) {
// Define a new value if it does not exist
value = creator.apply(key);
map.put(key, new KeyValueReference<>(key, value));
}
return value;
}
private static class KeyValueReference<K, V> extends WeakReference<V> {
final K key;
KeyValueReference(final K key, final V value) {
super(value);
this.key = key;
}
}
}
⏎ jdk/nashorn/internal/WeakValueCache.java
Or download all of them as a single archive file:
File name: jdk.scripting.nashorn-11.0.1-src.zip File size: 1390965 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.scripting.nashorn.shell.jmod - Scripting Nashorn Shell Module
2020-04-25, ≈218🔥, 0💬
Popular Posts:
Where to get the Java source code for Connector/J 8.0 Core API module? Java source code files for Co...
Apache Log4j provides the interface that applications should code to and provides the adapter compon...
What Is jaxb-api-2.1.6.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Java ...
How to show the XML parsing flow with sax\DocumentTracer.java provided in the Apache Xerces package?...
JLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3 (i.e. MP3) in real time for...