Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getRawSchemeSpecificPart (0.17 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/jpms/ModuleJarFixture.groovy

            private ByteArrayOutputStream outputStream
    
            private ClassFile(URI uri) {
                super(uri, Kind.CLASS)
            }
    
            @Override
            String getName() { return super.uri.getRawSchemeSpecificPart() }
    
            @Override
            OutputStream openOutputStream() throws IOException {
                return outputStream = new ByteArrayOutputStream()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClasspathUtil.java

                    return new File(path.substring(0, path.length() - (name.length() + 1)));
                } else if (location.getScheme().equals("jar")) {
                    String schemeSpecificPart = location.getRawSchemeSpecificPart();
                    int pos = schemeSpecificPart.indexOf("!");
                    if (pos > 0) {
                        assert schemeSpecificPart.substring(pos + 1).endsWith("/" + name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top