Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 334 for enables (0.18 sec)

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

       * order for a socket to be compatible the enabled cipher suites and protocols must intersect.
       *
       * For cipher suites, at least one of the [required cipher suites][cipherSuites] must match the
       * socket's enabled cipher suites. If there are no required cipher suites the socket must have at
       * least one cipher suite enabled.
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java

        /**
         * Whether this job is related to crawling.
         */
        public String crawler;
    
        /**
         * Whether job logging is enabled.
         */
        public String jobLogging;
    
        /**
         * Whether the scheduled job is available/enabled.
         */
        public String available;
    
        /**
         * The sort order for displaying this scheduled job.
         */
        @Required
        @Min(value = 0)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_details.jsp

                                            <td><c:if test="${jobLogging=='on'}">
                                                <la:message key="labels.enabled"/>
                                            </c:if> <c:if test="${jobLogging!='on'}">
                                                <la:message key="labels.disabled"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 12K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/log/Logger.java

         */
        protected Logger(final Class<?> clazz) {
            log = factory.getLoggerAdapter(clazz);
        }
    
        /**
         * Checks if debug level is enabled.
         *
         * @return true if debug is enabled, false otherwise
         */
        public boolean isDebugEnabled() {
            return log.isDebugEnabled();
        }
    
        /**
         * Outputs DEBUG information.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/OsddHelper.java

                logger.warn("{} was not a file.", path);
                return null;
            }
            return osddFile;
        }
    
        /**
         * Checks if OSDD link is enabled.
         *
         * @return true if OSDD link is enabled
         */
        protected boolean isOsddLinkEnabled() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String osddLinkEnabled = fessConfig.getOsddLinkEnabled();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  6. okhttp/src/main/resources/META-INF/native-image/okhttp/okhttp/native-image.properties

    Args = -H:+AddAllCharsets --enable-http --enable-https --features=okhttp3.internal.graal.OkHttpFeature --report-unsupported-elements-at-runtime...
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Dec 21 08:56:29 UTC 2024
    - 144 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java

            }
    
            /**
             * Checks if the cache option is enabled in the configuration.
             * Returns true if "cache" is present in the values or if there's a single "true" value
             * for backward compatibility.
             *
             * @return true if caching is enabled, false otherwise
             */
            public boolean isCache() {
                for (final String value : values) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  8. .junit.run/Not Slow.run.xml

        <option name="VM_PARAMETERS" value="-ea -Djunit.jupiter.extensions.autodetection.enabled=true" />
        <option name="PARAMETERS" value="" />
        <option name="TEST_SEARCH_SCOPE">
          <value defaultName="wholeProject" />
        </option>
        <tag value="!Slow &amp; !Slowish &amp; !Remote &amp; !Android" />
        <method v="2">
          <option name="Make" enabled="true" />
        </method>
      </configuration>
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Nov 21 13:28:45 UTC 2020
    - 730 bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp

                                                <label for="jobLogging" class="form-check-label">
                                                    <la:message key="labels.enabled"/>
                                                </label>
                                            </div>
                                        </div>
                                    </div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_3x.md

        mutual TLS where these roles are reversed.
    
        These classes make it possible to enable HTTPS in MockWebServer in [just a few lines of
        code][https_server_sample].
    
     *  **OkHttp now supports prior knowledge cleartext HTTP/2.** Enable this by setting
        `Protocol.H2_PRIOR_KNOWLEDGE` as the lone protocol on an `OkHttpClient.Builder`. This mode
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top