- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 649 for parses (0.04 sec)
-
cmd/update.go
) // minioVersionToReleaseTime - parses a standard official release // MinIO version string. // // An official binary's version string is the release time formatted // with RFC3339 (in UTC) - e.g. `2017-09-29T19:16:56Z` func minioVersionToReleaseTime(version string) (releaseTime time.Time, err error) { return time.Parse(time.RFC3339, version) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/jcifs/spnego/NegTokenInitTest.java
assertDoesNotThrow(() -> { NegTokenInit parsed = new NegTokenInit(token); assertNotNull(parsed.getMechanisms(), "Should parse mechanisms"); assertEquals(NegTokenInit.INTEGRITY, parsed.getContextFlags(), "Should parse flags"); assertArrayEquals(new byte[] { 0x42 }, parsed.getMechanismToken(), "Should parse token"); }); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
throws VersionResolverException; /** * Parses the specified version string, for example "1.0". * <p> * Shortcut for {@code getService(VersionParser.class).parseVersion(...)}. * * @param version the version string to parse * @return the version parsed from the given string * @throws org.apache.maven.api.services.VersionParserException if the parsing failed
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 36.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/UUIDTest.java
assertEquals(CLOCK_SEQ_HI_AND_RESERVED, uuid.clock_seq_hi_and_reserved, "clock_seq_hi_and_reserved should be parsed correctly"); assertEquals(CLOCK_SEQ_LOW, uuid.clock_seq_low, "clock_seq_low should be parsed correctly"); assertArrayEquals(NODE, uuid.node, "node array should be parsed correctly"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
missing = fessConfig.getQueryFacetFieldsMissing(); } } /** * Converts the sort string into a BucketOrder object for OpenSearch aggregations. * Parses sort configuration like "count.desc" or "term.asc" into appropriate bucket ordering. * * @return the BucketOrder instance representing the sort configuration */ public BucketOrder getBucketOrder() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceLocatorTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
reload(updater, curlResponse.getContentAsStream()); } catch (final IOException e) { throw new DictionaryException("Failed to parse " + path, e); } } /** * Reloads the character mapping items from the provided input stream. * Parses mapping rules in the format: input1,input2,... => output *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ParameterUtil.java
/** * Protected constructor. */ protected ParameterUtil() { // nothing } /** * Parses parameter string into a map. * * @param value the parameter string * @return the parameter map */ public static Map<String, String> parse(final String value) { final Map<String, String> paramMap = new LinkedHashMap<>(); if (value != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
* * @param value the comma-separated string of pruned tag configurations * @return an array of PrunedTag objects parsed from the input string * @throws FessSystemException if the input string contains invalid tag patterns */ public static PrunedTag[] parse(final String value) { return split(value, ",").get(stream -> stream.filter(StringUtil::isNotBlank).map(v -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
ci/official/utilities/extract_resultstore_links.py
build_failed = 'build_failed' passed = 'passed' def parse_args() -> argparse.Namespace: """Parses the commandline args.""" parser = argparse.ArgumentParser( description='Extracts ResultStore links from a build log.\n' 'These can be then printed out, and/or output into a ' 'JUnit-based XML file inside a specified directory.') parser.add_argument('build_log',
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Nov 08 17:50:27 UTC 2023 - 10.9K bytes - Viewed (0)