Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 268 for Catalog (0.11 sec)

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

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.catalog;
    
    import org.gradle.api.GradleException;
    
    import javax.annotation.Nullable;
    
    class GeneratedClassCompilationException extends GradleException {
        public GeneratedClassCompilationException(String message) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultExternalModuleDependencyBundle.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.catalog;
    
    import org.gradle.api.artifacts.ExternalModuleDependencyBundle;
    import org.gradle.api.artifacts.MinimalExternalModuleDependency;
    
    import java.util.ArrayList;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/management/VersionCatalogBuilderInternal.java

     * limitations under the License.
     */
    package org.gradle.internal.management;
    
    import org.gradle.api.initialization.dsl.VersionCatalogBuilder;
    import org.gradle.api.internal.catalog.DefaultVersionCatalog;
    
    public interface VersionCatalogBuilderInternal extends VersionCatalogBuilder {
        DefaultVersionCatalog build();
        void withContext(String context, Runnable action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 955 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

    import org.gradle.api.internal.attributes.ImmutableAttributesFactory
    import org.gradle.api.internal.catalog.problems.VersionCatalogErrorMessages
    import org.gradle.api.internal.catalog.problems.VersionCatalogProblemId
    import org.gradle.api.internal.catalog.problems.VersionCatalogProblemTestFor
    import org.gradle.api.internal.classpath.DefaultModuleRegistry
    import org.gradle.api.internal.classpath.ModuleRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/AliasNormalizer.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.catalog;
    
    import javax.annotation.Nullable;
    import java.util.regex.Pattern;
    
    abstract class AliasNormalizer {
        private final static Pattern SEPARATOR = Pattern.compile("[_.-]");
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DependencyValueSource.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.catalog;
    
    import org.gradle.api.provider.Property;
    import org.gradle.api.provider.ValueSource;
    import org.gradle.api.provider.ValueSourceParameters;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/groovy/catalog/settings.gradle

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 646 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-versionCatalogPlugin/groovy/settings.gradle

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 646 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/AbstractContextAwareModel.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.catalog;
    
    import javax.annotation.Nullable;
    import java.io.Serializable;
    
    public class AbstractContextAwareModel implements Serializable {
        protected final String context;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/CapabilityNotationParser.java

    /**
     * A concrete type for a generic {@link NotationParser} that parses {@link Capability}s.
     * <p>
     * This concrete type is necessary so that it can be injected into version catalog generated sources.
     */
    public interface CapabilityNotationParser extends NotationParser<Object, Capability> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top