- Sort Score
- Result 10 results
- Languages All
Results 3201 - 3210 of 3,735 for Null (0.06 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java
throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); return null; })).status(Status.OK).result()); } // DELETE /api/admin/failureurl/log/{id} /** * Deletes a failure URL log by ID. * * @param id the failure URL log ID to delete
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java
throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); return null; })).status(Status.OK).result()); } /** * Deletes a specific crawling info log by ID. * * @param id the ID of the crawling info log to delete
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/BasicCertificateChainCleaner.kt
// certificate in the chain is itself a self-signed and trusted CA certificate.) val trustedCert = trustRootIndex.findByIssuerAndSignature(toVerify) if (trustedCert != null) { if (result.size > 1 || toVerify != trustedCert) { result.add(trustedCert) } if (verifySignature(trustedCert, trustedCert, result.size - 2)) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/NtlmMessage.java
dest[offset + 1] = (byte) (ushort >> 8 & 0xff); } static void writeSecurityBuffer(final byte[] dest, final int offset, final int bodyOffset, final byte[] src) { final int length = src != null ? src.length : 0; if (length == 0) { return; } writeUShort(dest, offset, length); writeUShort(dest, offset + 2, length); writeULong(dest, offset + 4, bodyOffset);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.6K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/lifecycle.mdo
* {@code generate-sources} or {@code after:integration-test[1000]}. * * @return String */ public String getEffectiveId() { if (executionPoint == null) { if (priority == 0) { return id; } return id + '[' + priority + ']'; } if (priority == 0) { return executionPoint + ':' + id;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComTransactionTest.java
} @Test @DisplayName("Test toString() method") void testToString() { String result = transaction.toString(); assertNotNull(result, "toString should not return null"); assertTrue(result.contains("command="), "toString should contain command info"); } @Test @DisplayName("Test parameter and data writing methods") void testWriteMethods() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
ci/official/containers/ml_build_arm64/builder.devtoolset/stringop_trunc.patch
- ? ((__builtin_constant_p (s) && __string2_1bptr_p (s)) \ - ? __builtin_strpbrk (s, accept) \ - : ((__a0 = ((const char *) (accept))[0], __a0 == '\0') \ - ? ((void) (s), (char *) NULL) \ - : ((__a1 = ((const char *) (accept))[1], __a1 == '\0') \ - ? __builtin_strchr (s, __a0) \ - : ((__a2 = ((const char *) (accept))[2], __a2 == '\0') \
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Nov 11 19:25:56 UTC 2024 - 42.9K bytes - Viewed (0) -
statement.go
stmt.DB.Dialector.BindVarTo(writer, stmt, v) case []interface{}: if len(v) > 0 { writer.WriteByte('(') stmt.AddVar(writer, v...) writer.WriteByte(')') } else { writer.WriteString("(NULL)") } case interface{ getInstance() *DB }: cv := v.getInstance() subdb := cv.Session(&Session{Logger: logger.Discard, DryRun: true}).getInstance() if cv.Statement.SQL.Len() > 0 { var (
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 20.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java
public class RenderDataUtilTest extends UnitFessTestCase { public void test_register_null() { RenderData data = new RenderData(); RenderDataUtil.register(data, "key1", null); assertNull(data.getDataMap().get("key1")); } public void test_register_string() { RenderData data = new RenderData(); RenderDataUtil.register(data, "key1", "test value");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 9K bytes - Viewed (0) -
guava/src/com/google/common/io/ByteStreams.java
* either the full amount has been skipped or until the end of the stream is reached, whichever * happens first. Returns the total number of bytes skipped. */ static long skipUpTo(InputStream in, long n) throws IOException { long totalSkipped = 0; // A buffer is allocated if skipSafely does not skip any bytes. byte[] buf = null; while (totalSkipped < n) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 31.1K bytes - Viewed (0)