- Sort Score
- Result 10 results
- Languages All
Results 1071 - 1080 of 1,157 for TODO (0.04 sec)
-
api/maven-api-settings/src/main/mdo/settings.mdo
<description> Specifies that this profile will be activated based on the project's packaging. </description> </field> </fields> </class> <!-- TODO: reproduced from maven-model/maven.mdo, instead should inherit code and link to external docs --> <class java.clone="deep"> <name>RepositoryBase</name> <version>1.0.0+</version>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Oct 08 13:46:42 UTC 2024 - 33.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
} request.addPluginGroup("org.apache.maven.plugins"); request.addPluginGroup("org.codehaus.mojo"); } /** * TODO: get rid of this!!! */ @Deprecated private ArtifactRepository createLocalArtifactRepository(Path baseDirectory) { DefaultRepositoryLayout layout = new DefaultRepositoryLayout();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt
if (success && !entry.zombie) { if (fileSystem.exists(dirty)) { val clean = entry.cleanFiles[i] fileSystem.atomicMove(dirty, clean) val oldLength = entry.lengths[i] // TODO check null behaviour val newLength = fileSystem.metadata(clean).size ?: 0 entry.lengths[i] = newLength size = size - oldLength + newLength } } else {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 34.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
// cb.fetchFirst(0); // createSearchLogCondition(pager, cb); // // TODO 0 clicked // }); } else { list = (EsPagingResultBean<?>) searchLogBhv.selectPage(cb -> { cb.paging(pager.getPageSize(), pager.getCurrentPageNumber());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 28.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/NullPointerTester.java
FROM_DECLARATION_AND_TYPE_USE_ANNOTATIONS { @Override boolean isNullable(Invokable<?, ?> invokable) { return FROM_DECLARATION_ANNOTATIONS_ONLY.isNullable(invokable) ; // TODO(cpovirk): Should we also check isNullableTypeVariable? } @Override boolean isNullable(Parameter param) { return FROM_DECLARATION_ANNOTATIONS_ONLY.isNullable(param) ; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 11 16:13:05 UTC 2024 - 22.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableSetMultimapTest.java
input.putAll("foo", Arrays.<@Nullable Integer>asList(1, null, 3)); assertThrows( NullPointerException.class, () -> ImmutableSetMultimap.copyOf((Multimap<String, Integer>) input)); } // TODO(b/172823566): Use mainline testToImmutableSetMultimap once CollectorTester is usable. public void testToImmutableSetMultimap_java7_combine() { ImmutableSetMultimap.Builder<String, Integer> zis =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 26.9K bytes - Viewed (0) -
architecture/ambient/ztunnel.md
* All other traffic *ingressing* a pod in the mesh should be redirected to the node-local ztunnel on port 15006, regardless of intended original destination port. TODO: fill in implementation details of how redirection is actually implemented. ## HBONE Along with pass-through traffic, Ztunnel supports the "HBONE" (HTTP-Based Overlay Network) protocol.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 17 23:10:17 UTC 2024 - 16.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
params.put("query", query); params.put("responseFields", responseFields); params.put("offset", offset); params.put("size", size); // TODO support rescorer(convert to map) // params.put("geoInfo", geoInfo); // params.put("facetInfo", facetInfo); params.put("similarDocHash", similarDocHash); return params;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMap.java
* that can lead to NullPointerException. That's unfortunate. But hopefully most Kotlin callers * use `get(key) ?: defaultValue` instead of this method, anyway. */ V result = get(key); // TODO(b/192579700): Use a ternary once it no longer confuses our nullness checker. if (result != null) { return result; } else { return defaultValue; } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 44.6K bytes - Viewed (0) -
docs/pt/docs/deployment/docker.md
5. Copie o diretório `./app` dentro do diretório `/code`. Como isso tem todo o código contendo o que **muda com mais frequência**, o **cache do Docker** não será usado para esse passo ou para **qualquer passo seguinte** facilmente.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 37.4K bytes - Viewed (0)