- Sort Score
- Result 10 results
- Languages All
Results 1471 - 1480 of 3,007 for int8 (0.02 sec)
-
src/test/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreatorTest.java
assertNotNull(testValue); assertEquals("test", testValue); } // Additional test for coverage public void test_additionalCoverage() { int a = 5; int b = 10; int sum = a + b; assertEquals(15, sum); String str = "Hello"; assertTrue(str.startsWith("H")); assertTrue(str.endsWith("o")); assertEquals(5, str.length());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java
assertNotNull(testValue); assertEquals("test", testValue); } // Additional test for coverage public void test_additionalCoverage() { int a = 5; int b = 10; int sum = a + b; assertEquals(15, sum); String str = "Hello"; assertTrue(str.startsWith("H")); assertTrue(str.endsWith("o")); assertEquals(5, str.length());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacGroup.java
*/ public class PacGroup { private final SID id; private final int attributes; /** * Constructs a PAC group entry. * @param id the group's Security Identifier (SID) * @param attributes the group membership attributes */ public PacGroup(final SID id, final int attributes) { this.id = id; this.attributes = attributes; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
private final HttpServletRequest request; private final FessConfig fessConfig; private int startPosition = -1; private int offset = -1; private int pageSize = -1; /** * Constructor for JsonRequestParams. * @param request The HTTP servlet request containing the search parameters
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (1) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcIntegrationTest.java
sidArray.sids[0].sid.sub_authority = new int[] { 500 }; sidArray.sids[1] = new lsarpc.LsarSidPtr(); sidArray.sids[1].sid = new rpc.sid_t(); sidArray.sids[1].sid.revision = 1; sidArray.sids[1].sid.identifier_authority = new byte[] { 0, 0, 0, 0, 0, 5 }; sidArray.sids[1].sid.sub_authority_count = 1; sidArray.sids[1].sid.sub_authority = new int[] { 501 }; // Encode to buffer
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10K bytes - Viewed (0) -
cmd/batch-expire.go
//go:generate msgp -file $GOFILE // BatchJobExpirePurge type accepts non-negative versions to be retained type BatchJobExpirePurge struct { line, col int RetainVersions int `yaml:"retainVersions" json:"retainVersions"` } var _ yaml.Unmarshaler = &BatchJobExpirePurge{} // UnmarshalYAML - BatchJobExpirePurge extends unmarshal to extract line, col
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Apr 22 11:16:32 UTC 2025 - 23K bytes - Viewed (0) -
src/main/java/jcifs/smb1/https/Handler.java
*/ public static final int DEFAULT_HTTPS_PORT = 443; /** * Default constructor for SMB1 HTTPS URL handler. */ public Handler() { } /** * Returns the default HTTPS port. * * @return An <code>int</code> containing the default HTTPS port. */ @Override protected int getDefaultPort() { return DEFAULT_HTTPS_PORT; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/DurableHandleResponse.java
// Reserved field initialized to zeros } @Override public byte[] getName() { return CONTEXT_NAME_BYTES; } @Override public int decode(byte[] buffer, int bufferIndex, int len) throws SMBProtocolDecodingException { if (len != 8) { throw new SMBProtocolDecodingException("Invalid durable handle response length: " + len); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
* @return comparison result for sorting * @throws IOException if an I/O error occurs */ protected int compareTypes(final SmbFile f1, final String f1name, final SmbFile f2) throws IOException { String f2name, t1, t2; int i; if (f1.isDirectory() != f2.isDirectory()) { return f1.isDirectory() ? -1 : 1; } f2name = f2.getName();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0)