Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 126 for sourcePath (0.22 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

     *       minusConfigurations << configurations.anotherConfiguration
     *
     *       //you can add a wb-resource elements; mandatory keys: 'sourcePath', 'deployPath':
     *       //if sourcePath points to non-existing folder it will *not* be added.
     *       resource sourcePath: 'extra/resource', deployPath: 'deployment/resource'
     *
     *       //you can add a wb-property elements; mandatory keys: 'name', 'value':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

        @InputFiles
        public FileCollection getSourcepath() {
            return sourcepath;
        }
    
        /**
         * Sets the source path to use for the compilation.
         *
         * @param sourcepath the source path
         */
        public void setSourcepath(@Nullable FileCollection sourcepath) {
            this.sourcepath = sourcepath;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/VariableTest.groovy

    import spock.lang.Specification
    
    
    class VariableTest extends Specification {
        final static String XML_TEXT_TEMPLATE = '''
                    <classpathentry exported="true" kind="var" path="/GRADLE_CACHE/ant.jar" sourcepath="/GRADLE_CACHE/ant-src.jar">
                        <attributes>
                            <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptModelRepositoryTest.kt

        fun newModelResponse(): KotlinBuildScriptModel = StandardKotlinBuildScriptModel()
    
        data class StandardKotlinBuildScriptModel(
            private val classPath: List<File> = emptyList(),
            private val sourcePath: List<File> = emptyList(),
            private val implicitImports: List<String> = emptyList(),
            private val editorReports: List<EditorReport> = emptyList(),
            private val exceptions: List<String> = emptyList(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    }
    
    // resetTransient sets all transient fields in *cfg to their currently
    // configured values.
    func (cfg *config) resetTransient() {
    	current := currentConfig()
    	cfg.Output = current.Output
    	cfg.SourcePath = current.SourcePath
    	cfg.TrimPath = current.TrimPath
    	cfg.DivideBy = current.DivideBy
    	cfg.SampleIndex = current.SampleIndex
    }
    
    // applyURL updates *cfg based on params.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

              apply plugin: 'eclipse-wtp'
    
              sourceSets.main.java.srcDirs 'yyySource', 'xxxSource'
    
              eclipse.wtp.component {
                resource sourcePath: 'xxxResource', deployPath: 'deploy-xxx'
                resource sourcePath: 'yyyResource', deployPath: 'deploy-yyy'
              }
    """
            //then
            def component = getComponentFile().text
    
            assert component.contains('xxxSource')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinSettingsScriptModelCrossVersionSpec.groovy

        }
    
        @TargetGradleVersion(">=5.4 <7.5")
        @LeaksFileHandles("Kotlin compiler daemon on buildSrc jar")
        @Flaky(because = "https://github.com/gradle/gradle-private/issues/3708")
        def "sourcePath includes buildSrc source roots"() {
    
            given:
            withKotlinBuildSrc()
            def settings = withDefaultSettings().append("""
                include(":sub")
            """)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/tasks/AbstractCopyTask.java

        @Override
        public AbstractCopyTask from(Object sourcePath, Closure c) {
            getMainSpec().from(sourcePath, new ClosureBackedAction<>(c));
            return this;
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public AbstractCopyTask from(Object sourcePath, Action<? super CopySpec> configureAction) {
            getMainSpec().from(sourcePath, configureAction);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Library.java

        public Library(Node node, FileReferenceFactory fileReferenceFactory) {
            super(node, fileReferenceFactory);
            setSourcePath(fileReferenceFactory.fromPath((String) node.attribute("sourcepath")));
        }
    
        public Library(FileReference library) {
            super(library);
        }
    
        @Override
        public String getKind() {
            return "lib";
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/AbstractTestFrameworkOptionsIntegrationTest.groovy

                    id 'java'
                }
    
                ${mavenCentralRepository()}
    
                check.dependsOn testing.suites
            """
        }
    
        abstract void writeSources(TestFile sourcePath)
    
        void assertTestsWereExecutedAndExcluded() {
            DefaultTestExecutionResult result = new DefaultTestExecutionResult(testDirectory)
            result.assertTestClassesExecuted("com.example.IncludedTest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top