Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,060 for aGroup (0.17 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParserTest.groovy

                        { "module": "m4", "endorseStrictVersions": true, "version": { "strictly": "v5" }, "group": "g4"},
                        { "module": "m5", "version": { "prefers": "v5", "requires": "v5", "rejects": ["v6", "v7"] }, "group": "g5"},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 38K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/IvyResourcePatternTest.groovy

            def artifact = artifact(group, module, version)
    
            expect:
            pattern.getLocation(artifact).path == expectedPath
    
            where:
            group       | module     | version | expectedPath
            "group"     | "projectA" | "1.2"   | 'prefix/group-projectA/1.2/ivys/1.2/ivy.xml'
            "org.group" | "projectA" | "1.2"   | 'prefix/org.group-projectA/1.2/ivys/1.2/ivy.xml'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/admission/exclusion/resources.go

    var included = []schema.GroupResource{
    	{Group: "", Resource: "bindings"},
    	{Group: "", Resource: "pods/attach"},
    	{Group: "", Resource: "pods/binding"},
    	{Group: "", Resource: "pods/eviction"},
    	{Group: "", Resource: "pods/exec"},
    	{Group: "", Resource: "pods/portforward"},
    
    	// ref: https://github.com/kubernetes/kubernetes/issues/122205#issuecomment-1927390823
    	{Group: "", Resource: "serviceaccounts/token"},
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/RepositoryContentDescriptor.java

        /**
         * Declares that an entire group shouldn't be searched for in this repository.
         *
         * @param group the group name
         */
        void excludeGroup(String group);
    
        /**
         * Declares that an entire group and its subgroups shouldn't be searched for in this repository.
         *
         * <p>
         * A subgroup is a group that starts with the given prefix and has a dot immediately after the prefix.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

            api.dependencies[0].coords == 'group.a:lib_a:4.5'
            api.dependencies[1].coords == 'group.b:utils:0.01'
        }
    
        def "publishes component with strict and prefer dependencies"() {
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
                apply plugin: 'ivy-publish'
    
                group = 'group'
                version = '1.0'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

            when:
            project.group >> "dep-group"
            project.name >> "project-name"
            project.version >> "dep-version"
    
            then:
            with (resolver.resolveComponent(ModuleVersionIdentifier, project.identityPath)) {
                group == "dep-group"
                name == "project-name"
                version == "dep-version"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/DependencyMapNotationConverterTest.groovy

        def "with artifact"() {
            when:
            def d = parser.parseNotation([group: 'org.gradle', name: 'gradle-core', version: '4.4-beta2', ext: 'mytype'])
    
            then:
            d.name == 'gradle-core'
            d.group == 'org.gradle'
            d.version == '4.4-beta2'
            d.versionConstraint.requiredVersion == '4.4-beta2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalRepoResolveIntegrationTest.groovy

        }
    
        def "mavenLocal includes jar for module with packaging 'pom'"() {
            given:
            m2.mavenRepo().module('group', 'projectB', '1.2').publish()
            def pomModule = m2.mavenRepo().module('group', 'projectA', '1.2')
            pomModule.packaging = 'pom'
            pomModule.dependsOn('group', 'projectB', '1.2')
            pomModule.artifact(type: "jar")
            pomModule.publish()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/api/plugins/catalog/internal/dependencies-notations.toml

    [libraries]
    simple = { group = "foo", name = "bar", version = "1.0" }
    simple-with-rich1 = { group = "foo", name = "bar", version = { prefer = "1.0" } }
    simple-with-rich2 = { group = "foo", name = "bar", version.prefer = "1.0" }
    simple-with-rich3 = { group = "foo", name = "bar", version.require = "1.0" }
    simple-with-rich4 = { group = "foo", name = "bar", version.strictly = "1.0" }
    simple-with-rich5 = { group = "foo", name = "bar", version = { rejectAll = true } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/dependency-notations.toml

    [libraries]
    simple = { group = "foo", name = "bar", version = "1.0" }
    simple-with-rich1 = { group = "foo", name = "bar", version = { prefer = "1.0" } }
    simple-with-rich2 = { group = "foo", name = "bar", version.prefer = "1.0" }
    simple-with-rich3 = { group = "foo", name = "bar", version.require = "1.0" }
    simple-with-rich4 = { group = "foo", name = "bar", version.strictly = "1.0" }
    simple-with-rich5 = { group = "foo", name = "bar", version = { rejectAll = true } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top