- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 125 for Enumerations (0.07 sec)
-
src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java
} /** * Opens the enumeration and returns the first entry. * * @return the first file entry, or null if empty * @throws CIFSException if an error occurs during opening */ protected abstract FileEntry open() throws CIFSException; /** * Checks if the enumeration is complete. * * @return true if enumeration is done, false otherwise */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/jcifs/pac/ASN1UtilTest.java
ASN1Util.as(String.class, obj); }, "Should throw PACDecodingException for incompatible types"); } // --- as(Class, Enumeration) --- @Test void testAs_Enumeration_Success() throws PACDecodingException { // Test successful casting from enumeration Vector<ASN1Integer> vector = new Vector<>(); ASN1Integer expected = new ASN1Integer(123); vector.add(expected);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiRequestTest.java
@Override public long getDateHeader(String name) { return -1; } @Override public Enumeration<String> getHeaders(String name) { return null; } @Override public Enumeration<String> getHeaderNames() { return null; } @Override public int getIntHeader(String name) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosTicket.java
*/ package jcifs.pac.kerberos; import java.io.ByteArrayInputStream; import java.io.IOException; import java.math.BigInteger; import java.security.GeneralSecurityException; import java.util.Enumeration; import java.util.HashMap; import java.util.Map; import javax.security.auth.kerberos.KerberosKey; import javax.security.auth.login.LoginException; import org.bouncycastle.asn1.ASN1InputStream;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/EnumerationIteratorTest.java
/** * Test method for * {@link org.codelibs.core.collection.EnumerationIterator#EnumerationIterator(Enumeration)} * . */ @Test public void testCopyDestNull() { exception.expect(NullArgumentException.class); exception.expectMessage(is("[ECL0008]argument[enumeration] is null.")); new EnumerationIterator<Object>(null); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcEnumerateAliasesInDomain.java
/** * Creates a new request to enumerate aliases in a domain. * * @param domainHandle the handle to the SAM domain * @param acct_flags account flags to filter the enumeration * @param sam the SAM array to store the enumeration results */ public MsrpcEnumerateAliasesInDomain(final SamrDomainHandle domainHandle, final int acct_flags, final samr.SamrSamArray sam) { super(domainHandle, 0, acct_flags, null, 0);
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/msrpc/MsrpcEnumerateAliasesInDomain.java
/** * Creates a new request to enumerate aliases in a domain. * * @param domainHandle the handle to the SAM domain * @param acct_flags account flags to filter the enumeration * @param sam the SAM array to store the enumeration results */ public MsrpcEnumerateAliasesInDomain(final SamrDomainHandle domainHandle, final int acct_flags, final samr.SamrSamArray sam) { super(domainHandle, 0, acct_flags, null, 0);
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/smb/DirFileEntryEnumIterator2.java
import jcifs.internal.smb2.create.Smb2CreateResponse; import jcifs.internal.smb2.info.Smb2QueryDirectoryRequest; import jcifs.internal.smb2.info.Smb2QueryDirectoryResponse; /** * SMB2/SMB3 implementation of directory entry enumeration iterator. * Provides efficient directory listing capabilities for SMB2/SMB3 protocol versions. * * @author mbechler * */ public class DirFileEntryEnumIterator2 extends DirFileEntryEnumIteratorBase {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/EmptyEnumeration.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.collection; import java.util.Enumeration; /** * An empty {@link Enumeration}. * * @author higa * @param <T> the type of elements */ public class EmptyEnumeration<T> extends IteratorEnumeration<T> { /** * Creates an {@link EmptyEnumeration}.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 993 bytes - Viewed (0)