Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 172 for destroy (0.03 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/ConnectionCoalescingTest.kt

            ) {
              // We obtained the coalesced connection. Let request1 violently destroy it.
              latch3.countDown()
              try {
                latch4.await()
              } catch (e: InterruptedException) {
                throw AssertionError(e)
              }
            }
          }
    
        // Get a reference to the connection so we can violently destroy it.
        val connection = AtomicReference<Connection?>()
        val client1 =
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 18.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/KerberosTest.java

            }
    
            KrbAsReqBuilder builder = new KrbAsReqBuilder(principalName, keytab);
            Credentials creds = builder.action().getCreds();
            builder.destroy();
    
            return Krb5Util.credsToTicket(creds);
        }
    
    
        public static Subject getInitiatorSubject ( KerberosPrincipal principal, String password, Long expire ) throws Exception {
    Registered: 2025-05-25 00:10
    - Last Modified: 2020-03-01 09:46
    - 11.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

        //                                                                           =========
        @Override
        public void rollback() {
            for (MultipartFormFile formFile : elementsFile.values()) {
                formFile.destroy();
            }
        }
    
        // ===================================================================================
        //                                                                              Finish
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 18.6K bytes
    - Viewed (0)
  4. tensorflow/c/eager/abstract_context.h

      // clients from directly destroying this object since it may manage its own
      // lifetime through ref counting. Thus clients MUST call Release() in order to
      // destroy an instance of this class.
      virtual void Release() = 0;
    
      // Creates an operation builder and ties it to this context.
      // The returned object can be used for setting operation's attributes,
    Registered: 2025-05-27 12:39
    - Last Modified: 2024-10-12 05:11
    - 3K bytes
    - Viewed (0)
  5. src/main/webapp/js/clipboard.min.js

    })}},{key:"defaultAction",value:function(t){return m("action",t)}},{key:"defaultTarget",value:function(t){t=m("target",t);if(t)return document.querySelector(t)}},{key:"defaultText",value:function(t){return m("text",t)}},{key:"destroy",value:function(){this.listener.destroy()}}])&&d(t.prototype,e),n&&d(t,n),r}()},828:function(t){var e;"undefined"==typeof Element||Element.prototype.matches||((e=Element.prototype).matches=e.matchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelec...
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-01-12 06:14
    - 8.9K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

                        mt.interrupt();
                    } catch (final Exception e) {}
                }
                if (currentProcess != null) {
                    try {
                        currentProcess.destroy();
                    } catch (final Exception e) {}
                }
                currentProcess = null;
    
            }
        }
    
        /**
         * @param command2
         * @param params
         * @return
    Registered: 2025-05-25 03:50
    - Last Modified: 2025-05-24 06:10
    - 13.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

        @PreDestroy
        public void destroy() {
            generating = false;
            thumbnailQueueThread.interrupt();
            try {
                thumbnailQueueThread.join(10000);
            } catch (final InterruptedException e) {
                logger.warn("Thumbnail thread is timeouted.", e);
            }
            generatorList.forEach(g -> {
                try {
                    g.destroy();
                } catch (final Exception e) {
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 21.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

                final List<String> list = entry.getValue();
                paramMap.put(entry.getKey(), list.toArray(new String[list.size()]));
            }
            return paramMap;
        }
    
        @Override
        public void destroy() {
            // nothing
        }
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 6.9K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java

                    }
                }
            }
    
            httpClient = closeableHttpClient;
        }
    
        @PreDestroy
        public void destroy() {
            if (httpClient != null) {
                try {
                    httpClient.close();
                } catch (final IOException e) {
                    logger.error("Failed to close httpClient.", e);
                }
    Registered: 2025-05-25 03:50
    - Last Modified: 2025-03-15 06:52
    - 10K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JodExtractorTest.java

            jodExtractor.officeManager = LocalOfficeManager.builder().portNumbers(12002).build();
            jodExtractor.init();
        }
    
        @Override
        protected void tearDown() throws Exception {
            jodExtractor.destroy();
            super.tearDown();
        }
    
        public void test_getText_ooow() {
            InputStream in = ResourceUtil.getResourceAsStream("extractor/ooo/test.odt");
    Registered: 2025-05-25 03:50
    - Last Modified: 2025-03-15 06:52
    - 9.5K bytes
    - Viewed (0)
Back to top