Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for findBundle (0.24 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/VersionCatalogView.java

                return Optional.of(dependencyFactory.create(normalizedAlias));
            }
            return Optional.empty();
        }
    
        @Override
        public final Optional<Provider<ExternalModuleDependencyBundle>> findBundle(String alias) {
            String normalizedBundle = normalize(alias);
            if (config.hasBundle(normalizedBundle)) {
                return Optional.of(bundleFactory.createBundle(normalizedBundle));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionCatalog.java

         * Note: Bundle will be automatically normalized: '-', '_' and '.' will be replaced with '.'
         * </p>
         * @param alias the alias of the bundle
         */
        Optional<Provider<ExternalModuleDependencyBundle>> findBundle(String alias);
    
        /**
         * Returns the version constraint with the corresponding alias in the catalog.
         * <p>
         * Note: Alias will be automatically normalized: '-', '_' and '.' will be replaced with '.'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        assert libs.findLibrary('my_lib').present
                        assert libs.findLibrary('my.lib').present
    
                        assert libs.findBundle('my-all').present
                        assert libs.findBundle('my_all').present
                        assert libs.findBundle('my.all').present
    
                        assert libs.findPlugin('my-plug').present
                        assert libs.findPlugin('my_plug').present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
Back to top