Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 272 for connected (0.05 sec)

  1. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

      public val port: Int
        get() = socketAddress.port
    
      public val hostName: String
        get() = socketAddress.address.hostName
    
      /** Returns the address of this server, to connect to it as an HTTP proxy. */
      public val proxyAddress: Proxy
        get() = Proxy(Proxy.Type.HTTP, socketAddress)
    
      /**
       * True if ALPN is used on incoming HTTPS connections to negotiate a protocol like HTTP/1.1 or
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 02 20:36:00 UTC 2025
    - 40.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/Booleans.java

       *
       * @param collection a collection of {@code Boolean} objects
       * @return an array containing the same values as {@code collection}, in the same order, converted
       *     to primitives
       * @throws NullPointerException if {@code collection} or any of its elements is null
       */
      public static boolean[] toArray(Collection<Boolean> collection) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/Booleans.java

       *
       * @param collection a collection of {@code Boolean} objects
       * @return an array containing the same values as {@code collection}, in the same order, converted
       *     to primitives
       * @throws NullPointerException if {@code collection} or any of its elements is null
       */
      public static boolean[] toArray(Collection<Boolean> collection) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/Invokable.java

       * @throws IllegalArgumentException if the number of actual and formal parameters differ; if an
       *     unwrapping conversion for primitive arguments fails; or if, after possible unwrapping, a
       *     parameter value cannot be converted to the corresponding formal parameter type by a method
       *     invocation conversion.
       * @throws InvocationTargetException if the underlying method or constructor throws an exception.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

         * Converts a crawling path to the appropriate protocol format.
         * Handles various path formats and adds proper protocol prefixes.
         *
         * @param path the original path to convert
         * @return the converted path with appropriate protocol prefix
         */
        protected String convertCrawlingPath(final String path) {
            if (path.startsWith("http:") || path.startsWith("https:") || path.startsWith("smb:") || path.startsWith("smb1:")
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  6. okcurl/src/main/kotlin/okhttp3/curl/Main.kt

      val userAgent: String by option(
        "-A",
        "--user-agent",
      ).help(
        "User-Agent to send to server",
      ).default(NAME + "/" + versionString())
    
      val connectTimeout: Int by option(
        "--connect-timeout",
      ).help(
        "Maximum time allowed for connection (seconds)",
      ).int()
        .default(DEFAULT_TIMEOUT)
    
      val readTimeout: Int by option("--read-timeout")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 6K bytes
    - Viewed (0)
  7. src/main/resources/fess_message.properties

    constraints.TypeLong.message = {item} must be a number.
    constraints.TypeFloat.message = {item} must be a number.
    constraints.TypeDouble.message = {item} must be a number.
    constraints.TypeAny.message = {item} cannot be converted to {propertyType}.
    constraints.UriType.message = {item} has an unrecognized URI.
    constraints.CronExpression.message = {item} is not a valid CRON expression.
    
    # ----------------------------------------------------------
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_en.properties

    constraints.TypeLong.message = {item} must be a number.
    constraints.TypeFloat.message = {item} must be a number.
    constraints.TypeDouble.message = {item} must be a number.
    constraints.TypeAny.message = {item} cannot be converted to {propertyType}.
    constraints.UriType.message = {item} has an unrecognized URI.
    constraints.CronExpression.message = {item} is not a valid CRON expression.
    
    # ----------------------------------------------------------
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  9. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

            setHeader("Connection", "Upgrade")
            setHeader("Upgrade", "websocket")
            webSocketListener = listener
          }
    
        /**
         * Configures this response to be served as a response to an HTTP CONNECT request, either for
         * doing HTTPS through an HTTP proxy, or HTTP/2 prior knowledge through an HTTP proxy.
         *
         * When a new connection is received, all in-tunnel responses are served before the connection is
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java

        /**
         * Creates an EditBody from a StemmerOverrideItem entity for API responses.
         *
         * @param entity the StemmerOverrideItem entity to convert
         * @param dictId the dictionary ID
         * @return the converted EditBody object
         */
        protected EditBody createEditBody(final StemmerOverrideItem entity, final String dictId) {
            final EditBody body = new EditBody();
            body.id = entity.getId();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.8K bytes
    - Viewed (0)
Back to top