- Sort Score
- Num 10 results
- Language All
Results 2131 - 2140 of 7,457 for rreturn (0.2 seconds)
-
src/main/java/jcifs/smb1/smb1/Trans2SetFileInformationResponse.java
return 0; } @Override int readParametersWireFormat(final byte[] buffer, final int bufferIndex, final int len) { return 0; } @Override int readDataWireFormat(final byte[] buffer, final int bufferIndex, final int len) { return 0; } @Override public String toString() { return ("Trans2SetFileInformationResponse[" + super.toString() + "]"); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 1.9K bytes - Click Count (0) -
utils/utils.go
case int16: return strconv.FormatInt(int64(v), 10) case int32: return strconv.FormatInt(int64(v), 10) case int64: return strconv.FormatInt(v, 10) case uint: return strconv.FormatUint(uint64(v), 10) case uint8: return strconv.FormatUint(uint64(v), 10) case uint16: return strconv.FormatUint(uint64(v), 10) case uint32: return strconv.FormatUint(uint64(v), 10)
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:35:55 GMT 2026 - 4.9K bytes - Click Count (0) -
cmd/ftp-server-driver.go
func NewFTPDriver() ftp.Driver { return &ftpDriver{endpoint: fmt.Sprintf("127.0.0.1:%s", globalMinioPort)} } func buildMinioPath(p string) string { return strings.TrimPrefix(p, SlashSeparator) } func buildMinioDir(p string) string { v := buildMinioPath(p) if !strings.HasSuffix(v, SlashSeparator) { return v + SlashSeparator } return v } type minioFileInfo struct { p string
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 14.3K bytes - Click Count (0) -
src/main/java/jcifs/http/NetworkExplorer.java
* @param f2 second file to compare * @return comparison result for sorting * @throws IOException if an I/O error occurs */ protected int compareNames(final SmbFile f1, final String f1name, final SmbFile f2) throws IOException { if (f1.isDirectory() != f2.isDirectory()) { return f1.isDirectory() ? -1 : 1; } return f1name.compareToIgnoreCase(f2.getName()); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 23.4K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/CoreExtension.java
* defined as plugins). * * @return String */ public String getClassLoadingStrategy() { return this.classLoadingStrategy; } // -- String getClassLoadingStrategy() /** * Get the group ID of the extension's artifact. * * @return String */ public String getGroupId() { return this.groupId; } // -- String getGroupId() /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 4.5K bytes - Click Count (0) -
tests/connpool_test.go
tx, err := c.db.BeginTx(ctx, opts) if err != nil { return nil, err } return &wrapperTx{Tx: tx, conn: c}, nil } func (c *wrapperConnPool) PrepareContext(ctx context.Context, query string) (*sql.Stmt, error) { c.got = append(c.got, query) return c.db.PrepareContext(ctx, query) } func (c *wrapperConnPool) ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) {
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sun May 25 07:40:40 GMT 2025 - 5.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
logger.warn("Failed to create parent directory: {}", parentFile.getAbsolutePath(), e); return false; } return process(thumbnailId, responseData -> { if (!isImageMimeType(responseData)) { if (logger.isDebugEnabled()) { logger.debug("Thumbnail is not image: {} : {}", thumbnailId, responseData.getUrl()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 01 12:47:47 GMT 2026 - 10.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
*/ } return true; } return false; } /** * Check whether the password hashes are externally supplied. * * @return whether the hashes are externally supplied */ public boolean areHashesExternal() { return this.hashesExternal; } /** * {@inheritDoc} *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 9.3K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/FilteredEntryMultimap.java
} @Override public Multimap<K, V> unfiltered() { return unfiltered; } @Override public Predicate<? super Entry<K, V>> entryPredicate() { return predicate; } @Override public int size() { return entries().size(); } private boolean satisfies(@ParametricNullness K key, @ParametricNullness V value) { return predicate.apply(immutableEntry(key, value)); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 12.3K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableMapKeySet.java
} @Override public int size() { return map.size(); } @Override public UnmodifiableIterator<K> iterator() { return map.keyIterator(); } @Override @GwtIncompatible // Spliterator public Spliterator<K> spliterator() { return map.keySpliterator(); } @Override public boolean contains(@Nullable Object object) { return map.containsKey(object); } @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 2.7K bytes - Click Count (0)