Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for diffs (0.01 seconds)

  1. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                    options =
                        listOf(
                            "Generate diffs" to "",
                            "Skip diffs generation" to "--no-generate-diffs",
                        ),
                )
                text(
                    "scenario",
                    "",
                    display = ParameterDisplay.PROMPT,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 14:08:32 GMT 2026
    - 6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

                // Verify that the differences are approximately correct
                long diff1 = result1 - result0;
                long diff7 = result7 - result0;
                assertTrue("1 day should be approximately ONE_DAY_IN_MILLIS", Math.abs(diff1 - Constants.ONE_DAY_IN_MILLIS) < 10000);
                assertTrue("7 days should be approximately 7 * ONE_DAY_IN_MILLIS", Math.abs(diff7 - 7 * Constants.ONE_DAY_IN_MILLIS) < 10000);
            } catch (Exception e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 28.7K bytes
    - Click Count (0)
  3. .teamcity/scripts/CheckBadMerge.java

            // Git revision range syntax is part of git, not the shell; pass as-is.
            return getStdoutLines(new String[] {"git", "diff", "--name-only", commit + "^1.." + commit});
        }
    
        private static List<String> branchesOf(String commit) throws IOException, InterruptedException, ExecutionException {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
Back to Top