- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for TypeTable (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
guava/src/com/google/common/reflect/TypeResolver.java
* * @author Ben Yu * @since 15.0 */ public final class TypeResolver { private final TypeTable typeTable; public TypeResolver() { this.typeTable = new TypeTable(); } private TypeResolver(TypeTable typeTable) { this.typeTable = typeTable; } /** * Returns a resolver that resolves types "covariantly". *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Sep 23 22:30:05 GMT 2025 - 25.3K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy
} def mergeContent(Element typeTable, DslDocModel model) { def title = typeTable.title[0].text() //TODO below checks makes it harder to add new sections //because the new section will work correctly only when the section title ends with 'types' :) if (title.matches('(?i).* types')) { mergeTypes(typeTable, model) } else if (title.matches('(?i).* blocks')) {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 9.8K bytes - Click Count (0)