Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 81 for classifierB (0.04 sec)

  1. pyproject.toml

    readme = "README.md"
    license = "MIT"
    license-files = ["LICENSE"]
    requires-python = ">=3.9"
    authors = [
        { name = "Sebastián Ramírez", email = "******@****.***" },
    ]
    classifiers = [
        "Intended Audience :: Information Technology",
        "Intended Audience :: System Administrators",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 3",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

        }
    
        @Override
        public Artifact createArtifactWithClassifier(
                String groupId, String artifactId, String version, String type, String classifier) {
            return artifactFactory.createArtifactWithClassifier(groupId, artifactId, version, type, classifier);
        }
    
        @Override
        public Artifact createProjectArtifact(String groupId, String artifactId, String metaVersionId) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 31.2K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/test/java/org/apache/maven/cli/props/MavenPropertiesTest.java

        private static final String KEY1A = "mvn\\:foo/bar";
        private static final String KEY2 = "foo:bar:version:type:classifier";
        private static final String KEY2A = "foo\\:bar\\:version\\:type\\:classifier";
        private static final String VALUE1 = "value";
    
        private MavenProperties properties;
    
        static final String TEST_PROPERTIES = """
                    #
                    # test.properties
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

              <type>String</type>
              <defaultValue>jar</defaultValue>
            </field>
            <field>
              <name>classifier</name>
              <version>4.0.0+</version>
              <description>
                <![CDATA[
                The classifier of the dependency. It is appended to
                the filename after the version. This allows:
                <ul>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 03:07:35 UTC 2025
    - 133.3K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    val = interpolate(org);
                    if (org != val) {
                        dependency.setType(val);
                        dependency.clearManagementKey();
                    }
                    // Classifier
                    org = dependency.getClassifier();
                    val = interpolate(org);
                    if (org != val) {
                        dependency.setClassifier(val);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/InetAddresses.java

       * href="http://tools.ietf.org/html/rfc4291#section-2.5.5.1">RFC 4291</a>.
       *
       * <p>NOTE: This method is different from {@link Inet6Address#isIPv4CompatibleAddress} in that it
       * more correctly classifies {@code "::"} and {@code "::1"} as proper IPv6 addresses (which they
       * are), NOT IPv4 compatible addresses (which they are generally NOT considered to be).
       *
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  7. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

            if (src != null) {
                if (sourceDominant || target.getClassifier() == null) {
                    target.setClassifier(src);
                    target.setLocation("classifier", source.getLocation("classifier"));
                }
            }
        }
    
        protected void mergeDependency_Scope(
                Dependency target, Dependency source, boolean sourceDominant, Map<Object, Object> context) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InetAddresses.java

       * href="http://tools.ietf.org/html/rfc4291#section-2.5.5.1">RFC 4291</a>.
       *
       * <p>NOTE: This method is different from {@link Inet6Address#isIPv4CompatibleAddress} in that it
       * more correctly classifies {@code "::"} and {@code "::1"} as proper IPv6 addresses (which they
       * are), NOT IPv4 compatible addresses (which they are generally NOT considered to be).
       *
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            }
    
            return dom;
        }
    
        /**
         * @deprecated Use MavenProjectHelper.attachArtifact(..) instead.
         */
        @Deprecated
        public void attachArtifact(String type, String classifier, File file) {}
    
        /**
         * @deprecated Use {@link org.apache.maven.model.io.ModelWriter}.
         */
        @Deprecated
        public void writeModel(Writer writer) throws IOException {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_3x.md

           <version>1.9.0</version>
         </dependency>
         ```
    
    
    ## Version 3.3.1
    
    _2016-05-28_
    
     *  Fix: The plaintext check in HttpLoggingInterceptor incorrectly classified
        newline characters as control characters. This is fixed.
     *  Fix: Don't crash reading non-ASCII characters in HTTP/2 headers or in cached
        HTTP headers.
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top