Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for source2 (0.21 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/MixedLanguageIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "build and execute program with non-conventional source layout"() {
            given:
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
                    cpp {
                        source {
                            srcDirs "source"
                            include "**/*.cpp"
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. guava-tests/pom.xml

            <executions>
              <execution>
                <id>add-benchmark-sources</id>
                <phase>generate-test-sources</phase>
                <goals><goal>add-test-source</goal></goals>
                <configuration>
                  <sources>
                    <source>benchmark</source>
                  </sources>
                </configuration>
              </execution>
            </executions>
          </plugin>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 19:01:53 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/GeneratedSourcesIntegrationTest.groovy

        apply plugin: 'c'
    
    model {
        components { comp ->
            headersOnly(NativeLibrarySpec) {
                sources {
                    c.generatedBy tasks.generateCSources
                }
            }
            main(NativeExecutableSpec) {
                sources {
                    c.lib \$.components.headersOnly.sources.c
                }
            }
        }
    }
    """
    
            then:
            executableBuilt(app)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/IdeaModuleFixture.groovy

                    module.moduleName = it.'@module-name'
                    return module
                } else if (it.@type == 'sourceFolder') {
                    def source = new ImlSource()
                    source.type = it.@type
                    source.forTests = it.@forTests
                    return source
                } else if (it.@type == 'library') {
                    def library = new ImlLibrary()
                    library.type = it.@type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. maven-slf4j-provider/pom.xml

                <id>add-slf4j-simple</id>
                <goals>
                  <goal>add-source</goal>
                </goals>
                <phase>generate-sources</phase>
                <configuration>
                  <sources>
                    <source>${project.build.directory}/generated-sources/slf4j-simple</source>
                  </sources>
                </configuration>
              </execution>
            </executions>
          </plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmLanguageSourceDirectoryBuilder.java

        /**
         * Tells how to compile this source directory set.
         * @param taskBuilder the builder for the task which compiles sources
         */
        JvmLanguageSourceDirectoryBuilder compiledBy(Function<DirectoryProperty, TaskProvider<? extends AbstractCompile>> taskBuilder);
    
        /**
         * Assumes that this source set will contain Java sources and therefore creates a Java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:44:05 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelReportIntegrationTest.groovy

                Source sets
                    $languageName source 'myComponent:myComponentSource'
                        srcDir: src${File.separator}myComponent${File.separator}myComponentSource
    
                Binaries
                    $binaryType 'myComponent:myBinary'
                        build using task: :myComponentMyBinary
                        source sets:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/MultiInputStreamTest.java

        List<ByteSource> sources = Lists.newArrayList();
        int start = 0;
        for (Integer span : spans) {
          sources.add(newByteSource(start, span));
          start += span;
        }
        ByteSource joined = ByteSource.concat(sources);
        assertTrue(newByteSource(0, start).contentEquals(joined));
      }
    
      public void testReadSingleByte() throws Exception {
        ByteSource source = newByteSource(0, 10);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.6K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

         * }
         * </pre>
         *
         * @param source The source of the artifact.
         * @param config An action to configure the values of the constructed {@link MavenArtifact}.
         */
        MavenArtifact artifact(Object source, Action<? super MavenArtifact> config);
    
        /**
         * Clears any previously added artifacts from {@link #getArtifacts} and creates artifacts from the specified sources.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/SimpleGeneratedJavaClassCompiler.java

            TreeFormatter formatter = new TreeFormatter();
            formatter.node("Unable to compile generated sources");
            formatter.startChildren();
            for (Diagnostic<? extends JavaFileObject> d : diagnostics) {
                JavaFileObject source = d.getSource();
                String srcFile = source == null ? "unknown" : new File(source.toUri()).getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top