- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 5,520 for AsString (0.06 sec)
-
cmd/utils.go
} // AuditLogOptions takes options for audit logging subsystem activity type AuditLogOptions struct { Event string APIName string Status string Bucket string Object string VersionID string Error string Tags map[string]string } // sends audit logs for internal subsystem activity func auditLogInternal(ctx context.Context, opts AuditLogOptions) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 13 22:22:04 UTC 2024 - 31.9K bytes - Viewed (0) -
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) -
cmd/xl-storage-disk-id-check.go
} func storageTrace(s storageMetric, startTime time.Time, duration time.Duration, path string, size int64, err string, custom map[string]string) madmin.TraceInfo { return madmin.TraceInfo{ TraceType: madmin.TraceStorage, Time: startTime, NodeName: globalLocalNodeName, FuncName: "storage." + s.String(), Duration: duration, Bytes: size, Path: path, Error: err,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:56:26 UTC 2024 - 34.5K 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)