- Sort Score
- Result 10 results
- Languages All
Results 891 - 900 of 5,602 for stringy (0.09 sec)
-
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java
* 1.0.0.X1 < 1.0.0-X2 for any string X */ @Test void testMng7644() { for (String x : new String[] {"abc", "alpha", "a", "beta", "b", "def", "milestone", "m", "RC"}) { // 1.0.0.X1 < 1.0.0-X2 for any string x checkVersionsOrder("1.0.0." + x + "1", "1.0.0-" + x + "2"); // 2.0.X == 2-X == 2.0.0.X for any string x
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/Graph.java
private enum DfsState { VISITING, VISITED } private static List<String> visitCycle( Map<String, Set<String>> graph, Collection<String> children, Map<String, DfsState> stateMap, LinkedList<String> cycle) { if (children != null) { for (String v : children) { DfsState state = stateMap.putIfAbsent(v, DfsState.VISITING);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
utils/tests/models.go
gorm.Model UserID sql.NullInt64 Number string } type Pet struct { gorm.Model UserID *uint Name string Toy Toy `gorm:"polymorphic:Owner;"` } type Toy struct { gorm.Model Name string OwnerID string OwnerType string } type Tools struct { gorm.Model Name string CustomID string Type string } type Company struct { ID int
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Fri Dec 15 08:36:08 UTC 2023 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/dict/DictTests.java
public class DictTests extends CrudTestBase { private static final String NAME_PREFIX = "dictTest_"; private static final String API_PATH = "/api/admin/dict"; private static final String LIST_ENDPOINT_SUFFIX = ""; private static final String ITEM_ENDPOINT_SUFFIX = ""; private static final String KEY_PROPERTY = ""; @Override protected String getNamePrefix() { return NAME_PREFIX; } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsElevateWord.java
protected Float boost; /** createdBy */ protected String createdBy; /** createdTime */ protected Long createdTime; /** permissions */ protected String[] permissions; /** reading */ protected String reading; /** suggestWord */ protected String suggestWord; /** updatedBy */ protected String updatedBy; /** updatedTime */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsentity/BsClickLog.java
// ========= /** urlId */ protected String urlId; /** docId */ protected String docId; /** order */ protected Integer order; /** queryId */ protected String queryId; /** queryRequestedAt */ protected LocalDateTime queryRequestedAt; /** requestedAt */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/bsentity/dbmeta/RoleDbm.java
protected final String _tableDbName = "role"; protected final String _tableDispName = "role"; protected final String _tablePropertyName = "Role"; public String getTableDbName() { return _tableDbName; } @Override public String getTableDispName() { return _tableDispName; } @Override public String getTablePropertyName() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsDuplicateHost.java
/** createdBy */ protected String createdBy; /** createdTime */ protected Long createdTime; /** duplicateHostName */ protected String duplicateHostName; /** regularName */ protected String regularName; /** sortOrder */ protected Integer sortOrder; /** updatedBy */ protected String updatedBy; /** updatedTime */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/FacetResponse.java
} public static class Field { protected Map<String, Long> valueCountMap = new LinkedHashMap<>(); protected String name; public Field(final Terms termFacet) { final String encodedField = termFacet.getName().substring(Constants.FACET_FIELD_PREFIX.length()); name = new String(BaseEncoding.base64().decode(encodedField), StandardCharsets.UTF_8);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.3K bytes - Viewed (0) -
cmd/net_test.go
testCases := []struct { ipList []string sortedIPList []string }{ // Default case of two ips one with higher octet moves // to the beginning of the list. { ipList: []string{"127.0.0.1", "10.0.0.13"}, sortedIPList: []string{"10.0.0.13", "127.0.0.1"}, }, // With multiple types of octet, chooses a higher octet. { ipList: []string{"127.0.0.1", "172.0.21.1", "192.168.1.106"},
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Apr 19 08:43:09 UTC 2024 - 9.3K bytes - Viewed (0)