Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 487 for absolutePaths (0.22 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

            when:
            run "run", "-PinputFile=${inputFile.absolutePath}", "-PoutputFile=${outputFile.absolutePath}"
            then:
            executedAndNotSkipped ":run"
    
            when:
            def secondInputFile = file("second-input.txt")
            secondInputFile.text = inputFile.text
            run "run", "-PinputFile=${secondInputFile.absolutePath}", "-PoutputFile=${outputFile.absolutePath}"
            then:
            outputFile.text == "first"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MissingFileSnapshot.java

        public MissingFileSnapshot(String absolutePath, String name, AccessType accessType) {
            super(absolutePath, name, accessType);
        }
    
        public MissingFileSnapshot(String absolutePath, AccessType accessType) {
            this(absolutePath, PathUtil.getFileName(absolutePath), accessType);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            then:
            executedAndNotSkipped(":compileJava")
            outputContains("Compiling with toolchain '${jdk.javaHome.absolutePath}'")
            outputContains("Compiling with Java command line compiler '${jdk.javaExecutable.absolutePath}'")
            classJavaVersion(javaClassFile("Foo.class")) == jdk.javaVersion
    
            // Test up-to-date checks
            when:
            withInstallations(jdk, otherJdk).run(":compileJava")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherRegistry.java

                                public void handleChangeEvent(FileWatchEvent.ChangeType type, String absolutePath) {
                                    fileWatchingStatistics.eventReceived();
                                    fileWatcherUpdater.triggerWatchProbe(absolutePath);
                                    handler.handleChange(convertType(type), Paths.get(absolutePath));
                                }
    
                                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/OtoolBinaryInfo.groovy

            this.binaryFile = binaryFile
            this.environments = environments
        }
    
        ArchitectureInternal getArch() {
            def process = ['otool', '-hv', binaryFile.absolutePath].execute(environments, null)
            def lines = process.inputStream.readLines()
            def archString = lines.last().split()[1]
    
            switch (archString) {
                case "I386":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioSolutionFileTest.groovy

    """Microsoft Visual Studio Solution File, Format Version 11.00
    # Visual C++ Express 2010
    
    Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "project1", "${project1.file.absolutePath}", "${getUUID(project1.file)}"
    EndProject
    Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "project2", "${project2.file.absolutePath}", "${getUUID(project2.file)}"
    EndProject
    Global
    	GlobalSection(SolutionConfigurationPlatforms) = preSolution
    		config1|Win32 = config1|Win32
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/test/groovy/org/gradle/process/internal/worker/child/BootstrapSecurityManagerTest.groovy

            0 * cl._
            System.getProperty("java.class.path") == [entry1.absolutePath, entry2.absolutePath].join(File.pathSeparator)
    
            when:
            securityManager.checkPermission(new AllPermission())
    
            then:
            0 * cl._
            System.getProperty("java.class.path") == [entry1.absolutePath, entry2.absolutePath].join(File.pathSeparator)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

            then:
            foundSnapshot.type == FileType.Missing
            foundSnapshot.absolutePath == searchedPath.absolutePath
    
            where:
            vfsSpec << onlyDirectChildren(NO_COMMON_PREFIX)
        }
    
        def "querying the node for non-existent child #vfsSpec.searchedPath yields a missing file (#vfsSpec)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/ReadelfBinaryInfo.groovy

            def process = ['readelf', '-d', binaryFile.absolutePath].execute()
            def lines = process.inputStream.readLines()
            return lines
        }
    
        List<Symbol> listSymbols() {
            return NMToolFixture.of(environments).listSymbols(binaryFile);
        }
    
        @Override
        List<Symbol> listDebugSymbols() {
            def process = ['readelf', '-s', binaryFile.absolutePath].execute()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationIntegrationTest.groovy

            notifications.started(EvaluateSettingsBuildOperationType.Details, [settingsDir: file('buildSrc').absolutePath, settingsFile: file('buildSrc/settings.gradle').absolutePath, buildPath: ":buildSrc"])
            notifications.started(EvaluateSettingsBuildOperationType.Details, [settingsDir: file('a').absolutePath, settingsFile: file('a/settings.gradle').absolutePath, buildPath: ":a"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top