- Sort Score
- Num 10 results
- Language All
Results 2451 - 2460 of 4,422 for 1Final (0.05 seconds)
-
benchmarks/src/main/java/org/elasticsearch/common/bytes/PagedBytesReferenceReadLongBenchmark.java
private int dataMb; private BytesReference pagedBytes; private StreamInput streamInput; @Setup public void initResults() throws IOException { final BytesStreamOutput tmp = new BytesStreamOutput(); final long bytes = new ByteSizeValue(dataMb, ByteSizeUnit.MB).getBytes(); for (int i = 0; i < bytes / 8; i++) { tmp.writeLong(i); } pagedBytes = tmp.bytes();Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Apr 12 20:25:06 GMT 2021 - 2.3K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/BaseComparable.java
/** * Simple base class to verify that we handle generics correctly. * * @author Kevin Bourrillion */ @GwtCompatible public class BaseComparable implements Comparable<BaseComparable>, Serializable { private final String s; public BaseComparable(String s) { this.s = s; } @Override public int hashCode() { // delegate to 's' return s.hashCode(); } @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 13 17:34:21 GMT 2025 - 1.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/eventbus/outside/AnnotatedAndAbstractInSuperclassTest.java
@Subscribe public abstract void overriddenInSubclass(Object o); } static class SubClass extends SuperClass { final List<Object> overriddenAndAnnotatedInSubclassEvents = new ArrayList<>(); final List<Object> overriddenInSubclassEvents = new ArrayList<>(); @Subscribe @Override public void overriddenAndAnnotatedInSubclass(Object o) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 2K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/BuildTimestampValueSource.java
import java.util.Date; import org.codehaus.plexus.interpolation.AbstractValueSource; /** * */ @Deprecated public class BuildTimestampValueSource extends AbstractValueSource { private final Date startTime; private final String format; private String formattedDate; public BuildTimestampValueSource(Date startTime, String format) { super(false); this.startTime = startTime;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 1.7K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/BaseRequest.java
/** * Base class for requests. * * @since 4.0.0 */ @Experimental abstract class BaseRequest<S extends ProtoSession> implements Request<S> { private final S session; private final RequestTrace trace; protected BaseRequest(@Nonnull S session) { this(session, null); } protected BaseRequest(@Nonnull S session, RequestTrace trace) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 1.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/SetWithResolutionResult.java
import org.apache.maven.project.artifact.ProjectArtifactsCache; public class SetWithResolutionResult extends AbstractSet<Artifact> implements ProjectArtifactsCache.ArtifactsSetWithResult { final DependencyResolutionResult result; final Set<Artifact> artifacts; public SetWithResolutionResult(DependencyResolutionResult result, Set<Artifact> artifacts) { this.result = result;
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.8K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/FarmHashFingerprint64.java
* @author Kyle Maddison * @author Geoff Pike */ final class FarmHashFingerprint64 extends AbstractNonStreamingHashFunction { static final HashFunction FARMHASH_FINGERPRINT_64 = new FarmHashFingerprint64(); // Some primes between 2^63 and 2^64 for various uses. private static final long K0 = 0xc3a5c85c97cb3127L; private static final long K1 = 0xb492b66fbe98f273L; private static final long K2 = 0x9ae16a3b2f90404fL; @OverrideCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Aug 11 19:31:30 GMT 2025 - 7.6K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java
/** * Context name for directory lease request */ public static final String NAME_DIRECTORY_REQUEST = "DLse"; /** * Context name for directory lease response */ public static final String NAME_DIRECTORY_RESPONSE = "DLse"; private static final byte[] CONTEXT_NAME_BYTES = NAME_DIRECTORY_REQUEST.getBytes(); /** * Directory lease flag for recursive cachingCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 9.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableSortedSet.java
* implementation type is an implementation detail. */ @J2ktIncompatible // serialization private static final class SerializedForm<E> implements Serializable { final Comparator<? super E> comparator; final Object[] elements; SerializedForm(Comparator<? super E> comparator, Object[] elements) { this.comparator = comparator; this.elements = elements;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 39.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java
* @return concatenated string of localized validation messages separated by spaces */ protected String getMessage(final VaMessenger<FessMessages> validationMessagesLambda) { final FessMessages messages = new FessMessages(); validationMessagesLambda.message(messages);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 4.8K bytes - Click Count (0)