- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 1,866 for construct (0.11 sec)
-
src/main/java/jcifs/dcerpc/ndr/NdrShort.java
/** * NDR representation of a short integer (2-byte signed integer). */ public class NdrShort extends NdrObject { /** * The short integer value. */ public int value; /** * Constructs an NdrShort with the specified value. * * @param value the short integer value */ public NdrShort(final int value) { this.value = value & 0xFF; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacCredentialType.java
* * @author jbbugeau */ public class PacCredentialType { private static final int MINIMAL_BUFFER_SIZE = 32; private final byte[] credentialType; /** * Constructs a PAC credential type from raw data. * @param data the raw credential type data * @throws PACDecodingException if the credential type data is invalid */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrShort.java
/** * NDR representation of a short integer (2-byte signed integer). */ public class NdrShort extends NdrObject { /** * The short integer value. */ public int value; /** * Constructs an NdrShort with the specified value. * * @param value the short integer value */ public NdrShort(final int value) { this.value = value & 0xFF; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/StartCrawlingForm.java
* It serves as a data transfer object between the web layer and the crawling * service components. */ public class StartCrawlingForm { /** * Default constructor. */ public StartCrawlingForm() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/IgnoreJRERequirement.java
* or implied. See the License for the specific language governing permissions and limitations under * the License. */ package com.google.common.util.concurrent; import static java.lang.annotation.ElementType.CONSTRUCTOR; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.ElementType.TYPE; import java.lang.annotation.Target; /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 02 18:21:28 UTC 2025 - 1.1K bytes - Viewed (1) -
guava/src/com/google/common/util/concurrent/IgnoreJRERequirement.java
* or implied. See the License for the specific language governing permissions and limitations under * the License. */ package com.google.common.util.concurrent; import static java.lang.annotation.ElementType.CONSTRUCTOR; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.ElementType.TYPE; import java.lang.annotation.Target; /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 02 18:21:28 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/RenderDataUtil.java
* of Entity objects and Collections that may contain Entity objects. * */ public class RenderDataUtil { /** * Default constructor. */ private RenderDataUtil() { // Default constructor } /** * Registers a value in the render data with the specified key. * If the value is an Entity object, it will be converted to a Map using BeanUtil.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/SmbInfoAllocation.java
* free units, sectors per allocation unit, and bytes per sector. */ public class SmbInfoAllocation implements AllocInfo { /** * Default constructor for SMB allocation information. */ public SmbInfoAllocation() { // Default constructor } private long alloc; // Also handles SmbQueryFSSizeInfo private long free; private int sectPerAlloc; private int bytesPerSect;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K bytes - Viewed (0) -
src/test/java/jcifs/util/StringsTest.java
// Given - Strings is a utility class with private constructor // When & Then - verify constructor is private by reflection assertDoesNotThrow(() -> { java.lang.reflect.Constructor<Strings> constructor = Strings.class.getDeclaredConstructor(); assertTrue(java.lang.reflect.Modifier.isPrivate(constructor.getModifiers()), "Constructor should be private");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableBiMap.java
/** Constructor for empty bimap. */ @SuppressWarnings("unchecked") private RegularImmutableBiMap() { this.keyHashTable = null; this.alternatingKeysAndValues = new Object[0]; this.keyOffset = 0; this.size = 0; this.inverse = (RegularImmutableBiMap<V, K>) this; } /** K-to-V constructor. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 4.2K bytes - Viewed (0)