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 17 jdk.naming.dns.jmod - Naming DNS Module
JDK 17 jdk.naming.dns.jmod is the JMOD file for JDK 17 Naming DNS module.
JDK 17 Naming DNS module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.naming.dns.jmod.
JDK 17 Naming DNS module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Naming DNS module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.naming.dns.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ module-info.java
/*
* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/**
* Provides the implementation of the DNS Java Naming provider.
*
* <h2>Environment Properties</h2>
*
* <p> The following JNDI environment properties may be used when creating
* the initial context.
*
* <ul>
* <li>com.sun.jndi.dns.timeout.initial</li>
* <li>com.sun.jndi.dns.timeout.retries</li>
* </ul>
*
* <p> These properties are used to alter the timeout-related defaults that the
* DNS provider uses when submitting queries. The DNS provider submits queries
* using the following exponential backoff algorithm. The provider submits a
* query to a DNS server and waits for a response to arrive within a timeout
* period (1 second by default). If it receives no response within the timeout
* period, it queries the next server, and so on. If the provider receives no
* response from any server, it doubles the timeout period and repeats the
* process of submitting the query to each server, up to a maximum number of
* retries (4 by default).
*
* <p> The {@code com.sun.jndi.dns.timeout.initial} property, if set, specifies
* the number of milliseconds to use as the initial timeout period (i.e., before
* any doubling). If this property has not been set, the default initial timeout
* is 1000 milliseconds.
*
* <p> The {@code com.sun.jndi.dns.timeout.retries} property, if set, specifies
* the number of times to retry each server using the exponential backoff
* algorithm described previously. If this property has not been set, the
* default number of retries is 4.
*
* @provides javax.naming.spi.InitialContextFactory
*
* @moduleGraph
* @since 9
*/
module jdk.naming.dns {
requires java.naming;
// temporary export until NamingManager.getURLContext uses services
exports com.sun.jndi.url.dns to java.naming;
provides javax.naming.spi.InitialContextFactory with
com.sun.jndi.dns.DnsContextFactory;
}
⏎ module-info.java
Or download all of them as a single archive file:
File name: jdk.naming.dns-17.0.5-src.zip File size: 48006 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.naming.rmi.jmod - Naming RMI Module
2023-07-29, ∼3580🔥, 0💬
Popular Posts:
JDK 11 jdk.internal.vm.ci.jmod is the JMOD file for JDK 11 Internal VM CI module. JDK 11 Internal VM...
xml-commons Resolver Source Code Files are provided in the source package file, xml-commons-resolver...
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes: "C:\fyicenter\jdk-...
How to download and install javamail-1_2.zip? The JavaMail API is a set of abstract APIs that model ...
What JAR files are required to run sax\Writer.java provided in the Apache Xerces package? 1 JAR file...