Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for setLocationTracking (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java

        @Override
        public boolean isLocationTracking() {
            return request.isLocationTracking();
        }
    
        @Override
        public FilterModelBuildingRequest setLocationTracking(boolean locationTracking) {
            request.setLocationTracking(locationTracking);
    
            return this;
        }
    
        @Override
        public List<Profile> getProfiles() {
            return request.getProfiles();
        }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 6.3K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 9.2K bytes
    - Click Count (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         *
         * @param locationTracking {@code true} to enable location tracking, {@code false} to disable it.
         * @return This request, never {@code null}.
         */
        ModelBuildingRequest setLocationTracking(boolean locationTracking);
    
        /**
         * Gets the external profiles that should be considered for model building.
         *
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 12.8K bytes
    - Click Count (0)
Back to Top