Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,347 for _this3 (0.03 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/MockHttp2Peer.kt

          check(type == -1)
          this.type = Http2.TYPE_DATA
          this.inFinished = inFinished
          this.streamId = streamId
          this.data = source.readByteString(length.toLong()).toByteArray()
        }
    
        override fun rstStream(
          streamId: Int,
          errorCode: ErrorCode,
        ) {
          check(type == -1)
          this.type = Http2.TYPE_RST_STREAM
          this.streamId = streamId
          this.errorCode = errorCode
        }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnection.kt

      // These properties are guarded by `this`.
    
      /**
       * If true, no new exchanges can be created on this connection. It is necessary to set this to
       * true when removing a connection from the pool; otherwise a racing caller might get it from the
       * pool when it shouldn't. Symmetrically, this must always be checked before returning a
       * connection from the pool.
       *
       * Once true this is always true. Guarded by this.
       */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java

            registerModifiedProperty("businessCategory");
            this.businessCategory = value;
        }
    
        public String getCarLicense() {
            checkSpecifiedProperty("carLicense");
            return convertEmptyToNull(carLicense);
        }
    
        public void setCarLicense(String value) {
            registerModifiedProperty("carLicense");
            this.carLicense = value;
        }
    
        public String getCity() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/curl/CurlRequest.java

         *
         * @param proxy the proxy
         * @return this CurlRequest instance
         */
        public CurlRequest proxy(final Proxy proxy) {
            this.proxy = proxy;
            return this;
        }
    
        /**
         * Sets the character encoding for the request.
         *
         * @param encoding the encoding
         * @return this CurlRequest instance
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilCommon.kt

     * `\u0000` or `\n`) or a non-ASCII character. Returns -1 if this string has no such characters.
     */
    internal fun String.indexOfControlOrNonAscii(): Int {
      for (i in 0 until length) {
        val c = this[i]
        if (c <= '\u001f' || c >= '\u007f') {
          return i
        }
      }
      return -1
    }
    
    /** Returns true if we should void putting this this header in an exception or toString(). */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/collection/LruHashSet.java

         */
        @Override
        public int size() {
            return map.size();
        }
    
        /**
         * Returns true if this set contains no elements.
         *
         * @return true if this set contains no elements.
         */
        @Override
        public boolean isEmpty() {
            return map.isEmpty();
        }
    
        /**
         * Returns true if this set contains the specified element.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

         * This is a required field indicating success, failure, or running status.
         */
        @Required
        public String jobStatus;
    
        /**
         * The target or scope of the job execution.
         * This is a required field describing what the job operated on.
         */
        @Required
        public String target;
    
        /**
         * The type of script that was executed for this job.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java

            }
            if (storeName != null) {
                builder.field(STORE_NAME.getPreferredName(), storeName);
            }
            if (this.params != null && !this.params.isEmpty()) {
                builder.field(PARAMS.getPreferredName(), this.params);
            }
            if (activeFeatures != null && !activeFeatures.isEmpty()) {
                builder.field(ACTIVE_FEATURES.getPreferredName(), activeFeatures);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  9. okhttp-sse/src/main/kotlin/okhttp3/sse/internal/RealEventSource.kt

          if (!response.isSuccessful) {
            listener.onFailure(this, null, response)
            return
          }
    
          val body = response.body
    
          if (!body.isEventStream()) {
            listener.onFailure(
              this,
              IllegalStateException("Invalid content-type: ${body.contentType()}"),
              response,
            )
            return
          }
    
          // This is a long-lived response. Cancel full-call timeouts.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:47:47 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsSearchLog.java

            registerModifiedProperty("accessType");
            this.accessType = value;
        }
    
        public String getClientIp() {
            checkSpecifiedProperty("clientIp");
            return convertEmptyToNull(clientIp);
        }
    
        public void setClientIp(String value) {
            registerModifiedProperty("clientIp");
            this.clientIp = value;
        }
    
        public Long getHitCount() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.2K bytes
    - Viewed (0)
Back to top