Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createRunner (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java

                    }
                });
                schedulerTime = now;
            }, fessConfig.getSchedulerMonitorIntervalAsInteger(), true);
        }
    
        @Override
        public LaJobRunner createRunner() {
            return new LaJobRunner().useAccessContext(
                    resource -> accessContextLogic.create(resource, OptionalThing::empty, OptionalThing::empty, () -> APP_TYPE));
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectPlan.kt

       *     we've successfully connected or because no further attempts should be made.
       */
      @Throws(IOException::class)
      internal fun connectTunnel(): ConnectResult {
        val nextTunnelRequest =
          createTunnel()
            ?: return ConnectResult(plan = this) // Success.
    
        // The proxy decided to close the connection after an auth challenge. Retry with different
        // auth credentials.
        rawSocket?.closeQuietly()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 18.6K bytes
    - Viewed (0)
Back to top