Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for profil (0.21 sec)

  1. 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"))
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  2. 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,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 65K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	}
    
    	// Stop profiler of all types if already running
    	for k, v := range globalProfiler {
    		v.Stop()
    		delete(globalProfiler, k)
    	}
    
    	// Start profiling on remote servers.
    	for _, profiler := range profiles {
    		globalNotificationSys.StartProfiling(profiler)
    
    		// Start profiling locally as well.
    		prof, err := startProfiler(profiler)
    		if err == nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

        }
    
        private List<Profile> interpolateActivations(
                List<Profile> profiles, DefaultProfileActivationContext context, DefaultModelProblemCollector problems) {
            List<Profile> newProfiles = null;
            for (int index = 0; index < profiles.size(); index++) {
                Profile profile = profiles.get(index);
                Activation activation = profile.getActivation();
                if (activation != null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 59.1K bytes
    - Viewed (0)
  5. cmd/peer-rest-server.go

    		for _, p := range profiles {
    			if p == k {
    				v.Stop()
    				delete(globalProfiler, k)
    			}
    		}
    	}
    
    	for _, profiler := range profiles {
    		prof, err := startProfiler(profiler)
    		if err != nil {
    			s.writeErrorResponse(w, err)
    			return
    		}
    		globalProfiler[profiler] = prof
    	}
    }
    
    // DownloadProfilingDataHandler - returns profiled data.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 51.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        /**
         * Gets the identifiers of all profiles that contributed to this project's effective model. This includes active
         * profiles from the project's POM and all its parent POMs as well as from external sources like the
         * {@code settings.xml}. The profile identifiers are grouped by the identifier of their source, e.g.
         * {@code <groupId>:<artifactId>:<version>} for a POM profile or {@code external} for profiles from the
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                project.setArtifacts(artifacts);
    
                return resolutionResult;
            }
        }
    
        private List<String> getProfileIds(List<Profile> profiles) {
            return profiles.stream().map(Profile::getId).collect(Collectors.toList());
        }
    
        private static ModelSource createStubModelSource(Artifact artifact) {
            StringBuilder buffer = new StringBuilder(1024);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  8. common/scripts/metallb-native.yaml

                      IPv4 addresses.
                    format: int32
                    minimum: 1
                    type: integer
                  aggregationLengthV6:
                    default: 128
                    description: The aggregation-length advertisement option lets you
                      “roll up” the /128s into a larger prefix. Defaults to 128. Works
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  9. cmd/object-api-listobjects_test.go

    		// Tests on hierarchical key names as prefix.
    		// Without delimteter the code should recurse into the prefix Dir.
    		// Tests with prefix, but without delimiter (53-54).
    		{"test-bucket-list-object", "Asia/India/", "", "", 10, resultCases[23], nil, true},
    		{"test-bucket-list-object", "Asia", "", "", 10, resultCases[24], nil, true},
    		// Tests with prefix and delimiter (55-57).
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jan 30 20:43:25 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        String SEARCH_GUEST_PERMISSION_LIST = "searchGuestPermissionList";
    
        String SUGGEST_SEARCH_LOG_PERMISSIONS = "suggestSearchLogPermissions";
    
        String GROUP_VALUE_PREFIX = "group:";
    
        String ROLE_VALUE_PREFIX = "role:";
    
        String APP_VALUES = "appValues";
    
        String DEFAULT_SORT_VALUES = "defaultSortValues";
    
        String DEFAULT_LABEL_VALUES = "defaultLabelValues";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
Back to top