Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 748 for Capabilities (0.16 sec)

  1. gradle/dependency-management/capabilities.json

    // This file is a spike of what externally published rules for capabilities could look like.
    //
    // The idea is that such "rules" could be published, then applied by a plugin.
    //
    // Whenever two libraries provide the same capability, for example, "log4j" and "log4j-over-slfj4",
    // it's illegal to have both of them on the classpath. Use this file to declare that they provide
    // the same capability, and that we prefer to use slf4j in this case.
    [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/module-with-capabilities.module

            {
                "name": "api",
                "capabilities": [
                    { "group": "g1", "name": "m1", "version": "v1" },
                    { "group": "g2", "name": "m2", "version": "v2" }
                ],
                "attributes": { "usage": "compile" }
            },
            {
                "attributes": { "usage": "runtime", "packaging": "zip" },
                "capabilities": [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 627 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/declaring-capabilities.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 436 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ImmutableCapabilities.java

        }
    
        public static ImmutableCapabilities of(@Nullable Collection<? extends Capability> capabilities) {
            if (capabilities == null || capabilities.isEmpty()) {
                return EMPTY;
            }
            if (capabilities.size() == 1) {
                Capability single = capabilities.iterator().next();
                return of(single);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/component_capabilities.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[declaring-component-capabilities]]
    = Declaring Capabilities of a Library
    
    == Capabilities as first-level concept
    
    Components provide a number of features which are often orthogonal to the software architecture used to provide those features.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/CapabilitiesDescriber.java

            StringBuilder sb = new StringBuilder("capabilit");
            if (capabilities.size() > 1) {
                sb.append("ies ");
                sb.append(describeCapabilities(targetComponentId, capabilities));
            } else {
                sb.append("y ").append(describeCapabilities(targetComponentId, capabilities));
            }
            return sb.toString();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultCapabilitiesMetadata.java

        private final ImmutableCapabilities capabilities;
    
        public DefaultCapabilitiesMetadata(ImmutableCapabilities capabilities) {
            this.capabilities = capabilities;
        }
    
        @Override
        public List<? extends Capability> getCapabilities() {
            return capabilities.asSet().asList();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 18:10:47 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/staticpod/utils_linux.go

    			return err
    		}
    	}
    	pod.Spec.Containers[0].SecurityContext = &v1.SecurityContext{
    		Capabilities: &v1.Capabilities{
    			// We drop all capabilities that are added by default.
    			Drop: []v1.Capability{"ALL"},
    			// kube-apiserver binary has the file capability cap_net_bind_service applied to it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 14:41:12 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/VariantIdentityUniquenessVerifier.java

         */
        private static class VariantIdentity {
            private final ImmutableAttributes attributes;
            private final ImmutableCapabilities capabilities;
    
            private VariantIdentity(ImmutableAttributes attributes, ImmutableCapabilities capabilities) {
                this.attributes = attributes;
                this.capabilities = capabilities;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/VariantsDependencySubstitutionRulesIntegrationTest.groovy

            ]
    
        }
    
        def "can substitute a dependency without capabilities with a dependency with capabilities"() {
            mavenRepo.module("org", "lib", "1.0").publish()
    
            buildFile << """
    
                repositories {
                   maven { url "${mavenRepo.uri}" }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top