Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for separatorsToUnix (0.23 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/PathUtil.java

    package org.gradle.plugins.ide.eclipse.model.internal;
    
    import org.apache.commons.io.FilenameUtils;
    
    public class PathUtil {
        public static String normalizePath(String path) {
            return FilenameUtils.separatorsToUnix(path);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 857 bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidStudioPerformanceTest.groovy

            assert System.getenv("ANDROID_SDK_ROOT") != null
            String androidSdkRootPath = System.getenv("ANDROID_SDK_ROOT")
            runner.addBuildMutator { invocation -> new LocalPropertiesMutator(invocation, FilenameUtils.separatorsToUnix(androidSdkRootPath)) }
        }
    
        static class LocalPropertiesMutator implements BuildMutator {
            private final String androidSdkRootPath
            private final InvocationSettings invocation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

            then:
            final exeProject = projectFile("exe/exe_mainExe.vcxproj")
            exeProject.projectConfigurations.values().each {
                assert it.buildCommand == "\"${FilenameUtils.separatorsToUnix(executer.distribution.gradleHomeDir.file('bin/gradle').absolutePath)}\" -p \"..\" :exe:installMain${it.name.capitalize()}Executable"
            }
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
Back to top