Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 188 for Capabilities (0.23 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

     *
     * <p>Features are classified by their capabilities. Each variant of a feature provides at least
     * the same set of capabilities as the feature itself. Since all variants of a feature are derived
     * from the same sources, they all expose the same API or "content" and thus provide the same
     * capabilities. Some variants may expose additional capabilities than those of its owning feature,
     * for example with fat jars.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/NoMatchingCapabilitiesFailure.java

    import org.gradle.api.capabilities.Capability;
    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor.AssessedCandidate;
    
    import java.util.Collection;
    import java.util.List;
    
    /**
     * A {@link ResolutionFailure} that represents the situation when no variants can
     * be found in the list of candidates that have the requested capabilities.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/enable-core-dump.yaml.injected

                cpu: "2"
                memory: 1Gi
              requests:
                cpu: 100m
                memory: 128Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              privileged: false
              readOnlyRootFilesystem: false
              runAsGroup: 1337
              runAsNonRoot: true
              runAsUser: 1337
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AbstractComponentGraphResolveState.java

        }
    
        protected ImmutableCapabilities capabilitiesFor(ImmutableCapabilities capabilities) {
            if (capabilities.asSet().isEmpty()) {
                return ImmutableCapabilities.of(DefaultImmutableCapability.defaultCapabilityForComponent(getMetadata().getModuleVersionId()));
            } else {
                return capabilities;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/enable-core-dump-annotation.yaml.injected

                cpu: "2"
                memory: 1Gi
              requests:
                cpu: 100m
                memory: 128Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              privileged: false
              readOnlyRootFilesystem: false
              runAsGroup: 1337
              runAsNonRoot: true
              runAsUser: 1337
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. cni/test/testdata/pre/noname_calico.conflist

          "policy": {
            "type": "k8s"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          }
        },
        {
          "type": "portmap",
          "snat": true,
          "capabilities": {
            "portMappings": true
          }
        }
      ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 499 bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/GradleCustomizationSchemaBuildingComponent.kt

     * * importing types from functions that return or configure custom types.
     *
     * If object conversion is supported by the schema, also brings the basic DCL conversion capabilities
     * for resolving properties and member functions, see [conversionSupport]
     */
    internal
    fun EvaluationSchemaBuilder.gradleDslGeneralSchema() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. cni/test/testdata/pre/nover_calico.conflist

          "policy": {
            "type": "k8s"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          }
        },
        {
          "type": "portmap",
          "snat": true,
          "capabilities": {
            "portMappings": true
          }
        }
      ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 503 bytes
    - Viewed (0)
  9. cni/test/testdata/pre/noplugins_calico.conflist

          "policy": {
            "type": "k8s"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          }
        },
        {
          "type": "portmap",
          "snat": true,
          "capabilities": {
            "portMappings": true
          }
        }
      ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 527 bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

                version of bsh, instead of depending on the transitive version contributed by testng.  This lib contributes the "beanshell" capability,
                and the conflict resolution rules from capabilities.json ensures this is the version that is resolved.
    
                This is necessary because the beanshell project migrated coordinates from org.beanshell in version 2.0b4 to org.apache-extras.beanshell
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top