Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 461 for pathsOf (0.15 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputs.kt

                    }
                }
            }
        }
    
        private
        fun maybeCreateJointRegexForPatterns(paths: String?, isCaseSensitive: Boolean) =
            if (paths.isNullOrEmpty()) {
                null
            } else {
                paths.split(PATHS_SEPARATOR).joinToString("|") {
                    wildcardsToRegexPatternString(normalizeFilePattern(it))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            delegate.projectDir
    
        override fun files(vararg paths: Any?): ConfigurableFileCollection =
            delegate.files(*paths)
    
        override fun files(paths: Any, configureClosure: Closure<*>): ConfigurableFileCollection =
            delegate.files(paths, configureClosure)
    
        override fun files(paths: Any, configureAction: Action<in ConfigurableFileCollection>): ConfigurableFileCollection =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. src/cmd/doc/main.go

    		}
    	}
    }
    
    // failMessage creates a nicely formatted error message when there is no result to show.
    func failMessage(paths []string, symbol, method string) error {
    	var b bytes.Buffer
    	if len(paths) > 1 {
    		b.WriteString("s")
    	}
    	b.WriteString(" ")
    	for i, path := range paths {
    		if i > 0 {
    			b.WriteString(", ")
    		}
    		b.WriteString(path)
    	}
    	if method == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ManifestUtil.java

            List<String> paths = new ArrayList<String>(classpath.size());
            for (File file : classpath) {
                String path = constructRelativeClasspathUri(jarFile, file);
                paths.add(path);
            }
    
            return CollectionUtils.join(" ", paths);
        }
    
        private static String constructRelativeClasspathUri(File jarFile, File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemLocationProperty.java

         * that owns this property instance.
         */
        void set(@Nullable File file);
    
        /**
         * Sets the location of this file, using a {@link File} instance. {@link File} instances with relative paths are resolved relative to the project directory of the project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 12:28:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    // or at least push it in the golang.org/x/telemetry package
    var Default Dir
    
    // A Dir holds paths to telemetry data inside a directory.
    type Dir struct {
    	dir, local, upload, debug, modefile string
    }
    
    // NewDir creates a new Dir encapsulating paths in the given dir.
    //
    // NewDir does not create any new directories or files--it merely encapsulates
    // the telemetry directory layout.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/os/path_windows_test.go

    	// function might not be tested at all if/when all test builders support long paths.
    	cwd, err := os.Getwd()
    	if err != nil {
    		t.Fatal("cannot get cwd")
    	}
    	drive := strings.ToLower(filepath.VolumeName(cwd))
    	cwd = strings.ToLower(cwd[len(drive)+1:])
    	// Build a very long pathname. Paths in Go are supposed to be arbitrarily long,
    	// so let's make a long path which is comfortably bigger than MAX_PATH on Windows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/problems/Location.java

         */
        public DisplayName getSourceLongDisplayName() {
            return sourceLongDisplayName;
        }
    
        /**
         * Returns a short display name for the source file containing this location. The short description may use relative paths.
         */
        public DisplayName getSourceShortDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:02:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * @param dependencyCoordinate coordinate of the dependency for which to get the paths
         * @param scope build path scope (main compile, test compile, etc.) of desired paths
         * @param desiredTypes the type of paths to include in the result
         * @return paths to the transitive dependencies of the given project
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. pom.xml

    							</mapper>
    						</data>
    						<data>
    							<type>files</type>
    							<paths>
    								<path>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess/FessBoot.class</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess/FessBoot$FessBootPropsTranslator.class</path>
    							</paths>
    							<dst>${packaging.fess.lib.dir}/classes/org/codelibs/fess/</dst>
    							<mapper>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
Back to top