Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getRestrictions (0.07 seconds)

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

  1. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java

            List<Restriction> restrictions = spec.getRestrictions();
            assertEquals(1, restrictions.size(), CHECK_NUM_RESTRICTIONS);
    
            VersionRange version = VersionRange.createFromVersion("1.0");
            assertSame(version, VersionRange.createFromVersion("1.0")); // same instance from version cache
            restrictions = version.getRestrictions();
            assertEquals(0, restrictions.size(), CHECK_NUM_RESTRICTIONS);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Mar 30 23:08:36 GMT 2025
    - 44.1K bytes
    - Click Count (0)
  2. compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

            this.restrictions = restrictions;
        }
    
        public ArtifactVersion getRecommendedVersion() {
            return recommendedVersion;
        }
    
        public List<Restriction> getRestrictions() {
            return restrictions;
        }
    
        /**
         * @deprecated VersionRange is immutable, cloning is not useful and even more an issue against the cache
         * @return a clone
         */
        @Deprecated
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 19K bytes
    - Click Count (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java

            this.familyFriendly = familyFriendly;
        }
    
        /**
         * Gets the restriction information.
         * @return the restriction
         */
        public String getRestriction() {
            return restriction;
        }
    
        /**
         * Sets the restriction information.
         * @param restriction the restriction to set
         */
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Nov 13 13:34:36 GMT 2025
    - 8.9K bytes
    - Click Count (0)
Back to Top