- Sort Score
- Result 10 results
- Languages All
Results 1591 - 1600 of 5,206 for RETURN (0.2 sec)
-
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java
* @return the fileId */ public byte[] getFileId() { return this.fileId; } /** * Gets the decoded output data from the response. * * @return the outputData */ public Decodable getOutputData() { return this.outputData; } /** * Gets the length of the output data. * * @return the outputLength */Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/MetadataGraph.java
if (mgn.metadata.equals(md)) { return mgn; } } MetadataGraphNode node = new MetadataGraphNode(md); addNode(node); return node; } /** * getter */ public MetadataGraphNode getEntry() { return entry; } /** * getter */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestWriterResult.java
* * @return true if there is at least one failure, false otherwise */ public boolean hasFailure() { return !failures.isEmpty(); } /** * Returns the list of failures. * * @return a List of Throwable objects representing the failures */ public List<Throwable> getFailures() { return failures; }Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java
} public SettingsBuilderRequestBuilder interpolationSource(UnaryOperator<String> interpolationSource) { this.interpolationSource = interpolationSource; return this; } public SettingsBuilderRequest build() { return new DefaultSettingsBuilderRequest( session, trace,Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 9.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingMultimap.java
public boolean containsValue(@Nullable Object value) { return delegate().containsValue(value); } @Override public Collection<Entry<K, V>> entries() { return delegate().entries(); } @Override public Collection<V> get(@ParametricNullness K key) { return delegate().get(key); } @Override public boolean isEmpty() { return delegate().isEmpty(); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 21:10:54 UTC 2025 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingMultimap.java
public boolean containsValue(@Nullable Object value) { return delegate().containsValue(value); } @Override public Collection<Entry<K, V>> entries() { return delegate().entries(); } @Override public Collection<V> get(@ParametricNullness K key) { return delegate().get(key); } @Override public boolean isEmpty() { return delegate().isEmpty(); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 21:10:54 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/LeaseV2CreateContextRequest.java
this.epoch = epoch; } @Override public byte[] getName() { return CONTEXT_NAME_BYTES; } /** * Gets the lease key for this V2 lease request * @return the lease key */ public Smb2LeaseKey getLeaseKey() { return leaseKey; } /** * Sets the lease key for this V2 lease request * @param leaseKey the lease key to setRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsDataConfig.java
// ======= @Override public DataConfigDbm asDBMeta() { return DataConfigDbm.getInstance(); } @Override public String asTableDbName() { return "data_config"; } // ===================================================================================Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
return true; } return false; } exists(); return (this.attributes & ATTR_HIDDEN) == ATTR_HIDDEN; } @Override public long createTime() throws SmbException { if (!this.fileLocator.isRootOrShare()) { exists(); return this.createTime; } return 0L; }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
clause/select.go
package clause // Select select attrs when querying, updating, creating type Select struct { Distinct bool Columns []Column Expression Expression } func (s Select) Name() string { return "SELECT" } func (s Select) Build(builder Builder) { if len(s.Columns) > 0 { if s.Distinct { builder.WriteString("DISTINCT ") } for idx, column := range s.Columns { if idx > 0 { builder.WriteByte(',')Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Jul 14 07:51:24 UTC 2021 - 1.1K bytes - Viewed (0)