- Sort Score
- Num 10 results
- Language All
Results 3031 - 3040 of 7,457 for rreturn (0.12 seconds)
-
guava/src/com/google/common/collect/RegularImmutableMultiset.java
if (Objects.equals(element, entry.getElement())) { return entry.getCount(); } } return 0; } @Override public int size() { return size; } @Override public ImmutableSet<E> elementSet() { ImmutableSet<E> result = elementSet; return (result == null) ? elementSet = new ElementSet<>(Arrays.asList(entries), this) : result; }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 20:08:09 GMT 2025 - 6.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
return getProjectSelectors(pa -> !pa.optional() && pa.active()); } /** * @return Optional active project selectors, never {@code null}. */ public Set<String> getOptionalActiveProjectSelectors() { return getProjectSelectors(pa -> pa.optional() && pa.active()); } /** * @return Required inactive project selectors, never {@code null}.
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 11 16:38:19 GMT 2025 - 7.2K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/Atomics.java
* * @return a new {@code AtomicReference} with no initial value */ public static <V> AtomicReference<@Nullable V> newReference() { return new AtomicReference<>(); } /** * Creates an {@code AtomicReference} instance with the given initial value. * * @param initialValue the initial value * @return a new {@code AtomicReference} with the given initial value */Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 2.4K bytes - Click Count (0) -
src/main/java/jcifs/internal/SmbNegotiation.java
} /** * Gets the negotiation request. * * @return the request */ public SmbNegotiationRequest getRequest() { return this.request; } /** * Gets the negotiation response. * * @return the response */ public SmbNegotiationResponse getResponse() { return this.response; } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.5K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/GroupRepositoryMetadata.java
@Override public boolean storedInGroupDirectory() { return true; } @Override public boolean storedInArtifactVersionDirectory() { return false; } @Override public String getGroupId() { return groupId; } @Override public String getArtifactId() { return null; } @Override public String getBaseVersion() {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.8K bytes - Click Count (0) -
src/main/java/jcifs/dcerpc/DcerpcMessage.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/ITBase.java
} public static String getFessUrl() { return System.getProperty("test.fess.url", DEFAULT_FESS_URL); } public static String getEsUrl() { return System.getProperty("test.search_engine.url", DEFAULT_SEARCH_ENGINE_URL); } protected static RequestSpecification checkMethodBase(final Map<String, Object> body) { return given().contentType("application/json")Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 3.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformation.java
* maybe I should put it in. Wonder what NT does? */ return dstIndex - start; } @Override int writeDataWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override int readSetupWireFormat(final byte[] buffer, final int bufferIndex, final int len) { return 0; } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 2.7K bytes - Click Count (0) -
internal/s3select/csv/recordtransform.go
} if rr.oneByte[0] == rr.recordDelimiter[1] { p[n-1] = '\n' return n, nil } rr.useOneByte = true return n, nil
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Jun 01 21:59:40 GMT 2021 - 2.1K bytes - Click Count (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
} return new NtlmChallenge(trans.getServerEncryptionKey(), dc); } catch (final SmbException e) { throw e; } catch (final IOException e) { throw new SmbException("Connection failed", e); } } /** * @return */ private CIFSContext getTransportContext() { return this.transportContext; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 15.3K bytes - Click Count (0)