- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 1,044 for TODO (0.04 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java
import org.apache.maven.plugin.descriptor.MojoDescriptor; // TODO lifecycles being executed // TODO what runs in each phase // TODO plugins that need downloading // TODO project dependencies that need downloading // TODO unfortunately the plugins need to be downloaded in order to get the plugin.xml file. need to externalize this // from the plugin archive. // TODO this will be the class that people get in IDEs to modify /**
Created: 2026-04-05 03:35 - Last Modified: 2025-06-06 14:28 - 6.3K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java
inputs.dir(stylesDir) .withPropertyName("stylesdir") .withPathSensitivity(PathSensitivity.RELATIVE); // TODO: Break the paths assumed here Map<String, Object> attributes = new HashMap<>(); // TODO: This breaks the provider attributes.put("stylesdir", stylesDir.get().getAsFile().getAbsolutePath()); attributes.put("stylesheet", "manual.css");
Created: 2026-04-01 11:36 - Last Modified: 2026-03-12 22:33 - 17.8K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java
assertThat(getOnlyElement(results)).isInstanceOf(TrustedListenableFutureTask.class); /* * TODO(cpovirk): move ForwardingTestCase somewhere common, and use it to * test the forwarded methods */ } @AndroidIncompatible // Mocking ExecutorService is forbidden there. TODO(b/218700094): Don't mock. public void testListeningDecorator_noWrapExecuteTask() {
Created: 2026-04-03 12:43 - Last Modified: 2026-03-16 22:45 - 26.1K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadata.java
import org.apache.maven.artifact.repository.metadata.RepositoryMetadataStoreException; /** * Contains metadata about an artifact, and methods to retrieve/store it from an artifact repository. * TODO merge with artifactmetadatasource * TODO retrieval exception not appropriate for store * */ public interface ArtifactMetadata { /** * Whether this metadata should be stored alongside the artifact. *Created: 2026-04-05 03:35 - Last Modified: 2024-10-25 12:31 - 3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java
assertThat(getOnlyElement(results)).isInstanceOf(TrustedListenableFutureTask.class); /* * TODO(cpovirk): move ForwardingTestCase somewhere common, and use it to * test the forwarded methods */ } @AndroidIncompatible // Mocking ExecutorService is forbidden there. TODO(b/218700094): Don't mock. public void testListeningDecorator_noWrapExecuteTask() {
Created: 2026-04-03 12:43 - Last Modified: 2026-03-16 22:45 - 26.1K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingDeque.java
@Override @ParametricNullness public E getLast() { return delegate().getLast(); } @CanIgnoreReturnValue // TODO(cpovirk): Consider removing this? @Override public boolean offerFirst(@ParametricNullness E e) { return delegate().offerFirst(e); } @CanIgnoreReturnValue // TODO(cpovirk): Consider removing this? @Override public boolean offerLast(@ParametricNullness E e) { return delegate().offerLast(e);
Created: 2026-04-03 12:43 - Last Modified: 2024-12-22 03:38 - 4.1K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchTestBasePlugin.java
} }); // TODO: remove this once ctx isn't added to update script params in 7.0 test.systemProperty("es.scripting.update.ctx_in_params", "false"); // TODO: remove this property in 8.0 test.systemProperty("es.search.rewrite_sort", "true"); // TODO: remove this once cname is prepended to transport.publish_address by default in 8.0Created: 2026-04-08 16:19 - Last Modified: 2021-08-24 22:14 - 10.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/ForwardingDeque.java
@Override @ParametricNullness public E getLast() { return delegate().getLast(); } @CanIgnoreReturnValue // TODO(cpovirk): Consider removing this? @Override public boolean offerFirst(@ParametricNullness E e) { return delegate().offerFirst(e); } @CanIgnoreReturnValue // TODO(cpovirk): Consider removing this? @Override public boolean offerLast(@ParametricNullness E e) { return delegate().offerLast(e);
Created: 2026-04-03 12:43 - Last Modified: 2024-12-22 03:38 - 4.1K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/testing/FakeTicker.java
*/ @GwtIncompatible @J2ktIncompatible @CanIgnoreReturnValue @IgnoreJRERequirement // TODO: b/288085449 - Remove this once we use library-desugaring scents. @Beta // TODO: b/288085449 - Remove @Beta after we're sure that Java 8 APIs are safe for Android public FakeTicker advance(Duration duration) { return advance(duration.toNanos()); } /**
Created: 2026-04-03 12:43 - Last Modified: 2025-04-14 15:16 - 4.1K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/amd64error.s
// VEX-encoded VSIB can't use High-16 registers as index (unlike EVEX). // TODO(quasilyte): improve error message (#21860). VPGATHERQQ X2, (BP)(X20*2), X3 // ERROR "invalid instruction" VPGATHERQQ Y2, (BP)(Y20*2), Y3 // ERROR "invalid instruction" // YzrMulti4 expects exactly 4 registers referenced by REG_LIST. // TODO(quasilyte): improve error message (#21860). V4FMADDPS (AX), [Z0-Z4], K1, Z7 // ERROR "invalid instruction"
Created: 2026-04-07 11:13 - Last Modified: 2023-06-14 00:03 - 8.9K bytes - Click Count (0)