Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 353 for jack (0.02 sec)

  1. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

            assertTrue(helper.isCrawlerRunning());
    
            // Test setting to false
            helper.setCrawlerRunning(false);
            assertFalse(helper.isCrawlerRunning());
    
            // Test setting back to true
            helper.setCrawlerRunning(true);
            assertTrue(helper.isCrawlerRunning());
        }
    
        public void test_setCrawlerWaitMillis() {
            IntervalControlHelper helper = new IntervalControlHelper();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

            assertEquals("{labels.profile.title}", FessLabels.LABELS_PROFILE_TITLE);
            assertEquals("{labels.profile.update}", FessLabels.LABELS_PROFILE_UPDATE);
            assertEquals("{labels.profile.back}", FessLabels.LABELS_PROFILE_BACK);
            assertEquals("{labels.profile.placeholder_old_password}", FessLabels.LABELS_PROFILE_placeholder_old_password);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

          // to ensure the first test of either value will fail.
          safeMax = -1;
          safeMin = Integer.MAX_VALUE;
        }
        this.safeMin = safeMin;
        this.safeMax = safeMax;
    
        // This is a bit of a hack but lets us do quicker per-character checks in
        // the fast path code. The safe min/max values are very unlikely to extend
        // into the range of surrogate characters, but if they do we must not test
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 15:45:16 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ListenableFuture.java

     *
     * (We could consider releasing a listenablefuture:1.0.1 someday. But we would want to look into how
     * that affects users, especially users of the Android Gradle Plugin, since the plugin developers
     * put in a special hack for us: https://issuetracker.google.com/issues/131431257)
     */
    @DoNotMock("Use the methods in Futures (like immediateFuture) or SettableFuture")
    @NullMarked
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java

       *
       * @return the fully constructed {@link ThreadFactory}
       */
      public ThreadFactory build() {
        return doBuild(this);
      }
    
      // Split out so that the anonymous ThreadFactory can't contain a reference back to the builder.
      // At least, I assume that's why. TODO(cpovirk): Check, and maybe add a test for this.
      @SuppressWarnings("ThreadPriorityCheck") // We only propagate user requests (which we discourage).
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:35:26 UTC 2025
    - 9K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2.kt

        type: Int,
        flags: Int,
      ): String {
        if (flags == 0) return ""
        when (type) {
          // Special case types that have 0 or 1 flag.
          TYPE_SETTINGS, TYPE_PING -> return if (flags == FLAG_ACK) "ACK" else BINARY[flags]
          TYPE_PRIORITY, TYPE_RST_STREAM, TYPE_GOAWAY, TYPE_WINDOW_UPDATE -> return BINARY[flags]
        }
        val result = if (flags < FLAGS.size) FLAGS[flags]!! else BINARY[flags]
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/RequestWithPathTest.java

            assertFalse(testImplementation.isResolveInDfs());
    
            // Toggle to true
            testImplementation.setResolveInDfs(true);
            assertTrue(testImplementation.isResolveInDfs());
    
            // Toggle back to false
            testImplementation.setResolveInDfs(false);
            assertFalse(testImplementation.isResolveInDfs());
    
            // Multiple toggles
            for (int i = 0; i < 10; i++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  8. docs/smb3-features/06-witness-protocol-design.md

        
        private void scheduleServiceRetry() {
            scheduler.schedule(() -> {
                try {
                    // Test if service is back online
                    if (testWitnessService()) {
                        serviceAvailable = true;
                        log.info("Witness service is back online");
                        
                        // Re-register for notifications
                        reregisterNotifications();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.3.md

    * AWS: Add ap-south-1 to list of known AWS regions ([#28428](https://github.com/kubernetes/kubernetes/pull/28428), [@justinsb](https://github.com/justinsb))
    * Back porting critical vSphere bug fixes to release 1.3 ([#31993](https://github.com/kubernetes/kubernetes/pull/31993), [@dagnello](https://github.com/dagnello))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb1/dcerpc/DcerpcMessageTest.java

            TestMessage m = new TestMessage();
            m.ptype = 0; // request
            m.flags = 0x05;
            m.alloc_hint = 0;
            NdrBuffer buf = new NdrBuffer(new byte[1024], 0);
            m.encode(buf);
            // decode back
            buf.setIndex(0);
            m.decode_header(buf);
            assertEquals(0, m.ptype);
        }
    
        @Test
        void testDecodeHeaderInvalidVersion() {
            NdrBuffer buf = new NdrBuffer(new byte[10], 0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7K bytes
    - Viewed (0)
Back to top