- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 132 for Enumeration (0.05 sec)
-
android/guava-tests/test/com/google/common/collect/IteratorsTest.java
public void testForEnumerationEmpty() { Enumeration<Integer> enumer = enumerate(); Iterator<Integer> iter = Iterators.forEnumeration(enumer); assertFalse(iter.hasNext()); assertThrows(NoSuchElementException.class, () -> iter.next()); } @SuppressWarnings("DoNotCall") public void testForEnumerationSingleton() { Enumeration<Integer> enumer = enumerate(1);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 54.4K bytes - Viewed (0) -
docs/de/docs/tutorial/path-operation-configuration.md
Diese werden zum OpenAPI-Schema hinzugefügt und von den automatischen Dokumentations-Benutzeroberflächen verwendet: <img src="/img/tutorial/path-operation-configuration/image01.png"> ### Tags mittels Enumeration Wenn Sie eine große Anwendung haben, können sich am Ende **viele Tags** anhäufen, und Sie möchten sicherstellen, dass Sie für verwandte *Pfadoperationen* immer den **gleichen Tag** nehmen.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.3K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmServletTest.java
initParams.put("jcifs.http.insecureBasic", "true"); initParams.put("jcifs.http.basicRealm", "TestRealm"); lenient().when(servletConfig.getInitParameterNames()).thenReturn(Collections.enumeration(initParams.keySet())); lenient().when(servletConfig.getInitParameter(anyString())).thenAnswer(invocation -> initParams.get(invocation.getArgument(0)));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.http; import java.io.IOException; import java.util.Enumeration; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jakarta.servlet.Filter; import jakarta.servlet.FilterChain; import jakarta.servlet.FilterConfig; import jakarta.servlet.ServletException;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcShareEnum.java
this.ptype = 0; this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; } /** * Returns the share entries retrieved from the enumeration. * * @return an array of FileEntry objects representing the shares */ public FileEntry[] getEntries() { /* * The ShareInfo1 class does not implement the FileEntry
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
private static final String API_FORMAT_TYPE = "apiFormatType"; /** Path prefix for API endpoints. */ protected String pathPrefix; /** * Enumeration of supported API format types. */ protected enum FormatType { /** Search API format. */ SEARCH, /** Label API format. */ LABEL, /** Popular word API format. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java
import jcifs.internal.smb1.trans.SmbComTransaction; import jcifs.internal.smb1.trans.SmbComTransactionResponse; import jcifs.internal.util.SMBUtil; /** * Trans2 FindFirst2 response message for SMB1 directory enumeration. * This class handles the response from a TRANS2_FIND_FIRST2 request, which returns * the first set of directory entries matching the specified search criteria. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserAgentHelper.java
} request.setAttribute(USER_AGENT_TYPE, uaType); } return uaType; }).orElse(UserAgentType.OTHER); } /** * Enumeration of supported browser types for user agent detection. * Each type represents a major browser family that can be detected * from the User-Agent header string. */ public enum UserAgentType {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
*/ package jcifs.smb1.smb1; import java.io.IOException; import java.net.InetAddress; import java.net.UnknownHostException; import java.util.Enumeration; import java.util.Vector; import jcifs.smb1.Config; import jcifs.smb1.UniAddress; import jcifs.smb1.netbios.NbtAddress; import jcifs.smb1.util.LogStream; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.util.SMBUtil; import jcifs.smb.FileEntry; import jcifs.util.Strings; /** * Represents the FILE_BOTH_DIR_INFORMATION structure used in SMB directory enumeration operations. * This structure contains comprehensive file information including timestamps, attributes, sizes, * short name (8.3 format), and full filename for directory entries. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0)