- Sort Score
- Num 10 results
- Language All
Results 3821 - 3830 of 4,456 for override1 (0.05 seconds)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java
* * TODO: Maybe eventually convert this asciidoc too, so everything uses the same markup language. */ public class GradleReleaseNotesPlugin implements Plugin<Project> { @Override public void apply(Project project) { ProjectLayout layout = project.getLayout(); TaskContainer tasks = project.getTasks();
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 14:49:33 GMT 2026 - 6.6K bytes - Click Count (0) -
android/guava/src/com/google/common/base/StandardSystemProperty.java
* </ul> */ public @Nullable String value() { return System.getProperty(key); } /** Returns a string representation of this system property. */ @Override public String toString() { return key() + "=" + value(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 06 10:03:30 GMT 2025 - 4.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/hash/HashingInputStreamTest.java
private Hasher hasher; private HashFunction hashFunction; private static final byte[] testBytes = new byte[] {'y', 'a', 'm', 's'}; private ByteArrayInputStream buffer; @SuppressWarnings("DoNotMock") @Override protected void setUp() throws Exception { super.setUp(); hasher = mock(Hasher.class); hashFunction = mock(HashFunction.class); buffer = new ByteArrayInputStream(testBytes);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 5.1K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionError.java
* * (That would also have ensured that its cause was always an Error, rather than possibly another * kind of Throwable that was later passed to initCause. Then we could have declared the override * `public final Error getCause()`.) */ /** * Creates a new instance with {@code null} as its detail message and no cause. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 13 17:34:21 GMT 2025 - 4K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/testers/ConcurrentMapReplaceEntryTester.java
@SuppressWarnings("JUnit4ClassUsedInJUnit3") @NullMarked public class ConcurrentMapReplaceEntryTester<K, V> extends AbstractMapTester<K, V> { @Override protected ConcurrentMap<K, V> getMap() { return (ConcurrentMap<K, V>) super.getMap(); } @MapFeature.Require(SUPPORTS_PUT) @CollectionSize.Require(absent = ZERO)Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 14:50:24 GMT 2024 - 5.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/hash/HashingInputStreamTest.java
private Hasher hasher; private HashFunction hashFunction; private static final byte[] testBytes = new byte[] {'y', 'a', 'm', 's'}; private ByteArrayInputStream buffer; @SuppressWarnings("DoNotMock") @Override protected void setUp() throws Exception { super.setUp(); hasher = mock(Hasher.class); hashFunction = mock(HashFunction.class); buffer = new ByteArrayInputStream(testBytes);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 5.1K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NbtException.java
public NbtException(final int errorClass, final int errorCode) { super(getErrorString(errorClass, errorCode)); this.errorClass = errorClass; this.errorCode = errorCode; } @Override public String toString() { return ("errorClass=" + errorClass + ",errorCode=" + errorCode + ",errorString=" + getErrorString(errorClass, errorCode)); }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/PropertyProfileActivatorTest.java
/** * Tests {@link PropertyProfileActivator}. * */ @Deprecated class PropertyProfileActivatorTest extends AbstractProfileActivatorTest<PropertyProfileActivator> { @BeforeEach @Override void setUp() throws Exception { activator = new PropertyProfileActivator(); } private Profile newProfile(String key, String value) { ActivationProperty ap =Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 5.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultProjectArtifactFactory.java
private final ArtifactFactory artifactFactory; @Inject public DefaultProjectArtifactFactory(ArtifactFactory artifactFactory) { this.artifactFactory = artifactFactory; } @Override public Set<Artifact> createArtifacts(MavenProject project) throws InvalidDependencyVersionException { return createArtifacts(artifactFactory, project.getDependencies(), null, null, project); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 6.2K bytes - Click Count (0) -
docs/tr/docs/how-to/custom-request-and-route.md
# Özel Request ve APIRoute sınıfı { #custom-request-and-apiroute-class } Bazı durumlarda, `Request` ve `APIRoute` sınıflarının kullandığı mantığı override etmek isteyebilirsiniz. Özellikle bu yaklaşım, bir middleware içindeki mantığa iyi bir alternatif olabilir. Örneğin, request body uygulamanız tarafından işlenmeden önce okumak veya üzerinde değişiklik yapmak istiyorsanız. /// danger | Uyarı Bu "ileri seviye" bir özelliktir.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 4.9K bytes - Click Count (0)