Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,019 for startup (0.09 sec)

  1. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

        other.use {
          other.start(addressA, 0)
    
          // Same address is okay.
          other.start(addressA, 0)
    
          // Same address with bound port is okay.
          other.start(addressA, other.port)
    
          // Different address is not okay.
          assertFailsWith<IllegalStateException> {
            other.start(addressB, 0)
          }
    
          // Different port is not okay.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Aug 03 22:38:00 UTC 2025
    - 28K bytes
    - Viewed (0)
  2. samples/slack/src/main/java/okhttp3/slack/SlackClient.java

      public synchronized void awaitAccessToken(Timeout timeout) throws InterruptedIOException {
        while (session == null) {
          timeout.waitUntilNotified(this);
        }
      }
    
      /** Starts a real time messaging session. */
      public void startRtm() throws IOException {
        String accessToken;
        synchronized (this) {
          accessToken = session.access_token;
        }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jan 12 03:31:36 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_label.properties

    labels.wizard_button_register_again=Create Continuously
    labels.wizard_button_register_next=Create
    labels.wizard_start_crawling_title=Start Crawling
    labels.wizard_start_crawler_title=Crawler
    labels.wizard_start_crawling_desc=You can start crawling now by clicking "Start Crawling" button.
    labels.wizard_button_start_crawling=Start Crawling
    labels.wizard_button_finish=Skip
    labels.search_list_configuration=Search
    labels.search_list_button_delete=Delete
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java

            // Test subCommand property
            assertEquals(SmbComTransaction.TRANS2_SET_FILE_INFORMATION, response.getSubCommand());
    
            // Test status property - getStatus() is public
            assertEquals(0, response.getStatus());
    
            // Test numEntries property - getNumEntries() is public
            assertEquals(0, response.getNumEntries());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        // Status Constants
        // ============================================================
    
        /** Status constant representing ready state. */
        public static final String READY = "ready";
    
        /** Status constant representing running state. */
        public static final String RUNNING = "running";
    
        /** Status constant representing done/completed state. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * completed, has already been cancelled, or could not be cancelled for some other reason. If
       * successful, and this step has not started when {@code cancel} is called, this step should never
       * run.
       *
       * <p>If successful, causes the objects captured by this step (if already started) and its input
       * step(s) for later closing to be closed on their respective {@link Executor}s. If any such calls
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 98.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        assertTrue(executor.isTerminated());
        assertInterrupted();
      }
    
      /**
       * Wrapper around {@link Stopwatch} which also contains an "expected completion time." Creating a
       * {@code Completion} starts the underlying stopwatch.
       */
      private static final class Completion {
        final Stopwatch stopwatch;
        final long expectedCompletionWaitMillis;
    
        Completion(long expectedCompletionWaitMillis) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt

        val parse: MediaType? = "".toMediaTypeOrNull()
      }
    
      @Test
      fun mockResponse() {
        var mockResponse: MockResponse = MockResponse()
        var status: String = mockResponse.status
        status = mockResponse.status
        mockResponse.status = ""
        mockResponse = mockResponse.setResponseCode(0)
        var headers: Headers = mockResponse.headers
        var trailers: Headers = mockResponse.trailers
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 46.5K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java

        @ParameterizedTest
        @DisplayName("Test readParametersWireFormat with various status values")
        @ValueSource(ints = { 0, 1, 100, 255, 32767, 65535 })
        void testReadParametersWireFormatWithVariousStatus(int status) throws Exception {
            byte[] buffer = new byte[8];
            int bufferIndex = 0;
    
            SMBUtil.writeInt2(status, buffer, bufferIndex);
            bufferIndex += 2;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/io/Smb2ReadResponseTest.java

        }
    
        @Test
        @DisplayName("Should check if error response for buffer overflow status")
        void testIsErrorResponseStatusBufferOverflow() throws Exception {
            // Given - Use reflection to set status
            Field statusField = ServerMessageBlock2.class.getDeclaredField("status");
            statusField.setAccessible(true);
            statusField.set(response, NtStatus.NT_STATUS_BUFFER_OVERFLOW);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 22.1K bytes
    - Viewed (0)
Back to top