Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CH (0.15 sec)

  1. maven-core/src/test/resources/consumer/simple/pom.xml

      <version>0.9-${changelist}-SNAPSHOT</version>
      <packaging>pom</packaging>
      <name>Multi Chapter Parent Project</name>
    
      <!-- Optimized from https://github.com/sonatype/maven-example-en/tree/master/examples/ch-multi -->
      <modules>
        <module>simple-parent</module>
      </modules>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/MIT-slf4j-api-2.0.11.txt

     Copyright (c) 2004-2023 QOS.ch
     All rights reserved.
    
     Permission is hereby granted, free  of charge, to any person obtaining
     a  copy  of this  software  and  associated  documentation files  (the
     "Software"), to  deal in  the Software without  restriction, including
     without limitation  the rights to  use, copy, modify,  merge, publish,
     distribute,  sublicense, and/or sell  copies of  the Software,  and to
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 06:36:58 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

                    if (pos + 2 < decoded.length()) {
                        String hexStr = decoded.substring(pos + 1, pos + 3);
                        char ch = (char) Integer.parseInt(hexStr, 16);
                        decoded = decoded.substring(0, pos) + ch + decoded.substring(pos + 3);
                    }
                }
            }
            return decoded;
        }
    
        public int hashCode() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 11K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    toJavaSyntax(String unformatted) { append('"'); for (int i = 0; i < unformatted.length(); i++) { toJavaSyntax(unformatted.charAt(i)); } append('"'); } private void toJavaSyntax(char ch) { switch (ch) { case '"': append("\\\""); break; case '\n': append("\\n"); break; case '\r': append("\\r"); break; case '\t': append("\\t"); break; default: append(ch); } } } org/hamcrest/BaseMatcher.java org/hamcrest/BaseMatcher.java /* Copyright (c) 2000-2006 hamcrest.org */ package org.hamcrest; /** * BaseClass for all Matcher...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
Back to top