Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for santaTracker (0.91 sec)

  1. testing/smoke-test/build.gradle.kts

            configureForSmokeTest(santaTracker)
            useJUnitPlatform {
                filter {
                    includeTestsMatching(santaTrackerTestPattern)
                }
            }
        }
    
        register<SmokeTest>("configCacheSantaTrackerSmokeTest") {
            description = "Runs Santa Tracker Smoke tests with the configuration cache"
            configureForSmokeTest(santaTracker)
            jvmArgs("-Xmx700m")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/IncrementalAndroidTestProject.groovy

        private static final String ENABLE_AGP_IDE_MODE_ARG = "-Pandroid.injected.invoked.from.ide=true"
    
        static final SANTA_TRACKER = new IncrementalAndroidTestProject(
            templateName: 'santaTrackerAndroidBuild',
            pathToChange: 'common/src/main/java/com/google/android/apps/santatracker/AudioPlayer.kt',
            taskToRunForChange: ':santa-tracker:assembleDebug'
        )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

            DaemonLogsAnalyzer.newAnalyzer(homeDir.file(ToolingApiGradleExecutor.TEST_KIT_DAEMON_DIR_NAME)).killAll()
        }
    
        protected void setupCopyOfSantaTracker(TestFile targetDir) {
            copyRemoteProject("santaTracker", targetDir)
            ApplyDevelocityPluginFixture.applyDevelocityPlugin(targetDir.file("settings.gradle"))
        }
    
        protected SmokeTestGradleRunner.SmokeTestBuildResult buildLocation(File projectDir, String agpVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

      },
      "client": [
        {
          "client_info": {
            "mobilesdk_app_id": "1:012345678912:android:0123456789abcdef",
            "android_client_info": {
              "package_name": "com.google.android.apps.santatracker.debug"
            }
          },
          "oauth_client": [
            {
              "client_id": "foo.example.com",
              "client_type": 3
            }
          ],
          "api_key": [
            {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerSmokeTest.groovy

            and:
            def checkoutDir = temporaryFolder.createDir("checkout")
            setupCopyOfSantaTracker(checkoutDir)
    
            and:
            def pathToClass = "com/google/android/apps/santatracker/tracker/ui/BottomSheetBehavior"
            def fileToChange = checkoutDir.file("tracker/src/main/java/${pathToClass}.java")
            def compiledClassFile = VersionNumber.parse(agpVersion).baseVersion >= VersionNumber.parse('8.3.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidIncrementalExecutionPerformanceTest.groovy

            runner.warmUpRuns = 20
            applyDevelocityPlugin()
        }
    
        def "abi change#configurationCaching"() {
            given:
            if (configurationCachingEnabled && IncrementalAndroidTestProject.SANTA_TRACKER == testProject) {
                runner.addBuildMutator { settings ->
                    new BuildMutator() {
                        @Override
                        void beforeBuild(BuildContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AndroidTestProject.groovy

        )
    
        public static final List<AndroidTestProject> ANDROID_TEST_PROJECTS = [
            LARGE_ANDROID_BUILD,
            LARGE_ANDROID_BUILD_2,
            IncrementalAndroidTestProject.SANTA_TRACKER,
            IncrementalAndroidTestProject.NOW_IN_ANDROID,
            IncrementalAndroidTestProject.UBER_MOBILE_APP
        ]
    
        String templateName
    
        static AndroidTestProject projectFor(String testProject) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top