Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 258 for Applications (0.04 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Interceptor.kt

     *    indicating that the call was canceled. The interceptor's exception is delivered to the current
     *    thread's [uncaught exception handler][Thread.UncaughtExceptionHandler]. By default this
     *    crashes the application on Android and prints a stacktrace on the JVM. (Crash reporting
     *    libraries may customize this behavior.)
     *
     * A good way to signal a failure is with a synthetic HTTP response:
     *
     * ```kotlin
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. okhttp/src/androidMain/kotlin/okhttp3/internal/platform/PlatformInitializer.kt

     */
    package okhttp3.internal.platform
    
    import android.content.Context
    import androidx.startup.Initializer
    
    /**
     * Androidx Startup initializer to ensure that the AndroidPlatform has access to the application context.
     */
    class PlatformInitializer : Initializer<Platform> {
      override fun create(context: Context): Platform {
        PlatformRegistry.applicationContext = context
    
        return Platform.get()
      }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 1K bytes
    - Viewed (1)
  3. src/test/java/org/codelibs/fess/helper/OsddHelperTest.java

            assertEquals("ISO-8859-1", osddHelper.encoding);
        }
    
        public void test_setContentType() {
            final OsddHelper osddHelper = new OsddHelper();
            osddHelper.setContentType("application/xml");
            assertEquals("application/xml", osddHelper.contentType);
        }
    
        public void test_isOsddLinkEnabled_blank_ssoType() {
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java

             */
            OptionalThing<FessUserBean> supply();
        }
    
        /**
         * The supplier of application type.
         */
        @FunctionalInterface
        public interface AppTypeSupplier {
            /**
             * Supply the application type.
             * @return The application type.
             */
            String supply();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

         */
        @Resource
        protected RelatedContentBhv relatedContentBhv;
    
        /**
         * Configuration settings for Fess application.
         * Contains various configuration parameters used throughout the application.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of related content entities.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/misc/DisposableUtil.java

    import java.beans.Introspector;
    import java.util.Deque;
    
    /**
     * Utility class for disposing of resources at the end of an application.
     * <p>
     * If there are resources that must be disposed of at the end of the application,
     * create a class that implements {@link Disposable} and register it with this class.
     * </p>
     *
     * @author koichik
     */
    public abstract class DisposableUtil {
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

            StreamUtil.split(slackWebhookUrls, "[,\\s]").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(url -> {
                try (CurlResponse response = Curl.post(url).header("Content-Type", "application/json").body(body).execute()) {
                    if (response.getHttpStatusCode() == 200) {
                        if (logger.isDebugEnabled()) {
                            logger.debug("Sent {} to {}.", body, url);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/GroupService.java

    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing group operations in the Fess application.
     * Provides CRUD operations for groups, including integration with LDAP manager
     * and user-group relationships. Handles group pagination, searching, and
     * maintaining data consistency between groups and associated users.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  9. samples/crawler/build.gradle.kts

    plugins {
      kotlin("jvm")
      application
    }
    
    application {
      mainClass.set("okhttp3.sample.Crawler")
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(libs.jsoup)
    }
    
    tasks.compileJava {
      options.isWarnings = false
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Feb 15 23:38:32 UTC 2022
    - 234 bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    application/vnd.ms-powerpoint=powerpoint\n\
    application/vnd.openxmlformats-officedocument.presentationml.presentation=powerpoint\n\
    application/vnd.oasis.opendocument.text=odt\n\
    application/vnd.oasis.opendocument.spreadsheet=ods\n\
    application/vnd.oasis.opendocument.presentation=odp\n\
    application/pdf=pdf\n\
    application/x-fictionbook+xml=fb2\n\
    application/e-pub+zip=epub\n\
    application/x-ibooks+zip=ibooks\n\
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
Back to top