Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 91 for sourcesPath (0.25 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/CopySpecWrapper.java

            return this;
        }
    
        @Override
        public CopySpec from(Object sourcePath, final Closure c) {
            return delegate.from(sourcePath, new ClosureBackedAction<>(c));
        }
    
        @Override
        public CopySpec from(Object sourcePath, Action<? super CopySpec> configureAction) {
            return delegate.from(sourcePath, configureAction);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/ConfigurationCacheInstrumentationProcessorTest.groovy

                    setLocation(StandardLocation.SOURCE_PATH, [srcDir])
                    setLocation(StandardLocation.SOURCE_OUTPUT, [outDir])
                    setLocation(StandardLocation.CLASS_OUTPUT, [classesDir])
                }
                Iterable<? extends JavaFileObject> compilationUnits = classes.collect {
                    fileManager.getJavaFileForInput(StandardLocation.SOURCE_PATH, it, JavaFileObject.Kind.SOURCE)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	if len(functionNodes) == 0 {
    		return fmt.Errorf("no matches found for regexp: %s", o.Symbol)
    	}
    
    	sourcePath := o.SourcePath
    	if sourcePath == "" {
    		wd, err := os.Getwd()
    		if err != nil {
    			return fmt.Errorf("could not stat current dir: %v", err)
    		}
    		sourcePath = wd
    	}
    	reader := newSourceReader(sourcePath, o.TrimPath)
    
    	fmt.Fprintf(w, "Total: %s\n", rpt.formatValue(rpt.total))
    	for _, fn := range functions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseWtpComponent.xml

                    <td><literal>eclipse.project.name</literal></td>
                </tr>
                <tr>
                    <td>resources</td>
                    <td><literal>[deployPath: '/', sourcePath: project.webAppDirName]</literal></td>
                    <td><literal>[]</literal></td>
                </tr>
                <tr>
                    <td>properties</td>
                    <td><literal>[]</literal></td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. 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)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/WbResourceTest.groovy

            then:
            new WbResource(rootNode.'wb-resource'[0]) == createWbResource()
        }
    
        def equality() {
            WbResource wbResource = createWbResource()
            wbResource.sourcePath += 'x'
    
            expect:
            wbResource != createWbResource()
        }
    
        private WbResource createWbResource() {
            return new WbResource("/", "src/main/webapp")
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top