Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,416 for sample2 (0.14 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. android/guava-testlib/src/com/google/common/collect/testing/TestSortedSetGenerator.java

      /**
       * Returns an element less than the {@link #samples()} but greater than {@link
       * #belowSamplesLesser()}.
       */
      E belowSamplesGreater();
    
      /**
       * Returns an element greater than the {@link #samples()} but less than {@link
       * #aboveSamplesGreater()}.
       */
      E aboveSamplesLesser();
    
      /**
       * Returns an element greater than the {@link #samples()} and greater than {@link
       * #aboveSamplesLesser()}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/TestSortedSetGenerator.java

      /**
       * Returns an element less than the {@link #samples()} but greater than {@link
       * #belowSamplesLesser()}.
       */
      E belowSamplesGreater();
    
      /**
       * Returns an element greater than the {@link #samples()} but less than {@link
       * #aboveSamplesGreater()}.
       */
      E aboveSamplesLesser();
    
      /**
       * Returns an element greater than the {@link #samples()} and greater than {@link
       * #aboveSamplesLesser()}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesJavaCustomizedLayoutIntegrationTest.groovy

        @Rule
        Sample sample = new Sample(testDirectoryProvider)
    
        def setup() {
            executer.withRepositoryMirrors()
        }
    
        @UsesSample('java/customizedLayout')
        def "can build jar with #dsl dsl"() {
            TestFile javaprojectDir = sample.dir.file(dsl)
    
            // Build and test projects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/internal/profile/profile.go

    // not limited to:
    //   - len(Profile.Sample[n].value) == len(Profile.value_unit)
    //   - Sample.id has a corresponding Profile.Location
    func (p *Profile) CheckValid() error {
    	// Check that sample values are consistent
    	sampleLen := len(p.SampleType)
    	if sampleLen == 0 && len(p.Sample) != 0 {
    		return fmt.Errorf("missing sample type information")
    	}
    	for _, s := range p.Sample {
    		if len(s.Value) != sampleLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/samples/SamplesScalaQuickstartIntegrationTest.groovy

        @Rule public final Sample sample = new Sample(testDirectoryProvider)
        @Rule public final ZincScalaCompileFixture zincScalaCompileFixture = new ZincScalaCompileFixture(executer, testDirectoryProvider)
    
        @UsesSample('scala/quickstart')
        def "can build jar with #dsl dsl"() {
            // Build and test projects
            TestFile projectDir = sample.dir.file(dsl)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesJavaPatchModuleIntegrationTest.groovy

    class SamplesJavaPatchModuleIntegrationTest extends AbstractIntegrationSpec {
    
        @Rule Sample sample = new Sample(temporaryFolder, 'testing/patch-module')
    
        def setup() {
            executer.withRepositoryMirrors()
        }
    
        def "can compile and run patched module whitebox tests with #dsl dsl"() {
            when:
            executer.inDirectory(sample.dir.file(dsl))
            succeeds('build')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/runtime/pprof/protomem.go

    }
    
    // scaleHeapSample adjusts the data from a heap Sample to
    // account for its probability of appearing in the collected
    // data. heap profiles are a sampling of the memory allocations
    // requests in a program. We estimate the unsampled value by dividing
    // each collected sample by its probability of appearing in the
    // profile. heap profiles rely on a poisson process to determine
    // which samples to collect, based on the desired average collection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesCustomExternalTaskIntegrationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.junit.Rule
    
    class SamplesCustomExternalTaskIntegrationTest extends AbstractSampleIntegrationTest {
        @Rule
        public final Sample sample = new Sample(temporaryFolder)
    
        @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = "Requires a Gradle distribution on the test-under-test classpath, but gradleApi() does not offer the full distribution")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/readme-templates/common-body.adoc.template

    [source,${languageLC.raw}]
    ----
    include::{samples-dir}/groovy/${subprojectName.raw}/src/main/${languageLC.raw}/${sourceFile.raw}[]
    ----
    
    The generated test, `src/test/${languageLC.raw}/${sourceFile.raw}` is shown next:
    
    .Generated src/test/${languageLC.raw}/${testSourceFile.raw}
    [source,${languageLC.raw}]
    ----
    include::{samples-dir}/groovy/${subprojectName.raw}/src/test/${languageLC.raw}/${testSourceFile.raw}[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top