Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 263 for requirement (0.23 sec)

  1. maven-compat/src/test/resources/org/apache/maven/artifact/resolver/ArtifactResolverTest.xml

            </requirement>
            <requirement>
              <role>org.apache.maven.artifact.metadata.ArtifactMetadataSource</role>
              <role-hint>test</role-hint>
              <field-name>source</field-name>
            </requirement>
            <requirement>
              <role>org.codehaus.plexus.PlexusContainer</role>
              <role-hint>default</role-hint>
              <field-name>container</field-name>
            </requirement>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Dec 30 20:43:28 GMT 2011
    - 2.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/toolchain/RequirementMatcherFactory.java

            private ExactMatcher(String provides) {
                this.provides = provides;
            }
    
            @Override
            public boolean matches(String requirement) {
                return provides.equalsIgnoreCase(requirement);
            }
    
            @Override
            public String toString() {
                return provides;
            }
        }
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchain.java

            provides.put(type, matcher);
        }
    
        @Override
        public boolean matchesRequirements(Map<String, String> requirements) {
            for (Map.Entry<String, String> requirement : requirements.entrySet()) {
                String key = requirement.getKey();
    
                RequirementMatcher matcher = provides.get(key);
    
                if (matcher == null) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/batch/v1/generated.proto

      optional string action = 1;
    
      // Represents the requirement on the container exit codes.
      // +optional
      optional PodFailurePolicyOnExitCodesRequirement onExitCodes = 2;
    
      // Represents the requirement on the pod conditions. The requirement is represented
      // as a list of pod condition patterns. The requirement is satisfied if at
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  5. apache-maven/README.txt

      -------------
    
      The full list of changes can be found at https://maven.apache.org/docs/history.html.
    
      System Requirements
      -------------------
    
      JDK:
        8 or above (this is to execute Maven - it still allows you to build against 1.3
        and prior JDK's).
      Memory:
        No minimum requirement.
      Disk:
        Approximately 10MB is required for the Maven installation itself. In addition to
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sat Mar 13 20:21:20 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  6. .github/renovate.json

        },
        {
          "matchPackageNames": ["org.eclipse.jetty:jetty-client"],
          "allowedVersions": "<10.0",
          "description": "JDK 11 requirement"
        },
        {
          "matchPackageNames": ["org.junit-pioneer:junit-pioneer"],
          "allowedVersions": "<2.0.0",
          "description": "JDK 11 requirement"
        },
        {
          "matchPackageNames": ["gradle"],
          "allowedVersions": "<8.0",
    Json
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Feb 18 14:22:17 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  7. common/scripts/metallb-native.yaml

                      properties:
                        matchExpressions:
                          description: matchExpressions is a list of label selector requirements.
                            The requirements are ANDed.
                          items:
                            description: A label selector requirement is a selector that
                              contains values, a key, and an operator that relates the
                              key and values.
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  8. ci/official/requirements_updater/updater.sh

        --enable_bzlmod=false \
        //:requirements_"$VERSION".update
      sed -i '/^#/d' requirements_lock_"$VERSION".txt
      mv requirements_lock_"$VERSION".txt ../../../requirements_lock_"$VERSION".txt
    done
    
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 15:05:45 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  9. maven-compat/src/main/resources/META-INF/maven/plugin.xml

          </configuration>
          <requirements>
            <requirement>
              <role>org.apache.maven.plugin.loader.PluginLoader</role>
              <field-name>pluginLoader</field-name>
            </requirement>
            <requirement>
              <role>org.apache.maven.lifecycle.binding.MojoBindingFactory</role>
              <field-name>bindingFactory</field-name>
            </requirement>
          </requirements>
        </mojo>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue May 28 09:19:32 GMT 2013
    - 9.3K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/DerivedGenerator.java

     * collection generator.
     *
     * <p>{@code GwtTestSuiteGenerator} expects every {@code DerivedIterator} implementation to provide
     * a one-arg constructor accepting its inner generator as an argument. This requirement enables it
     * to generate source code (since GWT cannot use reflection to generate the suites).
     *
     * @author Chris Povirk
     */
    @GwtCompatible
    public interface DerivedGenerator {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 1.3K bytes
    - Viewed (0)
Back to top