Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getChannelSuffix (0.2 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ResultsStoreHelper.java

            String channelWithoutPrefix = channel.substring(prefix.length());
            if (channelWithoutPrefix.startsWith(OperatingSystem.MAC_OS.getChannelSuffix())) {
                return OperatingSystem.MAC_OS;
            } else if (channelWithoutPrefix.startsWith(OperatingSystem.WINDOWS.getChannelSuffix())) {
                return OperatingSystem.WINDOWS;
            } else {
                return OperatingSystem.LINUX;
            }
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/OperatingSystem.java

        OperatingSystem(String channelSuffix, String coverageName) {
            this.channelSuffix = channelSuffix;
            this.coverageName = coverageName;
        }
    
        public String getChannelSuffix() {
            return channelSuffix;
        }
    
        public String getCoverageName() {
            return coverageName;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

            PreparedStatement statement = connection.prepareStatement(sql);
            statement.setString(1, "flakiness-detection" + os.getChannelSuffix() + "-master");
            statement.setString(2, "flakiness-detection" + os.getChannelSuffix() + "-release");
            statement.setTimestamp(3, timestamp);
            return statement;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top