Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,473 for sample_2 (1.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/samples/SamplesMixedJavaAndScalaIntegrationTest.groovy

            jarContents.assertHasDescendants(
                'META-INF/MANIFEST.MF',
                'org/gradle/sample/JavaPerson.class',
                'org/gradle/sample/Named.class',
                'org/gradle/sample/Person.class',
                'org/gradle/sample/PersonList.class',
                'org/gradle/sample/PersonList$.class'
            )
        }
    
        @Test
        void canBuildDocs() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. samples/README.md

    # Istio Samples
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 30 18:03:23 UTC 2019
    - 98 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_skip_write.txt

    m go@1.18
    m golang.org/x/text@v0.0.0-20170915032832-14c0d48ead0c
    m rsc.io/quote@v1.5.2
    m rsc.io/sampler@v1.3.0
    m rsc.io/testonly@v1.0.0
    rsc.io/quote@v1.5.2 rsc.io/sampler@v1.3.0
    rsc.io/sampler@v1.3.0 golang.org/x/text@v0.0.0-20170915032832-14c0d48ead0c
    -- why.want --
    # rsc.io/sampler
    m
    rsc.io/quote
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/IntegrationTestSamplesRunner.java

            }
            return Paths.get(samplesDir).toFile();
        }
    
        @Override
        protected void runChild(final Sample sample, final RunNotifier notifier) {
            super.runChild(sample, new RunNotifierWrapper(notifier) {
                @Override
                public void fireTestFailure(Failure failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 22:10:58 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/TestSortedMapGenerator.java

      SortedMap<K, V> create(Object... elements);
    
      /**
       * Returns an entry with a key less than the keys of the {@link #samples()} and less than the key
       * of {@link #belowSamplesGreater()}.
       */
      Entry<K, V> belowSamplesLesser();
    
      /**
       * Returns an entry with a key less than the keys of the {@link #samples()} but greater than the
       * key of {@link #belowSamplesLesser()}.
       */
      Entry<K, V> belowSamplesGreater();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top