Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getFormattedId (0.1 sec)

  1. platforms/software/dependency-management/src/scripts/process-log.groovy

    class Counter {
        final int id
        Counter(int id) { this.id = id}
    
        int counter = -1
    
        void inc() {
            counter++
        }
    
        String getFormattedId() {
            String.format('%06d', id)
        }
    }
    
    logFile.eachLine { line ->
        if (line.contains('org.gradle.api.internal.artifacts.ivyservice.resolveengine.excludes.factories.LoggingExcludeFactory')) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top