1. 21 8月, 2016 1 次提交
    • O
      [FIXED JENKINS-37332] - Prevent File descriptor leaks when reading manifests from JARs (#2516) · 96c97860
      Oleg Nenashev 提交于
      * [JENKINS-37332] - Improve diagnostics of non-closed streams during reading of the manifests in PluginManager
      
      * [JENKINS-37332] - Leakless processing of JarUrlConnection during Manifest parsing
      
      * [JENKINS-37332] - Also implement leak-safe method for retrieving file modification date
      
      * [JENKINS-37332] - Add spotcheck methods for manifest file access + Javadoc
      
      * [JENKINS-37332] - Also test multi-line and empty attributes in the test
      96c97860
  2. 16 7月, 2016 1 次提交
  3. 12 7月, 2016 1 次提交
  4. 21 5月, 2016 1 次提交
    • O
      [JENKINS-34854] - Migrate missing settings to SystemProperties (#2362) · 1d2b1517
      Oleg Nenashev 提交于
      * [JENKINS-34854] - Migrate missing Integer and Boolean properties to SystemProperties
      
      * [JENKINS-34854] - API methods for Long variables
      
      * [JENKINS-34854] - Migrate Long settings to SystemProperties
      
      * [JENKINS-34854] - Leftover change (I should use Save All)
      
      * [JENKINS-34854] - Some fixes in Long methods Javadoc and log messages
      1d2b1517
  5. 27 4月, 2016 1 次提交
  6. 26 4月, 2016 1 次提交
  7. 14 4月, 2016 1 次提交
  8. 12 4月, 2016 1 次提交
  9. 15 2月, 2016 1 次提交
  10. 13 2月, 2016 1 次提交
    • P
      FIXED JENKINS-15331 by changing Util.deleteContentsRecursive, Util.deleteFile... · 310c6747
      Peter Darton 提交于
      FIXED JENKINS-15331 by changing Util.deleteContentsRecursive, Util.deleteFile and Util.deleteRecursive so that they can retry failed deletions.
      The number of deletion attempts and the time it waits between deletes are configurable via system properties (like hudson.Util.noSymlink etc).
      Util.DELETION_MAX is set by -Dhudson.Util.deletionMax.  Default is 3 attempts.
      Util.WAIT_BETWEEN_DELETION_RETRIES is set by -Dhudson.Util.deletionRetryWait.  Defaults is 100 milliseconds.
      Util.GC_AFTER_FAILED_DELETE is set by -Dhudson.Util.performGCOnFailedDelete.  Default is false.
      
      Added unit-tests for new functionality.
      310c6747
  11. 19 11月, 2015 1 次提交
  12. 17 11月, 2015 1 次提交
  13. 05 10月, 2015 1 次提交
  14. 20 4月, 2015 1 次提交
  15. 21 3月, 2015 1 次提交
  16. 19 3月, 2015 1 次提交
  17. 09 10月, 2014 1 次提交
  18. 06 5月, 2014 1 次提交
  19. 04 5月, 2014 1 次提交
  20. 16 11月, 2013 1 次提交
    • M
      [FIXED JENKINS-20610] symlink FileAlreadyExistsException · d0f84c2e
      Marco Miller 提交于
      Retrying 3 times while waiting for 100 millis between retries (at
      recreating symlink after "deleting" it). Ends up throwing FAE exception
      if thrown for a 4th time in a row - as not much can be done at that
      point. A warning is logged in that case, prior to throwing the last FAE.
      d0f84c2e
  21. 15 11月, 2013 3 次提交
  22. 27 7月, 2013 1 次提交
    • L
      [FIXED JENKINS-16660] Allow variable names with dots in bracketed references. · 3376cf01
      Larry North 提交于
      Given these <variable,value> mappings: <A,a> and <A.B,a-b>, $A.B would
      evaluate to $a.B, as it currently does, and ${A.B} to a-b instead of the
      current ${A.B}.
      
      Existing ${A.B}-like references will break (not evaluate to ${A.B}) if
      there actually is an A.B variable defined, which I think is very
      unlikely.
      3376cf01
  23. 25 7月, 2013 3 次提交
  24. 15 6月, 2013 1 次提交
  25. 10 6月, 2013 1 次提交
  26. 01 6月, 2013 1 次提交
  27. 22 5月, 2013 1 次提交
  28. 02 5月, 2013 1 次提交
  29. 20 4月, 2013 1 次提交
    • K
      Don't let the error icon get clipped when the text is short. · 368d8c73
      Kohsuke Kawaguchi 提交于
      On Chrome (and possibly others), an inline element like span doesn't enlarge
      its size to cover its content, so the 1px place holder wasn't taking effect.
      
      To ensure the minimum height of 16px, make it an inline-block element. I'm
      not entirely sure how an inline-block element with no fixed width would behave,
      but with a bit of casual testing, the text inside seems to wrap OK.
      368d8c73
  30. 03 4月, 2013 2 次提交
  31. 29 3月, 2013 1 次提交
  32. 19 3月, 2013 2 次提交
  33. 14 3月, 2013 1 次提交
  34. 13 3月, 2013 1 次提交
    • K
      Massaging the fix. · 2f781863
      Kohsuke Kawaguchi 提交于
      - ID_FORMATTER is time zone sensitive, so comparing against # of
        milliseconds since the epoch won't be portable.
      
      - resolveSymlink can return a relative path.
      2f781863