Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for otherNull (0.07 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/CompositeTestResults.java

        public String getUrlTo(CompositeTestResults model) {
            String otherUrl = model.getBaseUrl();
            String thisUrl = getBaseUrl();
    
            int maxPos = Math.min(thisUrl.length(), otherUrl.length());
            int endPrefix = 0;
            while (endPrefix < maxPos) {
                int endA = thisUrl.indexOf('/', endPrefix);
                int endB = otherUrl.indexOf('/', endPrefix);
                if (endA != endB || endA < 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top