Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for sourcesPath (0.18 sec)

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

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

     *       minusConfigurations &lt;&lt; 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. guava-gwt/pom.xml

              </sourceFileExcludes>
              <!-- The above exclusion doesn't actually matter unless I prevent Javadoc from autodiscovering the source in the sourcepath, which defaults to the source directory :\ Boo for -sourcepath. -->
              <sourcepath>doesnotexist</sourcepath>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * The path/filename is relative to the -sourcepath.
         * <p>
         * While you can use any name you want for filename and place it anywhere you want for path,
         * a typical thing to do is to name it overview.html and place it in the source tree at the directory that contains the topmost package directories.
         * In this location, no path is needed when documenting packages, since -sourcepath will point to this file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    		NumLabelUnits: numLabelUnits,
    
    		SampleValue:       value,
    		SampleMeanDivisor: meanDiv,
    		SampleType:        stype,
    		SampleUnit:        sample.Unit,
    
    		OutputUnit: cfg.Unit,
    
    		SourcePath: cfg.SourcePath,
    		TrimPath:   cfg.TrimPath,
    
    		IntelSyntax: cfg.IntelSyntax,
    	}
    
    	if len(p.Mapping) > 0 && p.Mapping[0].File != "" {
    		ropt.Title = filepath.Base(p.Mapping[0].File)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

            this.sourcePaths.from(sourcePaths);
            return this;
        }
    
        @Override
        public CopySpec from(Object sourcePath, Closure c) {
            return from(sourcePath, new ClosureBackedAction<>(c));
        }
    
        @Override
        public CopySpec from(Object sourcePath, Action<? super CopySpec> configureAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top