Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 650 for sample2 (0.16 sec)

  1. android/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)
  2. src/cmd/internal/pgo/pprof.go

    		// samples: nothing to do.
    		return emptyProfile(), nil
    	} else if err != nil {
    		return nil, fmt.Errorf("error parsing profile: %w", err)
    	}
    
    	if len(p.Sample) == 0 {
    		// We accept empty profiles, but there is nothing to do.
    		return emptyProfile(), nil
    	}
    
    	valueIndex := -1
    	for i, s := range p.SampleType {
    		// Samples count is the raw data collected, and CPU nanoseconds is just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. src/internal/trace/reader.go

    	// Go 1.22+ trace parsing algorithm.
    	//
    	// (1) Read in all the batches for the next generation from the stream.
    	//   (a) Use the size field in the header to quickly find all batches.
    	// (2) Parse out the strings, stacks, CPU samples, and timestamp conversion data.
    	// (3) Group each event batch by M, sorted by timestamp. (batchCursor contains the groups.)
    	// (4) Organize batchCursors in a min-heap, ordered by the timestamp of the next event for each M.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/runtime/histogram.go

    	// underflow counts all the times we got a negative duration
    	// sample. Because of how time works on some platforms, it's
    	// possible to measure negative durations. We could ignore them,
    	// but we record them anyway because it's better to have some
    	// signal that it's happening than just missing samples.
    	underflow atomic.Uint64
    
    	// overflow counts all the times we got a duration that exceeded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/internal/trace/trace_test.go

    		for scanner.Scan() {
    			var stack string
    			var samples int
    			_, err := fmt.Sscanf(scanner.Text(), "%s\t%d", &stack, &samples)
    			if err != nil {
    				t.Fatalf("failed to parse CPU profile summary in stderr: %s\n\tfull:\n%s", scanner.Text(), stderr)
    			}
    			pprofStacks[stack] = samples
    			pprofSamples += samples
    		}
    		if err := scanner.Err(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/SampleRuleTest.groovy

            "simple/kotlin/"            | "simple"
            "sub/sample"                | "sample"
            "sub/sample/"               | "sample"
            "sub/sample/groovy"         | "sample"
            "sub/sample/groovy/"        | "sample"
            "sub/sample/kotlin"         | "sample"
            "sub/sample/kotlin/"        | "sample"
            "sub/sample/nested"         | "nested"
            "sub/sample/nested/"        | "nested"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. platforms/documentation/docs/src/snippets/buildCache/caching-android-projects/tests/sanityCheck.sample.conf

    Justin Van Dort <******@****.***> 1684529866 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 374 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/tests/customPlugin.sample.conf

    Laura Kassovic <******@****.***> 1712356553 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 275 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/files/fileCollections/tests/fileCollectionsConventions.sample.conf

    Rafael Chaves <******@****.***> 1710349380 -0300
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 13:03:07 UTC 2024
    - 105 bytes
    - Viewed (0)
Back to top