Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,080 for folder1 (0.21 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseLinkedResource.java

         * <p>
         * For example, a linked resource to a file system folder /some/path/to/someFolder can have a name 'someFolder'
         *
         * @return name
         */
        String getName();
    
        /**
         * The resource type.
         * <p>
         * If 'location' property is used the values are: "1" for a file, or "2" for a folder.
         * <p>
         * If 'locationUri' property is used then the values are:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/EclipsePluginTest.groovy

            then:
            def folders = project.eclipseClasspath.classpath.classFolders
            folders == [project.file('generated-folder'), project.file('ws-generated'), project.file('generated-test'), project.file('test-resources'), project.file('../some/external/dir')]
        }
    
        def "configures internal class folders for custom source sets"() {
            when:
            eclipsePlugin.apply(project)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/ClassFoldersCreator.java

            }
    
            FileReferenceFactory fileReferenceFactory = classpath.getFileReferenceFactory();
            return classpath.getClassFolders().stream()
                .map(folder -> {
                    Library library = new Library(fileReferenceFactory.fromFile(folder));
                    library.setExported(true);
                    return library;
                }).collect(toImmutableList());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. cmd/data-scanner.go

    				into.addChild(h)
    				// We scanned a folder, optionally send update.
    				f.updateCache.deleteRecursive(h)
    				f.updateCache.copyWithChildren(&f.newCache, h, folder.parent)
    				f.sendUpdate()
    			}
    		}
    
    		// Transfer existing
    		if !into.Compacted {
    			for _, folder := range existingFolders {
    				h := hashPath(folder.name)
    				f.updateCache.copyWithChildren(&f.oldCache, h, folder.parent)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilter.java

     * whether it is an include/exclude filter that applies to files, folders,
     * or both.  The following example excludes the 'node_modules' folder.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     *     id 'eclipse'
     * }
     *
     * eclipse {
     *   project {
     *     resourceFilter {
     *       appliesTo = 'FOLDERS'
     *       type = 'EXCLUDE_ALL'
     *       matcher {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    * The latest https://gradle.org/install[Gradle distribution]
    ${toolChain.raw}
    
    == Create a project folder
    
    Gradle comes with a built-in task, called `init`, that initializes a new Gradle project in an empty folder.
    The `init` task uses the (also built-in) `wrapper` task to create a Gradle wrapper script, `gradlew`.
    
    The first step is to create a folder for the new project and change directory into it.
    
    [listing.terminal.sample-command]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreator.java

            SourceFolder folder = new SourceFolder(relativePath, null);
            folder.setDir(dir);
            folder.setName(dir.getName());
            folder.setIncludes(getIncludesForTree(sourceSet, tree));
            folder.setExcludes(getExcludesForTree(sourceSet, tree));
            folder.setOutput(sourceSetOutputPaths.get(sourceSet));
            addScopeAttributes(folder, sourceSet, sourceSetUsages);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/commons/src/main/groovy/com.example.jacoco.gradle

            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.DOCUMENTATION))
            attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named(DocsType, 'source-folders'))
        }
        sourceSets.main.java.srcDirs.forEach { outgoing.artifact(it) }
    }
    
    // Share the coverage data to be aggregated for the whole product
    configurations.create('coverageDataElements') {
        visible = false
        canBeResolved = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/jvm/ModularitySpec.java

     * <p>
     * Wherever a classpath (a list of files and folders) is configured in Gradle, it can be accompanied by a ModularClasspathHandling object
     * to describe how the entries of that list are to be passed to the --classpath and --module-path parameters.
     *
     * @since 6.4
     */
    public interface ModularitySpec {
    
        /**
         * Should a --module-path be inferred by analysing JARs and class folders on the classpath?
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 11:38:01 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  10. cmd/data-usage_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if got.root() == nil {
    		t.Log("cached folders:")
    		for folder := range got.Cache {
    			t.Log("folder:", folder)
    		}
    		t.Fatal("got nil root.")
    	}
    
    	// Test dirs
    	want := []struct {
    		path       string
    		isNil      bool
    		size, objs int
    		oSizes     sizeHistogram
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top