Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for async (0.17 sec)

  1. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

            defaultProfiler,
            display = ParameterDisplay.PROMPT,
            allowEmpty = false,
            description = "Command line option for the performance test task to enable profiling. For example `async-profiler`, `async-profiler-heap`, `async-profiler-all` or `jfr`. Use `none` for benchmarking only."
        )
    }
    
    object AdHocPerformanceScenarioLinux : AdHocPerformanceScenario(Os.LINUX)
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 13 13:53:39 GMT 2024
    - 4.9K bytes
    - Viewed (2)
  2. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

                Os.values().flatMap { os ->
                    if (os == Os.WINDOWS) {
                        listOf("jprofiler")
                    } else {
                        listOf("async-profiler", "async-profiler-heap")
                    }.map { FlameGraphGenerationBuildSpec(scenario, os, it) }
                }
            }
    
        inner
        class FlameGraphGenerationBuildSpec(
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Dec 13 07:00:20 GMT 2021
    - 3.7K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java

        }
    
        private void applyConventions(Project project, TaskContainer tasks, ObjectFactory objects, ProjectLayout layout, GradleDocumentationExtension extension) {
    
            TaskProvider<Sync> stageDocs = tasks.register("stageDocs", Sync.class, task -> {
                // release notes goes in the root of the docs
                task.from(extension.getReleaseNotes().getRenderedDocumentation());
    
                // DSL reference goes into dsl/
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 17 20:04:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  4. build-logic-commons/build-platform/build.gradle.kts

            api("org.gradle.guides:gradle-guides-plugin:0.23")
            api("org.apache.ant:ant:1.10.13") // Bump the version brought in transitively by gradle-guides-plugin
            api("com.gradle:develocity-gradle-plugin:3.17.2") // Sync with `settings.gradle.kts`
            api("com.gradle.publish:plugin-publish-plugin:1.2.1")
            api("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.0.1")
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                task.getDestinationDirectory().convention(layout.getBuildDirectory().dir("tmp/" + task.getName()));
            });
    
            TaskProvider<Sync> userguideFlattenSources = tasks.register("stageUserguideSource", Sync.class, task -> {
                task.setDuplicatesStrategy(DuplicatesStrategy.FAIL);
    
                // TODO: This doesn't allow adoc files to be generated?
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Mar 01 05:46:51 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslRuntimeGeneratedSources.java

        public void action() {
            FileTree kotlinDslExtensionsJar = getArchives().zipTree(getKotlinDslExtensionsJar());
            getFs().sync(spec -> {
                spec.from(kotlinDslExtensionsJar, zip -> zip.include("**/*.kt"));
                spec.into(getGeneratedSources());
            });
            getFs().sync(spec -> {
                spec.from(kotlinDslExtensionsJar, zip -> zip.include("**/*.class"));
                spec.into(getGeneratedClasses());
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sun Mar 19 17:15:23 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  7. .idea/scopes/Gradle_public_API.xml

    <component name="DependencyValidationManager">
        <!-- The source of truth for this pattern is `build-logic/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt` file, please keep them in sync -->
        <scope name="Gradle public API"
    XML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Sep 29 12:25:53 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  8. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "largeAndroidBuild",
        "linux" : 306
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.android.RealLifeAndroidStudioPerformanceTest.run Android Studio sync",
      "durations" : [ {
        "testProject" : "largeAndroidBuild",
        "linux" : 824
      }, {
        "testProject" : "nowInAndroidBuild",
        "linux" : 831
      }, {
        "testProject" : "santaTrackerAndroidBuild",
    Json
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 26.3K bytes
    - Viewed (1)
  9. .cm/plugins/filters/byCodeowner/index.js

            );
        if (!match) {
            console.log("No codeowner found for: " + file);
            return ['No owner'];
        }
        return match.owners;
    }
    
    module.exports = {
        async: true,
        filter: async (files, pr, token, pathToCodeOwners, callback) => {
            const fileData = await loadCodeownersFile(pr.author, pr.repo, token, pathToCodeOwners);
            console.log("Finished loading codeowners file: " + fileData);
    JavaScript
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Apr 22 19:12:32 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  10. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/action/AnnotationGeneratorWorkAction.kt

            private
            const val RESOURCE = "/default-imports.txt"
    
            /**
             * Logic duplicated from [org.gradle.configuration.DefaultImportsReader].
             * Please keep this code in sync.
             */
            internal
            fun generateImportPackages(): List<String> {
                /*
                 * The class that getResource called upon must be from within a jar that contains the import txt file.
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jun 22 10:58:31 GMT 2022
    - 6.9K bytes
    - Viewed (0)
Back to top