Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 273 for srcDir (0.16 sec)

  1. testing/internal-integ-testing/build.gradle.kts

        packageName = "org.gradle.integtests.fixtures"
        destDir = layout.buildDirectory.dir("generated/sources/language-annotations/groovy/main")
    }
    
    sourceSets.main {
        groovy.srcDir(generateLanguageAnnotations.flatMap { it.destDir })
        output.dir(prepareVersionsInfo.map { it.destFile.get().asFile.parentFile })
        output.dir(copyTestedVersionsInfo)
    }
    
    @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/security_test.go

    	{"libcgosotest.dylib"},
    	{"-F", "framework"},
    	{"-l", "."},
    	{"-l", "/etc/passwd"},
    	{"-l", "世界"},
    	{"-L", "framework"},
    	{"-framework", "Chocolate"},
    	{"-v"},
    	{"-Wl,-sectcreate,__TEXT,__info_plist,${SRCDIR}/Info.plist"},
    	{"-Wl,-framework", "-Wl,Chocolate"},
    	{"-Wl,-framework,Chocolate"},
    	{"-Wl,-unresolved-symbols=ignore-all"},
    	{"-Wl,-z,relro"},
    	{"-Wl,-z,relro,-z,now"},
    	{"-Wl,-z,now"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/plugins/GroovyBasePlugin.java

                GroovySourceDirectorySet groovySource = getGroovySourceDirectorySet(sourceSet);
                sourceSet.getExtensions().add(GroovySourceDirectorySet.class, "groovy", groovySource);
                groovySource.srcDir("src/" + sourceSet.getName() + "/groovy");
    
                // Explicitly capture only a FileCollection in the lambda below for compatibility with configuration-cache.
                final FileCollection groovySourceFiles = groovySource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

            }
    
            //when
            runIdeaTask '''
    apply plugin: 'java'
    apply plugin: 'idea'
    
    sourceSets {
       main {
          resources {
             srcDir 'src/main/java'
          }
       }
       test {
          resources {
             srcDir 'src/test/java'
          }
       }
    }
    '''
    
            //then
            def iml = parseImlFile('root')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

                return project.getLayout().getBuildDirectory().dir(classesDirName).get().getAsFile();
            });
    
            sourceSet.getJava().srcDir("src/" + sourceSet.getName() + "/java");
            sourceSet.getResources().srcDir("src/" + sourceSet.getName() + "/resources");
        }
    
        private void defineConfigurationsForSourceSet(SourceSet sourceSet, RoleBasedConfigurationContainerInternal configurations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeatureCompilationIntegrationTest.groovy

            """
            given:
            buildFile << """
                apply plugin: 'java-library'
    
                sourceSets {
                    myFeature {
                        java {
                            srcDir "src/myFeature/java"
                        }
                    }
                }
    
                java {
                    registerFeature("myFeature") {
                        usingSourceSet(sourceSets.myFeature)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/EarPlugin.java

                    final JvmSoftwareComponentInternal component = JavaPluginHelper.getJavaComponent(project);
                    component.getMainFeature().getSourceSet().getResources().srcDir(task.getAppDirectory());
                });
            });
    
            DeploymentDescriptor deploymentDescriptor =  DeprecationLogger.whileDisabled(() -> convention.getDeploymentDescriptor());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:57:15 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingIntegrationTest.groovy

            buildFile << """
                dependencies {
                    compileOnly project(":annotation")
                    annotationProcessor project(":processor")
                }
                sourceSets.main.java.srcDir("build/generated/sources/annotationProcessor/java/main")
            """
    
            expect:
            succeeds "compileJava"
    
            when:
            file('src/main/java/TestApp.java').text = '''
                @Helper
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/scan.go

    type rawImport struct {
    	path     string
    	position token.Position
    }
    
    type embed struct {
    	pattern  string
    	position token.Position
    }
    
    // importRaw fills the rawPackage from the package files in srcDir.
    // dir is the package's path relative to the modroot.
    func importRaw(modroot, reldir string) *rawPackage {
    	p := &rawPackage{
    		dir: reldir,
    	}
    
    	absdir := filepath.Join(modroot, reldir)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

                    languageSourceSet.getSource().srcDir(defaultSourceDir);
                }
            }
    
            @Finalize
            public void defineBinariesCheckTasks(@Each BinarySpecInternal binary, NamedEntityInstantiator<Task> taskInstantiator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
Back to top