Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,237 for gcIdle (0.13 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. testing/performance/src/templates/archivePerformanceProject/gradle.properties

    org.gradle.jvmargs=-Xms256m -Xmx256m
    org.gradle.parallel=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 87 bytes
    - Viewed (0)
  7. testing/performance/src/templates/generateLotsOfDeprecationWarnings/gradle.properties

    org.gradle.jvmargs=-Xms1G -Xmx1G
    org.gradle.parallel=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 83 bytes
    - Viewed (0)
  8. gradle.properties

    # Reduce Xmx after https://github.com/gradle/gradle-private/issues/4168 is resolved
    org.gradle.jvmargs=-Xmx2700m -XX:MaxMetaspaceSize=768m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
    org.gradle.parallel=true
    org.gradle.caching=true
    org.gradle.configuration-cache=true
    systemProp.gradle.publish.skip.namespace.check=true
    # Kotlin DSL settings
    org.gradle.kotlin.dsl.allWarningsAsErrors=true
    # Kotlin settings
    kotlin.incremental.useClasspathSnapshot=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/pluginProject/groovy/buildSrc/build.gradle

    // tag::use-and-configure-plugin[]
    plugins {
        id 'groovy-gradle-plugin'
        id 'java-gradle-plugin'
    }
    // end::use-and-configure-plugin[]
    
    repositories {
        mavenCentral()
        gradlePluginPortal()
    }
    
    dependencies {
        implementation 'org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.9.23'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 06:14:51 UTC 2024
    - 312 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/platforms/plugins-platform/build.gradle

    dependencies {
        constraints {
            api('com.android.tools.build:gradle:7.3.0')
            api('org.jetbrains.kotlin.android:org.jetbrains.kotlin.android.gradle.plugin:1.9.23')
            api('org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.9.23')
            api('org.springframework.boot:org.springframework.boot.gradle.plugin:2.7.8')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:36:42 UTC 2024
    - 427 bytes
    - Viewed (0)
Back to top