Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for Profile (0.15 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

        <version>version-one</version>
    
        <profiles>
            <profile>
                <id>profile-1</id>
                <activation>
                    <activeByDefault>true</activeByDefault>
                </activation>
                <properties>
                    <package.type>war</package.type>
                </properties>
            </profile>
        </profiles>
    </project>
    """
    
            pomFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/pprof/pprof_test.go

    	}
    
    	for _, test := range tests {
    		t.Run(test.profiler, func(t *testing.T) {
    			var buf bytes.Buffer
    			if err := Lookup(test.profiler).WriteTo(&buf, 0); err != nil {
    				t.Fatalf("failed to write heap profile: %v", err)
    			}
    			p, err := profile.Parse(&buf)
    			if err != nil {
    				t.Fatalf("failed to parse heap profile: %v", err)
    			}
    			t.Logf("Profile = %v", p)
    
    			stks := stacks(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    // in the current goroutine profile: either that it should not be profiled, or
    // that a snapshot of its call stack and labels are now in the profile.
    func tryRecordGoroutineProfile(gp1 *g, pcbuf []uintptr, yield func()) {
    	if readgstatus(gp1) == _Gdead {
    		// Dead goroutines should not appear in the profile. Goroutines that
    		// start while profile collection is active will get goroutineProfiled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            for (Profile profile : model.getProfiles()) {
                Activation activation = profile.getActivation();
    
                if (activation == null) {
                    continue;
                }
    
                // restore activation
                profile.setActivation(activations.get(profile.getId()));
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    .collect(Collectors.toMap(Profile::getId, Profile::getActivation));
        }
    
        private Model injectProfileActivations(Model model, Map<String, Activation> activations) {
            List<Profile> profiles = new ArrayList<>();
            boolean modified = false;
            for (Profile profile : model.getProfiles()) {
                Activation activation = profile.getActivation();
                if (activation != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                Set<String> profileIds = new HashSet<>();
    
                for (Profile profile : m.getProfiles()) {
                    String prefix = "profiles.profile[" + profile.getId() + "].";
    
                    validateProfileId(prefix, "id", problems, Severity.ERROR, Version.V40, profile.getId(), null, m);
    
                    if (!profileIds.add(profile.getId())) {
                        addViolation(
                                problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                    "only-active-profile",
                    "Active only ||${project.basedir}||",
                    "<plugin-in-active-profile-only>Active only ||${project.basedir}||</plugin-in-active-profile-only>");
    
            // =============================================
    
            Profile inactiveProfile = originalModel.getProfiles().stream()
                    .filter(profile -> profile.getId().equals("inactiveProfile"))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                Set<String> profileIds = new HashSet<>();
    
                for (Profile profile : m.getProfiles()) {
                    String prefix = "profiles.profile[" + profile.getId() + "].";
    
                    validateProfileId(prefix, "id", problems, Severity.ERROR, Version.V40, profile.getId(), null, m);
    
                    if (!profileIds.add(profile.getId())) {
                        addViolation(
                                problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework.go

    	}
    
    	if profile == nil {
    		return f, nil
    	}
    
    	f.profileName = profile.SchedulerName
    	f.percentageOfNodesToScore = profile.PercentageOfNodesToScore
    	if profile.Plugins == nil {
    		return f, nil
    	}
    
    	// get needed plugins from config
    	pg := f.pluginsNeeded(profile.Plugins)
    
    	pluginConfig := make(map[string]runtime.Object, len(profile.PluginConfig))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top