- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 10 for FieldH2 (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
schema/index_test.go
FieldD string `gorm:"uniqueIndex;index"` // uniqueIndex and index FieldE1 string `gorm:"uniqueIndex:uniq_field_e1_e2"` // mul uniqueIndex FieldE2 string `gorm:"uniqueIndex:uniq_field_e1_e2"` FieldF1 string `gorm:"uniqueIndex:uniq_field_f1_f2;index"` // mul uniqueIndex and index FieldF2 string `gorm:"uniqueIndex:uniq_field_f1_f2;"` FieldG string `gorm:"unique;uniqueIndex"` // unique and uniqueIndex
Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Fri Dec 06 02:27:44 GMT 2024 - 7.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/ToStringHelperTest.java
.addValue("value1") .add("field2", "value2"); String expected = "TestClass{field1=1, value1, field2=value2}"; assertEquals(expected, helper.toString()); // Call toString again assertEquals(expected, helper.toString()); // Make sure the cached value is reset when we modify the helper at all String expected2 = "TestClass{field1=1, value1, field2=value2, 2}"; helper.addValue(2);
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue May 13 18:46:00 GMT 2025 - 21.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReaderTest.java
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Sun Nov 23 13:04:17 GMT 2025 - 8.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/index/contents/querylog/QueryLogTest.java
assertEquals("", queryLog.getFilterQueryString()); } @Test public void test_complexQuery() throws Exception { String query = "field1:value1 AND field2:value2"; String filterQuery = "category:electronics"; QueryLog queryLog = new QueryLog(query, filterQuery); assertEquals(query, queryLog.getQueryString());
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Thu Nov 13 00:40:54 GMT 2025 - 3.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java
// Test constructor with all parameters String[] text = { "test", "text" }; String[][] readings = { { "reading1" }, { "reading2" } }; String[] fields = { "field1", "field2" }; String[] tags = { "tag1", "tag2" }; String[] roles = { "role1", "role2" }; String[] languages = { "en", "ja" }; SuggestItem.Kind kind = SuggestItem.Kind.QUERY;Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Sep 01 13:33:03 GMT 2025 - 16.7K bytes - Click Count (0) -
README.md
// JSON utilities with proper escaping String escaped = JsonUtil.escape("Hello \"World\" with special chars"); String unescaped = JsonUtil.unescape(escaped); // Text tokenization Tokenizer tokenizer = new Tokenizer("field1,field2,field3", ","); while (tokenizer.hasMoreTokens()) { String token = tokenizer.nextToken(); // Process each token } // Decimal formatting
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sun Aug 31 02:56:02 GMT 2025 - 12.7K bytes - Click Count (0) -
tests/migrate_test.go
func TestMigrateAutoIncrement(t *testing.T) { type AutoIncrementStruct struct { ID int64 `gorm:"primarykey;autoIncrement"` Field1 uint32 `gorm:"column:field1"` Field2 float32 `gorm:"column:field2"` } if err := DB.AutoMigrate(&AutoIncrementStruct{}); err != nil { t.Fatalf("AutoMigrate err: %v", err) } const ROWS = 10 for idx := 0; idx < ROWS; idx++ {
Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Wed Aug 20 04:51:17 GMT 2025 - 65.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
// Test creating bulk line for indexing SuggestItem item = new SuggestItem(new String[] { "test text" }, new String[][] { { "reading1" }, { "reading2" } }, new String[] { "field1", "field2" }, 10, // queryFreq 5, // docFreq 2.0f, // userBoost new String[] { "tag1", "tag2" }, new String[] { "role1" }, new String[] {}, // languagesCreated: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 26.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerTest.java
SuggestIndexer indexer = suggester.indexer(); assertNotNull(indexer.setIndexName("test-index")); assertNotNull(indexer.setSupportedFields(new String[] { "field1", "field2" })); assertNotNull(indexer.setTagFieldNames(new String[] { "tag1", "tag2" })); assertNotNull(indexer.setRoleFieldName("role")); assertNotNull(indexer.setReadingConverter(null));
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 28.4K bytes - Click Count (0) -
api/go1.txt
pkg encoding/xml, type SyntaxError struct, Msg string pkg encoding/xml, type TagPathError struct pkg encoding/xml, type TagPathError struct, Field1 string pkg encoding/xml, type TagPathError struct, Field2 string pkg encoding/xml, type TagPathError struct, Struct reflect.Type pkg encoding/xml, type TagPathError struct, Tag1 string pkg encoding/xml, type TagPathError struct, Tag2 string
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Aug 14 18:58:28 GMT 2013 - 1.7M bytes - Click Count (0)