Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for longText (0.23 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

        for (policy in addressStates.values) {
          policy.scheduleOpener()
        }
      }
    
      /**
       * Performs maintenance on this pool, evicting the connection that has been idle the longest if
       * either it has exceeded the keep alive limit or the idle connections limit.
       *
       * Returns the duration in nanoseconds to sleep until the next scheduled call to this method.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

        // Start by looking for exact matches. We start at the leftmost label. For example, foo.bar.com
        // will look like: [foo, bar, com], [bar, com], [com]. The longest matching rule wins.
        var exactMatch: String? = null
        for (i in domainLabelsUtf8Bytes.indices) {
          val rule = publicSuffixListBytes.binarySearch(domainLabelsUtf8Bytes, i)
          if (rule != null) {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  3. api/go1.1.txt

    pkg reflect, type SelectCase struct, Dir SelectDir
    pkg reflect, type SelectCase struct, Send Value
    pkg reflect, type SelectDir int
    pkg reflect, type Type interface, ConvertibleTo(Type) bool
    pkg regexp, method (*Regexp) Longest()
    pkg regexp, method (*Regexp) Split(string, int) []string
    pkg regexp/syntax, const ClassNL = 4
    pkg regexp/syntax, const DotNL = 8
    pkg regexp/syntax, const EmptyBeginLine = 1
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

      return b == addressOffset + 4
    }
    
    /** Encodes an IPv6 address in canonical form according to RFC 5952. */
    internal fun inet6AddressToAscii(address: ByteArray): String {
      // Go through the address looking for the longest run of 0s. Each group is 2-bytes.
      // A run must be longer than one group (section 4.2.2).
      // If there are multiple equal runs, the first one must be used (section 4.2.3).
      var longestRunOffset = -1
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.14.md

            * `{WorkQueueName}_longest_running_processor_microseconds`
            * `{WorkQueueName}_retries`
        * Please convert to the following metrics:
            * `workqueue_depth`
            * `workqueue_adds_total`
            * `workqueue_queue_latency_seconds`
            * `workqueue_work_duration_seconds`
            * `workqueue_unfinished_work_seconds`
            * `workqueue_longest_running_processor_seconds`
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Mon Jun 14 22:06:39 GMT 2021
    - 271.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - CEL cost estimator no longer treats enums as unbounded strings when determining its length. Instead, the length is set to the longest possible enum value. ([#121085](https://github.com/kubernetes/kubernetes/pull/121085), [@jiahuif](https://github.com/jiahuif)) [SIG API Machinery]
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Apr 16 21:41:06 GMT 2024
    - 299.9K bytes
    - Viewed (1)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // This is to help clients reach servers in the most network-efficient way possible.
      // Clients can use the appropriate server address as per the CIDR that they match.
      // In case of multiple matches, clients should use the longest matching CIDR.
      // The server returns only those CIDRs that it thinks that the client can match.
      // For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                    return createElementToShorten(qualifierElement, qualifierClassId.asSingleFqName(), importAllInParent)
                }
            }
    
            return null
        }
    
        /**
         * Finds the longest qualifier in [wholeQualifierElement] which can be safely shortened in the [positionScopes].
         * [wholeQualifierClassId] is supposed to reflect the class which is referenced by the [wholeQualifierElement].
         *
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
Back to top