- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for disposed (0.04 sec)
-
src/main/java/org/codelibs/core/misc/DisposableUtil.java
disposables.remove(disposable); } /** * Disposes of all registered resources. */ public static synchronized void dispose() { while (!disposables.isEmpty()) { final Disposable disposable = disposables.removeLast(); try { disposable.dispose(); } catch (final Throwable t) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SSPContextTest.java
public String getNetbiosName() { return this.nbName; } @Override public void dispose() throws CIFSException { if (this.disposed) { throw new CIFSException("already disposed"); } this.disposed = true; this.established = false; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Disposable.java
* <p> * If there are resources that must be disposed of when the S2 container shuts down, * create a class that implements this interface and register it with {@link DisposableUtil}. * </p> * * @author koichik */ public interface Disposable { /** * Disposes of the resources held by this object. * */ void dispose();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SSPContext.java
* @return the name of the remote endpoint */ String getNetbiosName(); /** * Disposes of the security context and releases any associated resources. * @throws CIFSException if an error occurs during disposal */ void dispose() throws CIFSException; /** * Checks whether the specified security mechanism is supported.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5ContextTest.java
} @Nested @DisplayName("Dispose Tests") class DisposeTests { @Test @DisplayName("dispose delegates to GSSContext") void dispose_success() throws Exception { assertDoesNotThrow(() -> ctx.dispose()); verify(gssContext, times(1)).dispose(); } @Test @DisplayName("dispose wraps GSSException into SmbException")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Context.java
return super.toString(); } } @Override public void dispose() throws SmbException { if (this.gssContext != null) { try { this.gssContext.dispose(); } catch (GSSException e) { throw new SmbException("Context disposal failed", e); } } } /*
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13.5K bytes - Viewed (1) -
src/test/java/org/codelibs/core/message/MessageFormatterTest.java
*/ @Test public void testDispose() throws Exception { DisposableUtil.dispose(); assertThat(MessageFormatter.initialized, is(not(true))); MessageFormatter.getMessage("EMSG0000"); assertThat(MessageFormatter.initialized, is(true)); DisposableUtil.dispose(); assertThat(MessageFormatter.initialized, is(not(true))); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/misc/DisposableUtilTest.java
*/ @Before public void setUp() throws Exception { DisposableUtil.dispose(); } /** * @throws Exception */ @Test public void test1() throws Exception { DisposableUtil.add(new TestDisposable("a")); assertThat(DisposableUtil.disposables.size(), is(1)); DisposableUtil.dispose(); assertThat(count, is(1)); assertThat(names, is("a"));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SpnegoContextTest.java
verify(this.mechContext, times(1)).getFlags(); } @Test @DisplayName("dispose delegates to underlying mechanism context") void testDisposeDelegates() throws Exception { SpnegoContext ctx = newContext(); ctx.dispose(); verify(this.mechContext, times(1)).dispose(); } @Test @DisplayName("calculateMIC throws when context not established")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/factory/BeanDescFactory.java
* </p> * * <pre> * BeanDesc beanDesc = BeanDescFactory.getBeanDesc(Foo.class); * </pre> * <p> * {@link BeanDesc} is cached. To clear the cache, call {@link DisposableUtil#dispose()}. * </p> * * @author higa * @see BeanDesc * @see DisposableUtil */ public abstract class BeanDescFactory { /** * Do not instantiate. */ protected BeanDescFactory() {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.8K bytes - Viewed (0)