Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for sample2 (0.46 sec)

  1. src/runtime/pprof/pprof_test.go

    			}
    			// All samples should point to one location.
    			var gotSamples []*profile.Sample
    			for _, sample := range p.Sample {
    				var locs []*profile.Location
    				for _, loc := range sample.Location {
    					locs = append(locs, &profile.Location{ID: loc.ID})
    				}
    				gotSamples = append(gotSamples, &profile.Sample{Value: sample.Value, Location: locs})
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    .Creating a unit test report for subprojects
    ====
    include::sample[dir="snippets/testing/testReport/kotlin",files="buildSrc/src/main/kotlin/myproject.java-conventions.gradle.kts[tags=test-report];build.gradle.kts[tags=test-report]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    .Changing the JVM target using toolchains
    ====
    include::sample[dir="samples/java/jvm-multi-project-with-toolchains/kotlin/",files="buildSrc/src/main/kotlin/myproject.java-conventions.gradle.kts[tags=toolchain]"]
    include::sample[dir="samples/java/jvm-multi-project-with-toolchains/groovy/",files="buildSrc/src/main/groovy/myproject.java-conventions.gradle[tags=toolchain]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    
    Here are some examples of using the `file()` method with different types of arguments:
    
    ====
    include::sample[dir="snippets/files/file/kotlin",files="build.gradle.kts[tags=simple-params]"]
    include::sample[dir="snippets/files/file/groovy",files="build.gradle[tags=simple-params]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. .teamcity/test-buckets.json

    				},
    				"subprojects":[
    					"workers",
    					"model-core",
    					"language-groovy",
    					"build-init",
    					"logging",
    					"plugins-groovy",
    					"kotlin-dsl",
    					"plugins-java",
    					"samples",
    					"plugin-development",
    					"enterprise"
    				]
    			}
    		],
    		"testCoverageUuid":1
    	},
    	{
    		"buckets":[
    			{
    				"parallelizationMethod":{
    					"name":"TeamCityParallelTests",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    .Ignore a property in selected properties files
    ====
    include::sample[dir="snippets/tasks/inputNormalizationPropertiesFiles/kotlin",files="build.gradle.kts[tags=ignore-property-selected]"]
    include::sample[dir="snippets/tasks/inputNormalizationPropertiesFiles/groovy",files="build.gradle[tags=ignore-property-selected]"]
    ====
    
    .Ignore a property in all properties files
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    In the following sections, we will demonstrate the usage of the `assembleDependents\*`, `buildDependents*` and `dependentComponents` tasks with a sample build that contains a CUnit test suite. The build script for the sample is the following:
    
    === Example: Sample build
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/cunit/groovy/build.gradle[tag=terse-example]
    ----
    
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    	// We want to up-scale the count and cycles according to the
    	// probability that the event was sampled. For block profile events,
    	// the sample probability is 1 if cycles >= rate, and cycles / rate
    	// otherwise. For mutex profile events, the sample probability is 1 / rate.
    	// We scale the events by 1 / (probability the event was sampled).
    	if which == blockProfile && cycles < rate {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    This report is useful and allows you to drill down into problems, understand what is causing them.
    
    Let's look at a simple example build script that contains a couple problems:
    
    ====
    include::sample[dir="snippets/configurationCache/problemsKotlin/kotlin",files="build.gradle.kts[]"]
    include::sample[dir="snippets/configurationCache/problemsGroovy/groovy",files="build.gradle[]"]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    =====
    [.multi-language-sample]
    ======
    .build.gradle.kts
    [source,kotlin]
    ----
    plugins {
        id("java-library")
    }
    
    java {
        registerFeature("feature") {
            usingSourceSet(sourceSets["main"])
        }
    }
    ----
    ======
    [.multi-language-sample]
    ======
    .build.gradle
    [source,groovy]
    ----
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top