Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 92 for isPath (0.11 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

                    args.add("-sourcepath");
                    args.add("");
                }
                return;
            }
    
            args.add("-sourcepath");
            args.add(GUtil.asPath(sourcepath));
        }
    
        private void addUserProvidedArgs(List<String> compilerArgs) {
            if (!includeMainOptions) {
                return;
            }
            if (compilerArgs != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

        public Iterator<File> iterator() {
            return getFiles().iterator();
        }
    
        @Override
        public String getAsPath() {
            showGetAsPathDeprecationWarning();
            return GUtil.asPath(this);
        }
    
        private void showGetAsPathDeprecationWarning() {
            List<String> filesAsPaths = this.getFiles().stream()
                .map(File::getPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    // function if it proves to matter.
    func trimPath(path, trimPath, searchPath string) string {
    	// Keep path variable intact as it's used below to form the return value.
    	sPath, searchPath := filepath.ToSlash(path), filepath.ToSlash(searchPath)
    	if trimPath == "" {
    		// If the trim path is not configured, try to guess it heuristically:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

                        ["-DtestRuntimeClasspath=\${filteredTestClasspath.asPath}".toString()]
                    }
                }
            """.stripIndent()
    
            when:
            executer.withTasks('build').run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

        }
    
        @Override
        TestFile getVariantSourceFile(String module, VariantContext variantContext) {
            def executable = executable("build/exe/main/${variantContext.asPath}${module}")
            return variantContext.buildType.name == 'release' ? executable.strippedRuntimeFile : executable.file
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            buildFile """
                def files = files('${escapeString(path)}')
                tasks.register("getAsPath") {
                    doLast {
                        println files.asPath
                    }
                }
            """
    
            when:
            runAndFail "getAsPath"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

                        this.ecjClasspath = ecjClasspath
                    }
    
                    @Override
                    List<String> asArguments() {
                        return ["-cp", ecjClasspath.asPath, "org.eclipse.jdt.internal.compiler.batch.Main"]
                     }
                }
    
                compileJava {
                    def customJavaLauncher = javaToolchains.launcherFor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

        }
    
        public static List<Object> flatten(Collection<Object> elements) {
            return flatten(elements, new ArrayList<Object>());
        }
    
        public static String asPath(Iterable<?> collection) {
            return CollectionUtils.join(File.pathSeparator, collection);
        }
    
        public static List<String> prefix(String prefix, Collection<String> strings) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    include::sample[dir="snippets/ant/useExternalAntTaskWithConfig/groovy",files="build.gradle[tags=define-classpath]"]
    ====
    
    To use the classpath configuration, use the `asPath` property of the custom configuration:
    
    ====
    include::sample[dir="snippets/ant/useExternalAntTaskWithConfig/kotlin",files="build.gradle.kts[tags=use-classpath]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

        }
    
        public static List<Object> flatten(Collection<Object> elements) {
            return flatten(elements, new ArrayList<Object>());
        }
    
        public static String asPath(Iterable<?> collection) {
            return CollectionUtils.join(File.pathSeparator, collection);
        }
    
        public static List<String> prefix(String prefix, Collection<String> strings) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top