Lines Matching refs:finally
129 **\[Compliant Code Example]** (**finally** Block)
141 } finally {
152 …, which ensures that it is held when the **finally** block executes. Calling `lock.unlock()` in th…
172 **\[Compliant Code Example]** (**finally** Block)
184 } finally {
191 …, which ensures that it is held when the **finally** block executes. Calling `lock.unlock()` in th…
335 } finally {
762 } finally {
770 In this compliant code example, the **finally** statement removes the temporary file after using it.
1425 } finally {
1520 …icious **combine.dtd** to send the result to the destination address and finally obtain the **file…
1967 #### Release resources in **try-with-resource** or **finally** during I/O operations
1971 …explicitly use of `close()` or another method in the **finally** block of the **try-catch-finally*…
1973 …finally**, so the resulting code is more concise and clear, and the resulting exceptions are more …
1975 **try-finally** is also used in scenarios such as `lock()` and `unlock()`.
2047 } finally {
2066 } finally {