- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for setResources (0.07 seconds)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/UserManual.java
public abstract DirectoryProperty getStagedDocumentation(); /** * Additional resources to include in the final docs */ public abstract ConfigurableFileCollection getResources(); /** * A collection of the final rendered user manual */ public abstract ConfigurableFileCollection getRenderedDocumentation();Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 12 22:33:18 GMT 2026 - 1.6K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java
main.getOutput().dir(singletonMap("builtBy", asList(apiMapping, defaultImports)), generatedDirectory) ); extension.getUserManual().getResources().from(apiMapping); extension.getUserManual().getResources().from(defaultImports); } private void generateUserManual(Project project, TaskContainer tasks, ProjectLayout layout, GradleDocumentationExtension extension) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 12 22:33:18 GMT 2026 - 17.8K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java
tasks.register("checkstyleApi", Checkstyle.class, task -> { task.source(extension.getDocumentedSource()); // TODO: This is ugly task.setConfig(project.getResources().getText().fromFile(checkstyle.getConfigDirectory().file("checkstyle-api.xml"))); task.setClasspath(layout.files());
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Sun Mar 01 05:52:34 GMT 2026 - 11.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatMessage.java
return sources; } /** * Sets the list of sources referenced in the message. * * @param sources the list of sources */ public void setSources(final List<ChatSource> sources) { this.sources = sources; } /** * Adds a source to the message. * * @param source the source to add */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 04:52:31 GMT 2026 - 10.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
final String path = basePackage.replace('.', '/'); final ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); try { final Enumeration<java.net.URL> resources = classLoader.getResources(path); while (resources.hasMoreElements()) { final java.net.URL resource = resources.nextElement(); logger.debug("Loading resource: url={}", resource);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 13:59:25 GMT 2026 - 12.4K bytes - Click Count (1) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
assertThat(new ClassInfo(FILE, "a/b/Foo.class", getClass().getClassLoader()).getPackageName()) .isEqualTo("a.b"); } // Test that ResourceInfo.urls() returns identical content to ClassLoader.getResources() @AndroidIncompatible public void testGetClassPathUrls() throws Exception { if (isWindows()) { return; // TODO: b/136041958 - We need to account for drive letters in the path. }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 23.1K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/ClassPathTest.java
assertThat(new ClassInfo(FILE, "a/b/Foo.class", getClass().getClassLoader()).getPackageName()) .isEqualTo("a.b"); } // Test that ResourceInfo.urls() returns identical content to ClassLoader.getResources() @AndroidIncompatible public void testGetClassPathUrls() throws Exception { if (isWindows()) { return; // TODO: b/136041958 - We need to account for drive letters in the path. }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 25.8K bytes - Click Count (0)