- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 1,387 for result7 (0.05 sec)
-
tests/group_by_test.go
} if err := DB.Model(&User{}).Select("name, sum(age) as total").Where("name LIKE ?", "groupby%").Group("name").Having("name = ?", "groupby1").Scan(&result).Error; err != nil { t.Errorf("no error should happen, but got %v", err) } if result.Name != "groupby1" || result.Total != 660 { t.Errorf("name should be groupby, total should be 660, but got %+v", result) } var active bool
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Jan 06 07:02:53 UTC 2022 - 3.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CertificatePinner.kt
other.pins == pins && other.certificateChainCleaner == certificateChainCleaner override fun hashCode(): Int { var result = 37 result = 41 * result + pins.hashCode() result = 41 * result + certificateChainCleaner.hashCode() return result } /** A hostname pattern and certificate hash for Certificate Pinning. */ class Pin( pattern: String, pin: String, ) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsCrawlingInfoBhv.java
} @Override protected <RESULT extends CrawlingInfo> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { try { final RESULT result = entityType.newInstance(); result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime"))); result.setExpiredTime(DfTypeUtil.toLong(source.get("expiredTime"))); result.setName(DfTypeUtil.toString(source.get("name")));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
} public void test_distinct_withDuplicates() { // Test distinct with duplicates String[] input = new String[] { "a", "b", "a", "c", "b", "a" }; String[] result = invokeDistinct(input); assertEquals(3, result.length); assertEquals("a", result[0]); assertEquals("b", result[1]); assertEquals("c", result[2]); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationTest.java
String result = trans2QueryPathInfo.toString(); assertNotNull(result); assertTrue(result.contains("Trans2QueryPathInformation")); assertTrue(result.contains("informationLevel=0x")); assertTrue(result.contains("filename=" + TEST_FILENAME)); assertTrue(result.contains(Hexdump.toHexString(TEST_INFO_LEVEL, 3))); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
String[] result = SearchRequestParams.simplifyArray(input); assertEquals(3, result.length); assertEquals("a", result[0]); assertEquals("b", result[1]); assertEquals("c", result[2]); } public void test_simplifyArray_withBlanks() { String[] input = { "a", "", "b", " ", null, "c" }; String[] result = SearchRequestParams.simplifyArray(input);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java
import org.apache.maven.api.Project; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; /** * Result of a project build call. * * @since 4.0.0 */ @Experimental public interface ProjectBuilderResult extends Result<ProjectBuilderRequest> { /** * Gets the identifier of the project that could not be built. The general format of the identifier is {@code
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exbhv/SearchLogBhv.java
} return DfTypeUtil.toLocalDateTime(value); } @SuppressWarnings("unchecked") @Override protected <RESULT extends SearchLog> RESULT createEntity(final Map<String, Object> source, final Class<? extends RESULT> entityType) { try { final RESULT result = super.createEntity(source, entityType); final Object searchFieldObj = source.get("searchField");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java
*/ public void setFlag(final int flag) { flags |= flag; } /** * Get the result of the DCERPC call. * @return result exception if the call failed, null otherwise */ public DcerpcException getResult() { if (result != 0) { return new DcerpcException(result); } return null; } void encode_header(final NdrBuffer buf) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
cmd/object-api-utils_test.go
bucket string result bool }{ // MinIO meta bucket. { bucket: minioMetaBucket, result: true, }, // MinIO meta bucket. { bucket: minioMetaMultipartBucket, result: true, }, // MinIO meta bucket. { bucket: minioMetaTmpBucket, result: true, }, // Normal bucket { bucket: "mybucket", result: false, }, }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 24.1K bytes - Viewed (0)