Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 206 for jprofiler (0.13 sec)

  1. maven-compat/src/main/mdo/profiles.mdo

      xml.namespace="http://maven.apache.org/PROFILES/${version}"
      xml.schemaLocation="http://maven.apache.org/xsd/profiles-${version}.xsd">
      <id>profiles</id>
      <name>Profiles</name>
      <description><![CDATA[
        <b>Deprecated in Maven 2</b> Project-local overrides to the build process based on detected or user-provided environmental parameters.
        This is the model specification for <code>${basedir}/profiles.xml</code>.
      ]]></description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    // limitations under the License.
    
    // Package profile provides a representation of profile.proto and
    // methods to encode/decode profiles in this format.
    package profile
    
    import (
    	"bytes"
    	"compress/gzip"
    	"fmt"
    	"io"
    	"math"
    	"path/filepath"
    	"regexp"
    	"sort"
    	"strings"
    	"sync"
    	"time"
    )
    
    // Profile is an in-memory representation of profile.proto.
    type Profile struct {
    	SampleType        []*ValueType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. tests/associations_test.go

    	member := Member{Refer: 1, Name: "foreign_key_constraints", Profile: Profile{Name: "my_profile"}}
    
    	DB.Create(&member)
    
    	var profile Profile
    	if err := DB.First(&profile, "id = ?", member.Profile.ID).Error; err != nil {
    		t.Fatalf("failed to find profile, got error: %v", err)
    	} else if profile.MemberID != member.ID {
    		t.Fatalf("member id is not equal: expects: %v, got: %v", member.ID, profile.MemberID)
    	}
    
    	member.Profile = Profile{}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. src/internal/profile/profile.go

    // license that can be found in the LICENSE file.
    
    // Package profile provides a representation of
    // github.com/google/pprof/proto/profile.proto and
    // methods to encode/decode/merge profiles in this format.
    package profile
    
    import (
    	"bytes"
    	"compress/gzip"
    	"fmt"
    	"io"
    	"strings"
    	"time"
    )
    
    // Profile is an in-memory representation of profile.proto.
    type Profile struct {
    	SampleType        []*ValueType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_compiler_test.cc

      auto xla_device_compiler_2 =
          CreateXlaDeviceCompiler(/*enable_persistence=*/true);
      core::ScopedUnref xla_device_compiler_ref_2(xla_device_compiler_2);
    
      auto profiler = new DeviceCompilationProfiler();
      core::ScopedUnref profiler_ref(profiler);
    
      const XlaCompiler::CompilationResult* compilation_result_2 = nullptr;
      xla::LocalExecutable* xla_executable_2 = nullptr;
      TF_EXPECT_OK(xla_device_compiler_2->CompileIfNeeded(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/profile.png

    profile.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 36K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

                addSystemPropertyIfExist(result, "gradleBuildBranch", branchName)
    
                if (profiler.isPresent() && profiler.get() != "none") {
                    addSystemPropertyIfExist(result, "org.gradle.performance.profiler", profiler.get())
                }
            }
    
            private void addDatabaseParameters(List<String> result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenProfileResolveIntegrationTest.groovy

                <groupId>\${groupId.prop}</groupId>
                <artifactId>\${artifactId.prop}</artifactId>
                <version>\${version.prop}</version>
            </dependency>
        </dependencies>
        <profiles>
            <profile>
                <id>profile-1</id>
                <activation>
                    <activeByDefault>true</activeByDefault>
                </activation>
                <properties>
                    <groupId.prop>groupB</groupId.prop>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		return nil, nil, err
    	}
    
    	// Avoid expensive work for the common case of a single profile/src.
    	if len(profiles) == 1 && len(msrcs) == 1 {
    		return profiles[0], msrcs[0], nil
    	}
    
    	p, err := profile.Merge(profiles)
    	if err != nil {
    		return nil, nil, err
    	}
    
    	// Combine mapping sources.
    	msrc := make(plugin.MappingSources)
    	for _, ms := range msrcs {
    		for m, s := range ms {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/net/http/pprof/pprof.go

    //
    // Parameters can be passed via GET query params:
    //
    //   - debug=N (all profiles): response format: N = 0: binary (default), N > 0: plaintext
    //   - gc=N (heap profile): N > 0: run a garbage collection cycle before profiling
    //   - seconds=N (allocs, block, goroutine, heap, mutex, threadcreate profiles): return a delta profile
    //   - seconds=N (cpu (profile), trace profiles): profile for the given duration
    //
    // # Usage examples
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top