Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 750 for Profile (4.13 sec)

  1. src/cmd/internal/pgo/pgo.go

    // Package pgo contains the compiler-agnostic portions of PGO profile handling.
    // Notably, parsing pprof profiles and serializing/deserializing from a custom
    // intermediate representation.
    package pgo
    
    // Profile contains the processed data from the PGO profile.
    type Profile struct {
    	// TotalWeight is the aggregated edge weights across the profile. This
    	// helps us determine the percentage threshold for hot/cold
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/internal/trace/traceviewer/pprof.go

    }
    
    func BuildProfile(prof []ProfileRecord) *profile.Profile {
    	p := &profile.Profile{
    		PeriodType: &profile.ValueType{Type: "trace", Unit: "count"},
    		Period:     1,
    		SampleType: []*profile.ValueType{
    			{Type: "contentions", Unit: "count"},
    			{Type: "delay", Unit: "nanoseconds"},
    		},
    	}
    	locs := make(map[uint64]*profile.Location)
    	funcs := make(map[string]*profile.Function)
    	for _, rec := range prof {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:28:02 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivatorTest.java

        void testPrefixNegated() throws Exception {
            Profile profile = newProfile("!1.4");
    
            assertActivation(false, profile, newContext(null, newProperties("1.4")));
            assertActivation(false, profile, newContext(null, newProperties("1.4.2")));
            assertActivation(false, profile, newContext(null, newProperties("1.4.2_09")));
            assertActivation(false, profile, newContext(null, newProperties("1.4.2_09-b03")));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/transform/after.pom

            </configuration>
          </plugin>
        </plugins>
      </build>
      <profiles>
        <profile>
          <id>default-active</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
          </properties>
        </profile>
        <profile>
          <id>file</id>
          <activation>
            <file>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 07:51:37 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/PropertyProfileActivatorTest.java

            assertActivation(false, profile, newContext(null, newProperties("other", "value")));
        }
    
        @Test
        void testWithNegatedNameOnly_UserProperty() throws Exception {
            Profile profile = newProfile("!prop", null);
    
            assertActivation(false, profile, newContext(newProperties("prop", "value"), null));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    )
    
    // javaCPUProfile returns a new Profile from profilez data.
    // b is the profile bytes after the header, period is the profiling
    // period, and parse is a function to parse 8-byte chunks from the
    // profile in its native endianness.
    func javaCPUProfile(b []byte, period int64, parse func(b []byte) (uint64, []byte)) (*Profile, error) {
    	p := &Profile{
    		Period:     period * 1000,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. src/net/http/pprof/pprof_test.go

    	}()
    
    	// mutexHog1 will appear in non-delta mutex profile
    	// if the mutex profile works.
    	mutexHog(20*time.Millisecond, mutexHog1)
    
    	// If mutexHog1 does not appear in the mutex profile,
    	// skip this test. Mutex profile is likely not working,
    	// so is the delta profile.
    
    	p, err := query("/debug/pprof/mutex")
    	if err != nil {
    		t.Skipf("mutex profile is unsupported: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    == Profile report
    
    If you prefer not to use build scans, you can generate an HTML report in the
    `build/reports/profile` directory of your root project. To generate this report,
    use the `--profile` command-line option:
    
    [listing.terminal]
    ----
    $ gradle --profile <tasks>
    ----
    
    Each profile report has a timestamp in its name to avoid overwriting existing ones.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. pkg/security/apparmor/validate.go

    		profile := GetProfile(pod, container)
    		if profile == nil {
    			return true
    		}
    
    		// TODO(#64841): This would ideally be part of validation.ValidateAppArmorProfileFormat, but
    		// that is called for API validation, and this is tightening validation.
    		if profile.Type == v1.AppArmorProfileTypeLocalhost {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

            </profile>
            <profile>
                <id>profile-2</id>
                <activation>
                    <activeByDefault>true</activeByDefault>
                </activation>
            </profile>
            <profile>
                <id>profile-1</id>
                <activation>
                    <activeByDefault>true</activeByDefault>
                </activation>
            </profile>
            <profile>
                <id>profile-2</id>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top