Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for gcIdle (0.16 sec)

  1. src/runtime/metrics_test.go

    		if cpu.gcDedicated <= 0 && cpu.gcAssist <= 0 && cpu.gcIdle <= 0 {
    			t.Errorf("found no time spent on GC work: %#v", cpu)
    		}
    		if cpu.gcPause <= 0 {
    			t.Errorf("found no GC pauses: %f", cpu.gcPause)
    		}
    		if cpu.idle <= 0 {
    			t.Errorf("found no idle time: %f", cpu.idle)
    		}
    		if total := cpu.gcDedicated + cpu.gcAssist + cpu.gcIdle + cpu.gcPause; !withinEpsilon(cpu.gcTotal, total, 0.001) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/sample-ide/build.gradle

            ':sample-project:assemble'  // The executed task
        ]
    }
    
    tasks.register('importBuild') {
        dependsOn(tasks.run)
    }
    
    Gradle rootBuild(Gradle gradle) {
        if (gradle?.parent) rootBuild(gradle.parent) else gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 735 bytes
    - Viewed (0)
  3. platforms/documentation/docs/build.gradle

    tasks.named("docsTest") { task ->
        maxParallelForks = 2
        // The org.gradle.samples plugin uses Exemplar to execute integration tests on the samples.
        // Exemplar doesn't know about that it's running in the context of the gradle/gradle build
        // so it uses the Gradle distribution from the running build. This is not correct, because
        // we want to verify that the samples work with the Gradle distribution being built.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-monolithic/build.gradle

    subprojects {
        apply from: rootProject.file("common.gradle")
        apply from: rootProject.file("components.gradle")
    }
    
    apply from: file("common.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 191 bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

     */
    package org.gradle.api.invocation;
    
    import groovy.lang.Closure;
    import groovy.lang.DelegatesTo;
    import org.gradle.BuildListener;
    import org.gradle.BuildResult;
    import org.gradle.StartParameter;
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    import org.gradle.api.Project;
    import org.gradle.api.ProjectEvaluationListener;
    import org.gradle.api.UnknownDomainObjectException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/toolingApi/eclipse/groovy/build.gradle

        id 'application'
    }
    
    def toolingApiVersion = gradle.gradleVersion
    
    repositories {
        maven { url 'https://repo.gradle.org/gradle/libs-releases' }
    }
    
    dependencies {
        implementation "org.gradle:gradle-tooling-api:${toolingApiVersion}"
        // Need an SLF4J implementation at runtime
        runtimeOnly 'org.slf4j:slf4j-simple:1.7.10'
    }
    
    application {
        mainClass = 'org.gradle.sample.Main'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 419 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/providers/services/groovy/build.gradle

    import org.gradle.api.tasks.Input
    import org.gradle.api.tasks.TaskAction
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import org.gradle.workers.WorkerExecutor
    import org.gradle.tooling.provider.model.ToolingModelBuilderRegistry
    import org.gradle.tooling.provider.model.ToolingModelBuilder
    
    plugins {
        id 'groovy'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::object-factory[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/organizingGradleProjects/customGradleDistribution/groovy/src/init.d/repositories.gradle

    logger.lifecycle ("Hello from the custom Gradle distribution")
    
    gradle.projectsLoaded { Gradle gradle ->
        gradle.allprojects {
            repositories {
                mavenCentral()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 198 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/initScripts/plugins/groovy/init.gradle

    // tag::init-script-plugin[]
    
    apply plugin: EnterpriseRepositoryPlugin
    
    class EnterpriseRepositoryPlugin implements Plugin<Gradle> {
    
        private static String ENTERPRISE_REPOSITORY_URL = "https://repo.gradle.org/gradle/repo"
    
        void apply(Gradle gradle) {
            // ONLY USE ENTERPRISE REPO FOR DEPENDENCIES
            gradle.allprojects { project ->
                project.repositories {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/templates/java-android-application/gradle.properties

    # Project-wide Gradle settings.
    # IDE (e.g. Android Studio) users:
    # Gradle settings configured through the IDE *will override*
    # any settings specified in this file.
    # For more details on how to configure your build environment visit
    # http://www.gradle.org/docs/current/userguide/build_environment.html
    # Specifies the JVM arguments used for the daemon process.
    # The setting is particularly useful for tweaking memory settings.
    org.gradle.jvmargs=-Xmx1536m
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top