- Sort Score
- Num 10 results
- Language All
Results 1991 - 2000 of 6,495 for rreturn (0.12 seconds)
-
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
} /** * Get the negotiated cipher identifier * @return the negotiated cipher ID */ public int getCipherId() { return this.cipherId; } /** * Get the SMB dialect version * @return the SMB dialect version */ public DialectVersion getDialect() { return this.dialect; } /** * Set key rotation limits *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 35.5K bytes - Click Count (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 setCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 6.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/FessUser.java
* @return Array of permission strings. */ String[] getPermissions(); /** * Determines if the user's information can be edited. * @return True if the user's information is editable, false otherwise. */ default boolean isEditable() { return false; } /** * Refreshes the user's information from the underlying data source.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/HighlightInfo.java
this.type = type; return this; } /** * Gets the fragment size. * * @return the fragment size in characters */ public int getFragmentSize() { return fragmentSize; } /** * Sets the fragment size with fluent interface. * * @param fragmentSize the fragment size in characters * @return this HighlightInfo instance for method chaining */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 10:17:07 GMT 2026 - 5.2K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ArtifactModelSource.java
} public String getGroupId() { return groupId; } public String getArtifactId() { return artifactId; } public String getVersion() { return version; } @Override public int hashCode() { return hashCode; } @Override public boolean equals(Object obj) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 2.8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FileModelSource.java
return new FileModelSource(relatedPom.normalize()); } return null; } @Override public URI getLocationURI() { return getFile().toURI(); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof FileModelSource)) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Apr 14 13:42:17 GMT 2025 - 2.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableEnumSet.java
} return delegate.containsAll(collection); } @Override public boolean isEmpty() { return delegate.isEmpty(); } @Override public boolean equals(@Nullable Object object) { if (object == this) { return true; } if (object instanceof ImmutableEnumSet) { object = ((ImmutableEnumSet<?>) object).delegate; } return delegate.equals(object); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 4.2K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java
} @Override public String toString() { return "Mojo parameter [name: '" + getName() + "'; alias: '" + getAlias() + "']"; } public Requirement getRequirement() { return requirement; } public void setRequirement(Requirement requirement) { this.requirement = requirement; } public String getImplementation() {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.1K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AbstractListeningExecutorService.java
*/ @CanIgnoreReturnValue // TODO(kak): consider removing this @Override protected final <T extends @Nullable Object> RunnableFuture<T> newTaskFor(Callable<T> callable) { return TrustedListenableFutureTask.create(callable); } @CanIgnoreReturnValue // TODO(kak): consider removing this @Override public ListenableFuture<?> submit(Runnable task) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Feb 12 17:47:46 GMT 2025 - 3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DependencyContext.java
} public MavenProject getProject() { return project; } public Collection<String> getScopesToCollectForCurrentProject() { return scopesToCollectForCurrentProject; } public Collection<String> getScopesToResolveForCurrentProject() { return scopesToResolveForCurrentProject; }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.6K bytes - Click Count (0)