Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 336 for OperatingSystem (0.32 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/AbstractWritableResultsStore.groovy

                            String testName = experimentTimes.getString(++resultIdx)
                            String testProject = experimentTimes.getString(++resultIdx)
                            OperatingSystem os = OperatingSystem.valueOf(experimentTimes.getString(++resultIdx))
                            long avgDuration = experimentTimes.getLong(++resultIdx)
                            if (testProject != null && testClass != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftLibraryPluginTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.language.swift.plugins
    
    import org.gradle.api.ProjectConfigurationException
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.language.swift.SwiftLibrary
    import org.gradle.language.swift.SwiftSharedLibrary
    import org.gradle.language.swift.SwiftStaticLibrary
    import org.gradle.language.swift.tasks.SwiftCompile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/internal/services/ToolchainsJvmServices.java

            @Provides
            protected DefaultBuildPlatform createBuildPlatform(ObjectFactory objectFactory, SystemInfo systemInfo, OperatingSystem operatingSystem) {
                return objectFactory.newInstance(DefaultBuildPlatform.class, systemInfo, operatingSystem);
            }
    
            @Provides
            protected DefaultJavaToolchainResolverRegistry createJavaToolchainResolverRegistry(
                Gradle gradle,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            when:
            buildFile << """
    model {
        platforms {
            osx {
                operatingSystem "osx"
                architecture "x86"
            }
            windows {
                operatingSystem "windows"
                architecture "x86"
            }
            linux {
                operatingSystem "linux"
                architecture "x86"
            }
        }
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ResultsStoreHelper.java

            if (channelWithoutPrefix.startsWith(OperatingSystem.MAC_OS.getChannelSuffix())) {
                return OperatingSystem.MAC_OS;
            } else if (channelWithoutPrefix.startsWith(OperatingSystem.WINDOWS.getChannelSuffix())) {
                return OperatingSystem.WINDOWS;
            } else {
                return OperatingSystem.LINUX;
            }
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            binDir.createFile(OperatingSystem.LINUX.getExecutableName("java"))
    
            // Make it look like a macOS installation
            def macOsJdkHomeBinDir = jdkHome.createDir("Contents/Home/bin")
            macOsJdkHomeBinDir.createFile(OperatingSystem.LINUX.getExecutableName("java"))
    
            when:
            def registry = createRegistry([jdkHome], OperatingSystem.LINUX)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinkerTest.groovy

            1 * queue.add(invocation)
            1 * queue.setLogLocation(LOG_LOCATION)
            0 * _
    
            where:
            operatingSystem << [OperatingSystem.WINDOWS, OperatingSystem.MAC_OS, OperatingSystem.LINUX]
        }
    
        def "links all object files in a single execution"() {
            given:
            def testDir = tmpDirProvider.testDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/services/NativeServicesTest.groovy

        }
    
        def "makes a ProcessEnvironment available"() {
            expect:
            services.get(ProcessEnvironment) != null
        }
    
        def "makes an OperatingSystem available"() {
            expect:
            services.get(OperatingSystem) != null
        }
    
        def "makes a FileSystem available"() {
            expect:
            services.get(FileSystem) != null
            services.get(Chmod) != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 01:29:49 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftMixedLanguageIntegrationTest.groovy

                """
            }
    
            executer.beforeExecute({
                usingInitScript(initScript)
            })
        }
    
        NativeInstallationFixture installation(Object installDir, OperatingSystem os = OperatingSystem.current()) {
            return new NativeInstallationFixture(file(installDir), os)
        }
    
        ExecutableFixture executable(Object path) {
            return swiftToolChain.executable(file(path))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/FileSystemServices.java

        @Provides
        FileSystem createFileSystem(
            GenericFileSystem.Factory genericFileSystemFactory,
            OperatingSystem operatingSystem,
            PosixFiles posixFiles,
            FileMetadataAccessor metadataAccessor,
            TemporaryFileProvider temporaryFileProvider
        ) {
            if (operatingSystem.isWindows()) {
                final Symlink symlink = createWindowsJdkSymlink();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top