Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for macosx (0.19 sec)

  1. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

        testCoverage: TestCoverage,
        subprojectName: String
    ): Boolean {
        return if (testCoverage.os == Os.MACOS && testCoverage.arch == Arch.AMD64) {
            subprojectName.contains("native") ||
                // Include precondition-tester here so we understand that tests do run on macOS intel as well
                subprojectName in listOf("file-watching", "snapshots", "workers", "logging", "precondition-tester")
        } else {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Feb 15 17:04:41 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

    object AdHocPerformanceScenarioWindows : AdHocPerformanceScenario(Os.WINDOWS)
    object AdHocPerformanceScenarioMacOS : AdHocPerformanceScenario(Os.MACOS, Arch.AMD64)
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Feb 13 13:53:39 GMT 2024
    - 4.9K bytes
    - Viewed (2)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt

                dependencies {
                    val extension = when {
                        BuildEnvironment.isWindows -> "windows.zip"
                        BuildEnvironment.isMacOsX && BuildEnvironment.isIntel -> "mac.zip"
                        BuildEnvironment.isMacOsX && !BuildEnvironment.isIntel -> "mac_arm.zip"
                        BuildEnvironment.isLinux -> "linux.tar.gz"
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Dec 22 13:46:27 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                    TestCoverage(36, TestType.platform, Os.MACOS, JvmCategory.MAX_LTS_VERSION, expectedBucketNumber = 20, arch = Arch.AARCH64)
                ),
                docsTests = listOf(
                    DocsTestCoverage(Os.MACOS, JvmCategory.MAX_VERSION, listOf(CONFIG_CACHE_DISABLED)),
                ),
                performanceTests = slowPerformanceTestCoverages,
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  5. .gitignore

    # ---
    *.sw[nop]
    
    # Emacs
    # -----
    *~
    \#*\#
    .\#*
    
    # Textmate
    # --------
    .textmate
    
    # Sublime Text
    # ------------
    *.sublime-*
    
    # jEnv
    # ----
    .java-version
    
    # macOS
    # ----
    .DS_Store
    
    # HPROF
    # -----
    *.hprof
    
    # Work dirs
    # ---------
    /incoming-distributions
    /intTestHomeDir
    
    # Logs
    # ----
    /*.log
    
    # Thread dumps for troubleshooting
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 03 21:04:56 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  6. .teamcity/performance-test-durations.json

        "macOs" : 205
      }, {
        "testProject" : "santaTrackerAndroidBuild",
        "linux" : 463,
        "windows" : 885,
        "macOs" : 392
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.android.AndroidIncrementalExecutionPerformanceTest.non-abi change with configuration caching",
      "durations" : [ {
        "testProject" : "nowInAndroidBuild",
        "linux" : 283,
        "windows" : 392,
        "macOs" : 214
      }, {
    Json
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 26.3K bytes
    - Viewed (1)
  7. .teamcity/src/main/kotlin/common/extensions.kt

            param("env.GRADLE_INTERNAL_REPO_URL", "%gradle.internal.repository.url%")
            if (os == Os.MACOS) {
                // Use fewer parallel forks on macOs, since the agents are not very powerful.
                param("maxParallelForks", "2")
            }
            if (os == Os.LINUX || os == Os.MACOS) {
                param("env.LC_ALL", "en_US.UTF-8")
            }
        }
    }
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

        val javaVersion = JavaVersion.current()
        val isWindows = OperatingSystem.current().isWindows
        val isLinux = OperatingSystem.current().isLinux
        val isMacOsX = OperatingSystem.current().isMacOsX
        val isIntel: Boolean = architecture == "x86_64" || architecture == "x86"
        val isSlowInternetConnection
            get() = System.getProperty("slow.internet.connection", "false")!!.toBoolean()
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 09 22:52:01 GMT 2024
    - 5.7K bytes
    - Viewed (2)
  9. .teamcity/performance-tests-ci.json

          "coverage" : {
            "per_day" : [ "linux", "macOs", "windows" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.cold daemon",
        "groups" : [ {
          "testProject" : "largeEmptyMultiProjectDeclarativeDsl",
          "coverage" : {
            "per_day" : [ "linux", "macOs", "windows" ]
          }
        } ]
      }, {
    Json
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 01 17:23:34 GMT 2024
    - 35.6K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

                            OperatingSystem.current().isWindows -> requirements = listOf("os=windows", "gbt-dogfooding")
                            OperatingSystem.current().isMacOsX -> requirements = listOf("os=macos", "gbt-dogfooding")
                        }
                    } else {
                        requirements = listOf("gbt-dogfooding")
                    }
                }
            }
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 17 13:36:27 GMT 2024
    - 15.7K bytes
    - Viewed (0)
Back to top