Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 268 for Catalog (0.13 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/AbstractVersionCatalogTest.groovy

     * 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 com.google.common.collect.Interners
    import org.gradle.api.problems.internal.DefaultProblems
    import org.gradle.api.problems.internal.InternalProblems
    import org.gradle.api.problems.internal.NoOpProblemEmitter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isAvailableAddingCatalogToTableSqlName: (NotRequired - Default false)
        #   [true]
        #     Add catalog to table SQL name. (The table name on query is CATALOG.SCHEMA.TABLE)
        #
        #; isAvailableAddingCatalogToTableSqlName = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8.8K bytes
    - Viewed (0)
  3. platforms/jvm/distributions-jvm/build.gradle.kts

        pluginsRuntimeOnly(project(":plugins-jvm-test-suite"))
        pluginsRuntimeOnly(project(":plugins-test-report-aggregation"))
        pluginsRuntimeOnly(project(":plugins-version-catalog"))
        pluginsRuntimeOnly(project(":scala"))
        pluginsRuntimeOnly(project(":war"))
    
        pluginsRuntimeOnly(project(":java-platform")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitDependency.java

     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.NonNullApi;
    
    import javax.annotation.Nullable;
    
    /**
     * Data object for use with version catalog generation to encode module, version and if generated aliases should be shortened or qualified.
     */
    @NonNullApi
    public class BuildInitDependency {
        final String module;
        final String version;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/ProjectAccessorsSourceGenerator.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.initialization.ProjectDescriptor;
    
    import java.io.IOException;
    import java.io.UncheckedIOException;
    import java.io.Writer;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/RootProjectAccessorSourceGenerator.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.initialization.ProjectDescriptor;
    
    import java.io.IOException;
    import java.io.UncheckedIOException;
    import java.io.Writer;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/README.md

    `kubectl` compatible discovery information, optional admission chain, and versioned types.  It's first consumers are
    `k8s.io/kubernetes`, `k8s.io/kube-aggregator`, and `github.com/kubernetes-incubator/service-catalog`.
    
    
    ## Compatibility
    
    There are *NO compatibility guarantees* for this repository, yet.  It is in direct support of Kubernetes, so branches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. platforms/software/plugins-version-catalog/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """Provides the version catalog plugin."""
    
    dependencies {
        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":dependency-management"))
    
        api(libs.guava)
        api(libs.inject)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/BundleModel.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.List;
    
    public class BundleModel extends AbstractContextAwareModel {
        private final List<String> components;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/DependenciesAccessors.java

     * limitations under the License.
     */
    package org.gradle.initialization;
    
    import org.gradle.api.initialization.Settings;
    import org.gradle.api.initialization.dsl.VersionCatalogBuilder;
    import org.gradle.api.internal.catalog.ExternalModuleDependencyFactory;
    import org.gradle.api.internal.initialization.ClassLoaderScope;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.model.ObjectFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 28 14:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top