Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 316 for Dirs (0.14 sec)

  1. platforms/documentation/docs/src/snippets/toolingApi/idea/groovy/src/main/java/org/gradle/sample/Main.java

                        System.out.println("    source dirs:");
                        for (IdeaSourceDirectory dir: root.getSourceDirectories()) {
                            System.out.println("      " + dir);
                        }
    
                        System.out.println("    test dirs:");
                        for (IdeaSourceDirectory dir: root.getTestDirectories()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. common/config/.golangci-format.yml

        # it's a comma-separated list of prefixes
        local-prefixes: istio.io/
    issues:
      # Which dirs to exclude: issues from them won't be reported.
      # Can use regexp here: `generated.*`, regexp is applied on full path,
      # including the path prefix if one is set.
      # Default dirs are skipped independently of this option's value (see exclude-dirs-use-default).
      # "/" will be replaced by current OS file path separator to properly work on Windows.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 03:02:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. hack/boilerplate/boilerplate.py

                # the size of the file list
                for dname in skipped_names:
                    if dname in dirs:
                        dirs.remove(dname)
                for dname in dirs:
                    # dirs that start with __ are ignored
                    if dname.startswith("__"):
                        dirs.remove(dname)
    
                for name in walkfiles:
                    pathname = os.path.join(root, name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/flag_test.go

    			{path: "net", cmdline: false, flags: []string{"-S"}},
    			{path: "net/http", flags: []string{"-S"}},
    			{path: "math", flags: []string{}},
    		},
    	},
    
    	// relative path patterns
    	// ppfDirTest(pattern, n, dirs...) says the first n dirs should match and the others should not.
    	ppfDirTest(".", 1, "/my/test/dir", "/my/test", "/my/test/other", "/my/test/dir/sub"),
    	ppfDirTest("..", 1, "/my/test", "/my/test/dir", "/my/test/other", "/my/test/dir/sub"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:04:04 UTC 2017
    - 3.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskOutputsTest.groovy

            outputs.fileProperties*.outputFile == [file("a"), file("b")]
            outputs.fileProperties*.outputType == [type, type]
            where:
            name    | type
            "files" | FILE
            "dirs"  | DIRECTORY
        }
    
        def "can register future named output #name"() {
            when:
            outputs."$name"({ [one: "a", two: "b"] })
            then:
            outputs.files.files == files('a', 'b')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:24 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

            List<File> dirs = listDirs(distDir);
            if (dirs.isEmpty()) {
                return InstallCheck.failure(format("Gradle distribution '%s' does not contain any directories. Expected to find exactly 1 directory.", distributionDescription));
            }
            if (dirs.size() != 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultSourceDirectorySet.java

        }
    
        @Override
        public FileCollection getSourceDirectories() {
            return dirs;
        }
    
        @Override
        public Set<File> getSrcDirs() {
            Set<File> dirs = new LinkedHashSet<>();
            for (DirectoryTree tree : getSrcDirTrees()) {
                dirs.add(tree.getDir());
            }
            return dirs;
        }
    
        @Override
        public Set<String> getIncludes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 29 02:23:21 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/import.go

    			for i := 0; i < len(mods)/2; i++ {
    				j := len(mods) - 1 - i
    				mods[i], mods[j] = mods[j], mods[i]
    				roots[i], roots[j] = roots[j], roots[i]
    				dirs[i], dirs[j] = dirs[j], dirs[i]
    			}
    			return module.Version{}, "", "", nil, &AmbiguousImportError{importPath: path, Dirs: dirs, Modules: mods}
    		}
    
    		if len(sumErrMods) > 0 {
    			for i := 0; i < len(sumErrMods)/2; i++ {
    				j := len(sumErrMods) - 1 - i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. src/crypto/x509/root_unix.go

    			firstErr = err
    		}
    	}
    
    	dirs := certDirectories
    	if d := os.Getenv(certDirEnv); d != "" {
    		// OpenSSL and BoringSSL both use ":" as the SSL_CERT_DIR separator.
    		// See:
    		//  * https://golang.org/issue/35325
    		//  * https://www.openssl.org/docs/man1.0.2/man1/c_rehash.html
    		dirs = strings.Split(d, ":")
    	}
    
    	for _, directory := range dirs {
    		fis, err := readUniqueDirectoryEntries(directory)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:07 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/TestReport.java

        private void addTo(Object result, ConfigurableFileCollection dirs) {
            if (result instanceof Test) {
                Test test = (Test) result;
                dirs.from(test.getBinaryResultsDirectory());
            } else if (result instanceof Iterable<?>) {
                Iterable<?> iterable = (Iterable<?>) result;
                for (Object nested : iterable) {
                    addTo(nested, dirs);
                }
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top