Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 892 for flaw (0.03 sec)

  1. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

            private final Process process;
    
            /** The timeout duration in milliseconds. */
            private final long timeout;
    
            /** Flag indicating if the process has finished. */
            private boolean finished = false;
    
            /** Flag indicating if the process has been terminated. */
            private boolean teminated = false;
    
            /**
             * Constructor for MonitorThread.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        /** The total number of pages based on the page size and total record count. */
        protected int allPageCount;
    
        /** Flag indicating whether there is a next page available. */
        protected boolean existNextPage;
    
        /** Flag indicating whether there is a previous page available. */
        protected boolean existPrevPage;
    
        /** The record number of the first record on the current page (1-based). */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Stream.kt

          if (outFinished) {
            this.sink.finished = true
            notifyAll() // Because doReadTimeout() may have changed.
          }
        }
    
        // Only DATA frames are subject to flow-control. Transmit the HEADER frame if the connection
        // flow-control window is fully depleted.
        if (!flushHeaders) {
          withLock {
            flushHeaders = (connection.writeBytesTotal >= connection.writeBytesMaximum)
          }
        }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 18:57:05 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

            String logoutUrl = "https://sso.example.com/logout";
            authenticator.setLogoutUrl(logoutUrl);
    
            // Execute authentication flow
            LoginCredential loginResult = authenticator.getLoginCredential();
            assertNotNull(loginResult);
    
            TestLoginCredentialResolver resolver = new TestLoginCredentialResolver();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketReader.kt

                true
              } else {
                false
              }
          }
          else -> {
            if (reservedFlag1) throw ProtocolException("Unexpected rsv1 flag")
          }
        }
    
        val reservedFlag2 = b0 and B0_FLAG_RSV2 != 0
        if (reservedFlag2) throw ProtocolException("Unexpected rsv2 flag")
    
        val reservedFlag3 = b0 and B0_FLAG_RSV3 != 0
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Jul 29 22:04:11 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/MathTesting.java

      static final Iterable<Integer> ALL_INTEGER_CANDIDATES;
    
      static {
        ImmutableSet.Builder<Integer> intValues = ImmutableSet.builder();
        // Add boundary values manually to avoid over/under flow (this covers 2^N for 0 and 31).
        intValues.add(Integer.MAX_VALUE - 1, Integer.MAX_VALUE);
        // Add values up to 40. This covers cases like "square of a prime" and such.
        for (int i = 1; i <= 40; i++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

            /** The process to monitor and destroy. */
            private final Process p;
    
            /** The input stream thread reading process output. */
            private final InputStreamThread ist;
    
            /** Flag indicating if the destroyer has been executed. */
            private final AtomicBoolean executed = new AtomicBoolean(false);
    
            /** Timeout for process destruction in milliseconds. */
            private final long timeout;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketReaderTest.kt

        data.write("ca00".decodeHex()) // Empty pong, flag 1 set.
        assertFailsWith<ProtocolException> {
          clientReader.processNextFrame()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("Unexpected rsv1 flag")
        }
      }
    
      @Test fun reservedFlag1IsUnsupportedForControlFrames() {
        data.write("ca00".decodeHex()) // Empty pong, flag 1 set.
        assertFailsWith<ProtocolException> {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        @Resource
        protected SystemHelper systemHelper;
    
        /** Helper for document indexing operations */
        @Resource
        protected IndexingHelper indexingHelper;
    
        /** Flag indicating if crawling should be finished */
        protected boolean finishCrawling = false;
    
        /** Total execution time in milliseconds */
        protected long executeTime;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        protected String allRecordCountRelation;
    
        /** Total number of pages based on record count and page size. */
        protected int allPageCount;
    
        /** Flag indicating whether a next page exists. */
        protected boolean existNextPage;
    
        /** Flag indicating whether a previous page exists. */
        protected boolean existPrevPage;
    
        /** Starting record number for the current page. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
Back to top