Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 316 for Dirs (0.1 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReportBase.java

         *
         * @param dirs one or more directories containing classes to report coverage of
         */
        public void additionalClassDirs(File... dirs) {
            additionalClassDirs(getProject().files(Arrays.asList(dirs)));
        }
    
        /**
         * Adds additional class directories to those that will be included in the report.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/FlatDirectoryArtifactRepository.java

         *
         * @param dirs the directories.
         */
        void dirs(Object... dirs);
    
        /**
         * Sets the directories where this repository will look for artifacts.
         *
         * @param dirs the directories.
         * @since 4.0
         */
        void setDirs(Set<File> dirs);
    
        /**
         * Sets the directories where this repository will look for artifacts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/customDirs/kotlin/build.gradle.kts

    }
    
    dependencies {
        testImplementation("junit:junit:4.13")
    }
    
    // tag::custom-src-dirs[]
    sourceSets {
        main {
            java {
                setSrcDirs(listOf("src"))
            }
        }
    
        test {
            java {
                setSrcDirs(listOf("test"))
            }
        }
    }
    // end::custom-src-dirs[]
    
    // tag::custom-extra-src-dir[]
    sourceSets {
        main {
            java {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/customDirs/groovy/build.gradle

    }
    
    dependencies {
        testImplementation 'junit:junit:4.13'
    }
    
    // tag::custom-src-dirs[]
    sourceSets {
        main {
             java {
                srcDirs = ['src']
             }
        }
    
        test {
            java {
                srcDirs = ['test']
            }
        }
    }
    // end::custom-src-dirs[]
    
    // tag::custom-extra-src-dir[]
    sourceSets {
        main {
            java {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultFlatDirArtifactRepositoryTest.groovy

        }
    
        def "repositories have the same id when base dirs and other configuration is the same"() {
            def repo = newRepo()
            def same = newRepo()
            def different = newRepo()
    
            given:
            repo.dirs('a', 'b')
            same.dirs('a', 'b')
            different.dirs('a')
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/io/fs/sub_test.go

    			t.Errorf(`ReadFile(%s, "goodbye.txt" = %q, %v, want %q, nil`, desc, string(data), err, "goodbye, world")
    		}
    
    		dirs, err := ReadDir(sub, ".")
    		if err != nil || len(dirs) != 1 || dirs[0].Name() != "goodbye.txt" {
    			var names []string
    			for _, d := range dirs {
    				names = append(names, d.Name())
    			}
    			t.Errorf(`ReadDir(%s, ".") = %v, %v, want %v, nil`, desc, names, err, []string{"goodbye.txt"})
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSetOutput.java

            this.dirs.from(dir);
            this.outputDirectories.from(dir);
    
            Object builtBy = options.get("builtBy");
            if (builtBy != null) {
                this.builtBy(builtBy);
                this.dirs.builtBy(builtBy);
            }
        }
    
        @Override
        public FileCollection getDirs() {
            return dirs;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSetOutput.java

     * <p>
     * Provides output information of the source set. Allows configuring the default output dirs and specify additional output dirs.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     * }
     *
     * sourceSets {
     *   main {
     *     //if you truly want to override the defaults:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/api/file/FileVisitorUtil.groovy

            Set files = [] as Set
            Set dirs = [] as Set
            FileVisitor visitor = [
                    visitFile: {FileVisitDetails details ->
                        if (details.relativePath.parent.parent) {
                            assertThat(dirs, hasItem(details.relativePath.parent.pathString))
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 14:26:33 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. src/crypto/x509/root_unix_test.go

    		name    string
    		fileEnv string
    		dirEnv  string
    		files   []string
    		dirs    []string
    		cns     []string
    	}{
    		{
    			// Environment variables override the default locations preventing fall through.
    			name:    "override-defaults",
    			fileEnv: testMissing,
    			dirEnv:  testMissing,
    			files:   []string{testFile},
    			dirs:    []string{testDir},
    			cns:     nil,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top