Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for normalizePath (0.5 seconds)

  1. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/SourcesRepository.kt

        private
        val KtFile.normalizedPath: String?
            get() = virtualFile.canonicalPath?.let { normaliseFileSeparators(it) }
    
        private
        val ApiSourceFile.normalizedPath: String
            get() = normaliseFileSeparators(currentFile.canonicalPath)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Apr 28 14:56:52 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  2. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/precommit/LicenseHeadersPrecommitPluginFuncTest.groovy

     */
    
     package org.acme;
     public class DualLicensed {
     }
     """
        }
    
        private String packageString(File sourceFile) {
            String normalizedPath = normalized(sourceFile.getPath())
            (normalizedPath.substring(normalizedPath.indexOf("src/main/java")) - "src/main/java/" - ("/" + sourceFile.getName())).replaceAll("/", ".")
        }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 10:22:28 GMT 2021
    - 4.1K bytes
    - Click Count (0)
Back to Top