Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Program (0.2 sec)

  1. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

    package gradlebuild.cleanup.services
    
    import spock.lang.Specification
    
    class LeakingProcessKillPatternTest extends Specification {
    
        def "matches worker process started in test on Windows"() {
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Sep 28 07:00:39 GMT 2023
    - 14.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/Os.kt

            "Linux",
            androidHome = "/opt/android/sdk",
            jprofilerHome = "/opt/jprofiler/jprofiler11.1.4"
        ),
        WINDOWS(
            "Windows",
            androidHome = """C:\Program Files\android\sdk""",
            jprofilerHome = """C:\Program Files\jprofiler\jprofiler11.1.4""",
            perfTestWorkingDir = "P:/",
        ),
        MACOS(
            "Mac",
            androidHome = "/opt/android/sdk",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Sep 24 06:56:47 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

                param("env.PERFORMANCE_DB_PASSWORD_TCAGENT", "%performance.db.password.tcagent%")
                when (os) {
                    Os.WINDOWS -> param("env.PATH", "%env.PATH%;C:/Program Files/7-zip")
                    else -> param("env.PATH", "%env.PATH%:/opt/swift/4.2.3/usr/bin:/opt/swift/4.2.4-RELEASE-ubuntu18.04/usr/bin")
                }
            }
            failureConditions {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                options = JvmVendor.values().map { it.displayName to it.name }
            )
            when (os) {
                Os.WINDOWS -> {
                    profilerParam("jprofiler")
                    param("env.JPROFILER_HOME", "C:\\Program Files\\jprofiler\\jprofiler11.1.4")
                }
    
                else -> {
                    profilerParam("async-profiler")
                    param("env.FG_HOME_DIR", "/opt/FlameGraph")
    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)
  5. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val jtar = "org.kamranzafar:jtar"
        val kotlinCoroutines = "org.jetbrains.kotlinx:kotlinx-coroutines-core"
        val kotlinCoroutinesDebug = "org.jetbrains.kotlinx:kotlinx-coroutines-debug"
        val littleproxy = "xyz.rogfam:littleproxy"
        val mina = "org.apache.mina:mina-core"
        val mockitoCore = "org.mockito:mockito-core"
        val mockitoKotlin = "com.nhaarman:mockito-kotlin"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  6. LICENSE

        even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
        You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software
        Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
    
    
    Two classes (HashFunctions and PrimeFinder) included in Trove are licensed under the following terms:
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 23 11:07:23 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  7. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            // Test dependencies - minify: remove unused transitive dependencies
            withLibraryDependencies<DependencyRemovalByNameRule>(
                "xyz.rogfam:littleproxy",
                setOf("barchart-udt-bundle", "guava", "commons-cli")
            )
    
            // TODO: Gradle profiler should use the bundled tooling API.
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Aug 24 23:27:45 GMT 2022
    - 9.1K bytes
    - Viewed (0)
  8. .github/workflows/codeql-analysis.yml

        - name: Cleanup Gradle Daemons
          run: ./gradlew --stop
          if: ${{ matrix.language == 'java' }}
    
        # ℹī¸ Command-line programs to run using the OS shell.
        # 📚 https://git.io/JvXDl
    
        # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following three lines
        #    and modify them (or add more) to build your code if your project
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 30 18:26:59 GMT 2024
    - 4K bytes
    - Viewed (0)
Back to top