- Sort Score
- Result 10 results
- Languages All
Results 2671 - 2680 of 5,326 for Returns (0.07 sec)
-
src/main/java/jcifs/smb1/smb1/SmbComQueryInformationResponse.java
@Override public int getAttributes() { return fileAttributes; } @Override public long getCreateTime() { return lastWriteTime + serverTimeZoneOffset; } @Override public long getLastWriteTime() { return lastWriteTime + serverTimeZoneOffset; } @Override public long getSize() { return fileSize; } @OverrideRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/SingletonImmutableBiMap.java
return singleValue.equals(value); } @Override boolean isPartialView() { return false; } @Override ImmutableSet<Entry<K, V>> createEntrySet() { return ImmutableSet.of(immutableEntry(singleKey, singleValue)); } @Override ImmutableSet<K> createKeySet() { return ImmutableSet.of(singleKey); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java
* * @return the info */ public final FileInformation getInfo() { return this.info; } /** * Gets the file information from the response cast to the specified type. * * @param <T> the type of file information to return * @param type the class of the file information to return * @return the info cast to the specified typeRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K 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/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreatorTest.java
@Override public String getMailFromName() { return "Test Admin"; } @Override public String getMailFromAddress() { return "******@****.***"; } @Override public String getMailHostname() { return "localhost"; } });Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2RdmaTransformCapabilitiesContext.java
} /** * Get the transform count * * @return number of transforms */ public int getTransformCount() { return transformCount; } /** * Get the RDMA transform ID * * @return transform ID (should be 0x0001 for V1) */ public int getRdmaTransformId() {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/util/ResourceManager.java
*/ public static ResourceManager getInstance() { return INSTANCE; } /** * Register a resource for tracking * * @param resource the resource to track * @return resource ID for tracking */ public String registerResource(AutoCloseable resource) { if (resource == null) {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingNavigableSet.java
protected @Nullable E standardPollLast() { return Iterators.pollNext(descendingIterator()); } @ParametricNullness protected E standardFirst() { return iterator().next(); } @ParametricNullness protected E standardLast() { return descendingIterator().next(); } @Override public NavigableSet<E> descendingSet() { return delegate().descendingSet(); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/util/SimpleCircuitBreaker.java
if (total == 0) { return 1.0; } return (double) totalSuccesses.get() / total; } /** * Check if circuit breaker allows requests * * @return true if requests are allowed */ public boolean allowsRequests() { State current = evaluateState(); return current != State.OPEN; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
return OptionalEntity.of(entity); case CrudMode.EDIT: if (form instanceof EditForm) { return ComponentUtil.getComponent(CharMappingService.class).getCharMappingItem(form.dictId, ((EditForm) form).id); } break; default: break; } return OptionalEntity.empty(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0)