Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
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 (309)
Collections:
Other Resources:
JDK 17 jdk.incubator.foreign.jmod - JDK Incubator Foreign
JDK 17 jdk.incubator.foreign.jmod is the JMOD file for JDK 17 HTTP Server module.
JDK 17 Incubator Foreign module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.incubator.foreign.jmod.
JDK 17 Incubator Foreign module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Incubator Foreign module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.incubator.foreign.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/incubator/foreign/PaddingLayout.java
/* * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * * */ package jdk.incubator.foreign; import java.lang.constant.Constable; import java.lang.constant.ConstantDescs; import java.lang.constant.DynamicConstantDesc; import java.util.Map; import java.util.Objects; import java.util.Optional; import java.util.OptionalLong; /** * A padding layout. A padding layout specifies the size of extra space which is typically not accessed by applications, * and is typically used for aligning member layouts around word boundaries. * <p> * This is a <a href="{@docRoot}/java.base/java/lang/doc-files/ValueBased.html">value-based</a> * class; programmers should treat instances that are * {@linkplain #equals(Object) equal} as interchangeable and should not * use instances for synchronization, or unpredictable behavior may * occur. For example, in a future release, synchronization may fail. * The {@code equals} method should be used for comparisons. * * <p> Unless otherwise specified, passing a {@code null} argument, or an array argument containing one or more {@code null} * elements to a method in this class causes a {@link NullPointerException NullPointerException} to be thrown. </p> * * @implSpec * This class is immutable and thread-safe. */ /* package-private */ final class PaddingLayout extends AbstractLayout implements MemoryLayout { PaddingLayout(long size) { this(size, 1, Map.of()); } PaddingLayout(long size, long alignment, Map<String, Constable> attributes) { super(OptionalLong.of(size), alignment, attributes); } @Override public String toString() { return decorateLayoutString("x" + bitSize()); } @Override public boolean equals(Object other) { if (this == other) { return true; } if (!super.equals(other)) { return false; } if (!(other instanceof PaddingLayout)) { return false; } PaddingLayout p = (PaddingLayout)other; return bitSize() == p.bitSize(); } @Override public int hashCode() { return Objects.hash(super.hashCode(), bitSize()); } @Override PaddingLayout dup(long alignment, Map<String, Constable> attributes) { return new PaddingLayout(bitSize(), alignment, attributes); } @Override public boolean hasNaturalAlignment() { return true; } @Override public Optional<DynamicConstantDesc<MemoryLayout>> describeConstable() { return Optional.of(decorateLayoutConstant(DynamicConstantDesc.ofNamed(ConstantDescs.BSM_INVOKE, "padding", CD_MEMORY_LAYOUT, MH_PADDING, bitSize()))); } //hack: the declarations below are to make javadoc happy; we could have used generics in AbstractLayout //but that causes issues with javadoc, see JDK-8224052 /** * {@inheritDoc} */ @Override public PaddingLayout withName(String name) { return (PaddingLayout)super.withName(name); } /** * {@inheritDoc} */ @Override public PaddingLayout withBitAlignment(long alignmentBits) { return (PaddingLayout)super.withBitAlignment(alignmentBits); } /** * {@inheritDoc} */ @Override public PaddingLayout withAttribute(String name, Constable value) { return (PaddingLayout)super.withAttribute(name, value); } }
⏎ jdk/incubator/foreign/PaddingLayout.java
Or download all of them as a single archive file:
File name: jdk.incubator.foreign-17.0.5-src.zip File size: 168767 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.incubator.vector.jmod - JDK Incubator Vector
2023-10-04, 3907👍, 0💬
Popular Posts:
What Is ojdbc14.jar for Oracle 10g R2? ojdbc14.jar for Oracle 10g R2 is the JAR files of ojdbc.jar, ...
commons-lang-1.0.1.jar is the JAR file for Apache Commons Lang 1.0.1, which provides a host of helpe...
commons-lang-2.6.jar is the JAR file for Apache Commons Lang 2.6, which provides a host of helper ut...
Apache Commons Codec library provides implementations of common encoders and decoders such as Base64...
JAX-RPC is an API for building Web services and clients that used remote procedure calls (RPC) and X...