Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 331 for Profile (0.23 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	"github.com/google/pprof/internal/report"
    	"github.com/google/pprof/profile"
    )
    
    // webInterface holds the state needed for serving a browser based interface.
    type webInterface struct {
    	prof         *profile.Profile
    	copier       profileCopier
    	options      *plugin.Options
    	help         map[string]string
    	settingsFile string
    }
    
    func makeWebInterface(p *profile.Profile, copier profileCopier, opt *plugin.Options) (*webInterface, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/transform/jar/before.pom

                <groupId>org.assertj</groupId>
                <artifactId>assertj-core</artifactId>
                <version>3.25.3</version>
                <scope>test</scope>
            </dependency>
        </dependencies>
        <profiles>
            <profile>
                <id>release</id>
                <build>
                    <plugins>
                        <plugin>
                            <artifactId>maven-javadoc-plugin</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. android/pom.xml

                        <goal>sign</goal>
                      </goals>
                    </execution>
                  </executions>
                </plugin>
              </plugins>
          </build>
        </profile>
        <profile>
          <!--
              Passes JDK 11-12-specific `no-module-directories` flag to Javadoc tool,
              which is required to make symbol search work correctly in the generated
              pages.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pom.xml

                        <goal>sign</goal>
                      </goals>
                    </execution>
                  </executions>
                </plugin>
              </plugins>
          </build>
        </profile>
        <profile>
          <!--
              Passes JDK 11-12-specific `no-module-directories` flag to Javadoc tool,
              which is required to make symbol search work correctly in the generated
              pages.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. docs/site-replication/run-replication-with-checksum-header.sh

    split -n 10 /tmp/data/mpartobj
    CREATE_MPART_OUT=$(aws s3api --endpoint-url=https://localhost:9001 create-multipart-upload --bucket test-bucket --key mpartobj --checksum-algorithm SHA256 --no-verify-ssl --profile enterprise)
    UPLOAD_ID=$(echo "${CREATE_MPART_OUT}" | jq '.UploadId' | sed 's/"//g')
    
    PARTS=""
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/validation/ModelValidator.java

        /**
         * Checks the specified (raw) model for clashes with the passed active external profiles. The raw model is the
         * file model + buildpom filter transformation and has not been subjected to inheritance, interpolation or profile/default injection.
         *
         * @param activeExternalProfiles the active profiles coming from external sources (settings.xml), must not be {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/helpers.go

    	profile := apparmor.GetProfile(pod, container)
    	if profile == nil {
    		return nil, "", nil
    	}
    
    	var (
    		securityProfile   *runtimeapi.SecurityProfile
    		deprecatedProfile string // Deprecated apparmor profile format, still provided for backwards compatibility with older runtimes.
    	)
    
    	switch profile.Type {
    	case v1.AppArmorProfileTypeRuntimeDefault:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

    import org.apache.maven.model.profile.DefaultProfileInjector;
    import org.apache.maven.model.profile.DefaultProfileSelector;
    import org.apache.maven.model.profile.ProfileInjector;
    import org.apache.maven.model.profile.ProfileSelector;
    import org.apache.maven.model.profile.activation.FileProfileActivator;
    import org.apache.maven.model.profile.activation.JdkVersionProfileActivator;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. src/runtime/tracecpu.go

    	for len(data) > 0 {
    		if len(data) < 4 || data[0] > uint64(len(data)) {
    			break // truncated profile
    		}
    		if data[0] < 4 || tags != nil && len(tags) < 1 {
    			break // malformed profile
    		}
    		if len(tags) < 1 {
    			break // mismatched profile records and tags
    		}
    
    		// Deserialize the data in the profile buffer.
    		recordLen := data[0]
    		timestamp := data[1]
    		ppid := data[2] >> 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/internal/trace/trace_test.go

    			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 {
    			t.Fatalf("failed to parse CPU profile summary in stderr: %v", err)
    		}
    		if pprofSamples == 0 {
    			t.Skip("CPU profile did not include any samples while tracing was active")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top