- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 1,602 for type1 (0.02 sec)
-
guava/src/com/google/common/base/NullnessCasts.java
* that conversion is safe. * * <p>This method is intended to help with usages of type parameters that have {@linkplain * ParametricNullness parametric nullness}. If a type parameter instead ranges over only non-null * types (or if the type is a non-variable type, like {@code String}), then code should almost * never use this method, preferring instead to call {@code requireNonNull} so as to benefit from
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 13 20:49:47 UTC 2025 - 3.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbShareInfoTest.java
assertNotNull(instance); // Test constructor with arguments String netName = "SHARE"; int type = 1; String remark = "remark"; instance = new SmbShareInfo(netName, type, remark); assertEquals(netName, instance.getName()); // Note: getType() transforms the raw type assertEquals(SmbFile.TYPE_PRINTER, instance.getType()); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDCacheImplTest.java
} catch (SmbException e) { throw new RuntimeException(e); } } @Test @DisplayName("resolveSids(DcerpcHandle,...) populates acct, domain and type for known types") void resolveSids_populatesFields_happyPath() throws Exception { SIDCacheImpl cache = new SIDCacheImpl(mock(CIFSContext.class)); DcerpcHandle handle = mock(DcerpcHandle.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosAuthDataTest.java
private Map<Integer, KerberosKey> mockKeys; /** * Test parsing with an unknown auth type. * Expects an empty list of authorizations. * @throws PACDecodingException should not be thrown */ @Test void testParseUnknownAuthType() throws PACDecodingException { // GIVEN an unknown auth type int unknownAuthType = -1; byte[] emptyToken = new byte[0];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
* * This method supports various log types including search logs, click logs, * favorite logs, user information, and different aggregation types for analytics. * * @param pager The search log pager containing filter criteria and pagination settings * @return List of search log entries or aggregated data based on the log type */ public List<?> getSearchLogList(final SearchLogPager pager) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/MimeMap.java
*/ package jcifs.smb1.util; import java.io.IOException; import java.io.InputStream; /** * MIME type mapping utility for file extensions. * Provides mappings between file extensions and their corresponding MIME types * by reading from a resource file containing extension-to-MIME-type mappings. */ public class MimeMap { private static final int IN_SIZE = 7000;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/SmbTreeTest.java
void setUp() { // Common setup if needed } /** * Test for unwrap() method with matching type. * Verifies that unwrap returns the correct instance when the type matches. */ @Test void testUnwrap_withMatchingType() { // Create a custom SmbTree type for testing CustomSmbTree customTree = mock(CustomSmbTree.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDTest.java
} @ParameterizedTest(name = "type {0} -> {1}") @CsvSource({ "0, 0", "1, User", "2, Domain group", "3, Domain", "4, Local group", "5, Builtin group", "6, Deleted", "7, Invalid", "8, Unknown" }) @DisplayName("getType and getTypeText cover all types") void testGetTypeAndText(int type, String text) { byte[] ident = new byte[] { 0, 0, 0, 0, 0, 5 };
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java
private int currentPageNumber; /** The ID of the label type. */ public String id; /** The name of the label type. */ public String name; /** The value of the label type. */ public String value; /** The sort order of the label type. */ public String sortOrder; /** The creator of the label type. */ public String createdBy;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/rpc.idl
interface rpc { /* base types */ typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; /* dce */ typedef struct { uint32_t time_low; uint16_t time_mid; uint16_t time_hi_and_version; uint8_t clock_seq_hi_and_reserved; uint8_t clock_seq_low; uint8_t node[6]; } uuid_t; /* win32 stuff */ typedef struct { uint32_t type; uuid_t uuid;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.4K bytes - Viewed (0)