- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for Manipulation (0.15 sec)
-
README.md
## ✨ Features ### Core Utilities - **Bean Manipulation** (`org.codelibs.core.beans`) - JavaBeans metadata handling, property access, and object conversion with comprehensive `BeanDesc` system
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/ntlmssp/NtlmMessageTest.java
import jcifs.smb1.Config; /** * Tests for {@link NtlmMessage}. Since {@code NtlmMessage} is abstract we * create a lightweight concrete subclass only to exercise the inherited * behaviour. The tests cover flag manipulation, byte‑buffer operations and * static helpers. Edge cases such as null or short arrays and negative * values are verified to ensure proper exception handling and byte * conversion. */ @ExtendWith(MockitoExtension.class)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/util/StringUtil.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.util; /** * Utility class providing string manipulation methods for the jCIFS library. * Contains helper methods for string operations, including backported JDK functionality * for compatibility with older Java versions. */ public final class StringUtil { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java
import jcifs.DfsReferralData; /** * Internal interface for DFS referral data with extended functionality. * Extends the public DFS referral data interface with internal operations like * hostname resolution and referral data manipulation for internal DFS management. * * @author mbechler */ public interface DfsReferralDataInternal extends DfsReferralData { /** * Replaces the host with the given FQDN if it is currently unqualified
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/util/Strings.java
import java.nio.charset.Charset; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.Configuration; import jcifs.RuntimeCIFSException; /** * Utility class for string manipulation and conversion operations in the jCIFS library. * Provides methods for encoding, decoding, and manipulating strings in SMB operations. * * @author mbechler */ public final class Strings {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocMap.java
* for document data. This class wraps an existing map and provides custom behavior * for the entrySet method to ensure language fields appear first in iteration order. * Used throughout the Fess search system for document data manipulation. * */ public class DocMap implements Map<String, Object> { /** The key used for language field identification */ private static final String LANG_KEY = "lang";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/pac/ASN1Util.java
import org.bouncycastle.asn1.ASN1Primitive; import org.bouncycastle.asn1.ASN1Sequence; import org.bouncycastle.asn1.ASN1TaggedObject; import org.bouncycastle.asn1.DLSequence; /** * Utility class for ASN.1 parsing and manipulation operations. * * This class provides helper methods for working with ASN.1 * encoded data structures used in Kerberos PAC processing. */ public final class ASN1Util { private ASN1Util() { }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocumentUtil.java
import org.codelibs.fess.taglib.FessFunctions; import org.lastaflute.web.util.LaRequestUtil; import jakarta.servlet.http.HttpServletRequest; /** * Utility class for document data manipulation and type conversion. * This class provides static methods for extracting typed values from document maps, * URL encoding, and other document-related operations. It's designed as a final * utility class with only static methods.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/FileNotifyInformationTest.java
assertEquals("modified.txt", modifiedImpl.getFileName()); } } @Nested @DisplayName("Bit Manipulation Tests") class BitManipulationTests { @Test @DisplayName("Test combining multiple filter flags") void testCombiningFilterFlags() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CollectCollectors.java
ImmutableSet<E> toImmutableSet() { if (set == null) { return ImmutableSet.of(); } ImmutableSet<E> ret = ImmutableEnumSet.asImmutable(set); set = null; // subsequent manual manipulation of the accumulator mustn't affect ret return ret; } } @GwtIncompatible @SuppressWarnings({"rawtypes", "unchecked"}) static <E extends Comparable<? super E>>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 16.9K bytes - Viewed (0)