- Sort Score
- Result 10 results
- Languages All
Results 451 - 460 of 1,251 for numero (0.04 sec)
-
cmd/os_other.go
d, err := Open(dirPath) if err != nil { if osErrToFileErr(err) == errFileNotFound { return nil } return osErrToFileErr(err) } defer d.Close() maxEntries := 1000 for { // Read up to max number of entries. fis, err := d.Readdir(maxEntries) if err != nil { if err == io.EOF { break } err = osErrToFileErr(err) if err == errFileNotFound { return nil } return err }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Sep 13 15:14:36 UTC 2023 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/StatementUtil.java
throw new SQLRuntimeException(ex); } } /** * Sets the maximum number of rows. * * @param statement * {@link Statement}. Must not be {@literal null}. * @param maxRows * Maximum number of rows. * @see Statement#setMaxRows(int) */ public static void setMaxRows(final Statement statement, final int maxRows) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5K bytes - Viewed (0) -
cmd/api-resources.go
errCode = ErrInvalidMaxParts return } } else { maxParts = maxPartsList } if values.Get("part-number-marker") != "" { if partNumberMarker, err = strconv.Atoi(values.Get("part-number-marker")); err != nil { errCode = ErrInvalidPartNumberMarker return } } uploadID = values.Get("uploadId") encodingType = values.Get("encoding-type")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jun 07 18:25:26 UTC 2023 - 4.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/MockWitnessService.java
if (removed != null) { log.debug("Mock unregistered witness: {}", registrationId); return true; } return false; } /** * Get the number of active registrations * * @return the registration count */ public int getRegistrationCount() { return registrations.size(); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 8.2K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java
assertEquals(incremental, artifactVersion.getIncrementalVersion(), parsed + "check incremental version"); assertEquals(buildnumber, artifactVersion.getBuildNumber(), parsed + "check build number"); assertEquals(qualifier, artifactVersion.getQualifier(), parsed + "check qualifier"); assertEquals(version, artifactVersion.toString(), "check " + version + " string value"); } @Test
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BooleanConversionUtil.java
* @return The converted {@link Boolean} */ public static Boolean toBoolean(final Object o) { return switch (o) { case null -> null; case Boolean b -> b; case Number n -> n.intValue() != 0; case String s -> switch (s.toLowerCase()) { case "true" -> Boolean.TRUE; case "false", "0" -> Boolean.FALSE; default -> Boolean.TRUE; };
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelState.java
/** * Channel is being closed */ CLOSING(7); private final int value; ChannelState(int value) { this.value = value; } /** * Get the numeric value of this state * * @return state value */ public int getValue() { return value; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/util/InputValidator.java
} } /** * Validates a port number * * @param port the port number to validate * @throws IllegalArgumentException if port is invalid */ public static void validatePort(int port) { if (port < 1 || port > 65535) { throw new IllegalArgumentException("Invalid port number: " + port); } } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.5K bytes - Viewed (0) -
src/main/java/jcifs/Config.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java
* * @param b the buffer into which the data is read * @param off the start offset in the array b at which the data is written * @param len the maximum number of bytes to read * @return the total number of bytes read into the buffer, or -1 if there is no more data * @throws IOException if an I/O error occurs */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0)