Search Options

Results per page
Sort
Preferred Languages
Advance

Results 3141 - 3150 of 3,853 for Uint (0.02 sec)

  1. fastapi/openapi/utils.py

                    status_code_param = response_signature.parameters.get("status_code")
                    if status_code_param is not None:
                        if isinstance(status_code_param.default, int):
                            status_code = str(status_code_param.default)
                operation.setdefault("responses", {}).setdefault(status_code, {})[
                    "description"
                ] = route.response_description
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 17 18:54:10 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

            }
    
            return updateScope;
        }
    
        private void fireEvent(int event, List<ResolutionListener> listeners, ResolutionNode node) {
            fireEvent(event, listeners, node, null);
        }
    
        private void fireEvent(int event, List<ResolutionListener> listeners, ResolutionNode node, Artifact replacement) {
            fireEvent(event, listeners, node, replacement, null);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TreeRangeMap.java

            if (rangeMapEntry != null && rangeMapEntry.getKey().equals(range)) {
              return rangeMapEntry.getValue();
            }
          }
          return null;
        }
    
        @Override
        public int size() {
          return entriesByLowerBound.size();
        }
    
        @Override
        Iterator<Entry<Range<K>, V>> entryIterator() {
          return entryIterable.iterator();
        }
      }
    
      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

            final Map<String, List<String>> paramListMap = new HashMap<>();
            final String[] pairs = queryString.split("&");
            try {
                for (final String pair : pairs) {
                    final int pos = pair.indexOf('=');
                    if (pos >= 0) {
                        final String key = urlCodec.decode(pair.substring(0, pos), enc);
                        List<String> list = paramListMap.get(key);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Handshake.kt

          other.tlsVersion == tlsVersion &&
          other.cipherSuite == cipherSuite &&
          other.peerCertificates == peerCertificates &&
          other.localCertificates == localCertificates
      }
    
      override fun hashCode(): Int {
        var result = 17
        result = 31 * result + tlsVersion.hashCode()
        result = 31 * result + cipherSuite.hashCode()
        result = 31 * result + peerCertificates.hashCode()
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java

                  @Override
                  public SampleElements<E> samples() {
                    return delegate.samples();
                  }
    
                  @Override
                  public E[] createArray(int length) {
                    return delegate.createArray(length);
                  }
    
                  @Override
                  public Iterable<E> order(List<E> insertionOrder) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/path-operation-configuration.md

    πŸ“€ πŸ“š πŸ”’ πŸ‘ˆ πŸ‘† πŸ’ͺ πŸšΆβ€β™€οΈ πŸ‘† *➑ πŸ› οΈ πŸ‘¨β€πŸŽ¨* πŸ”— ⚫️.
    
    /// warning
    
    πŸ‘€ πŸ‘ˆ πŸ‘« πŸ”’ πŸšΆβ€β™€οΈ πŸ”— *➑ πŸ› οΈ πŸ‘¨β€πŸŽ¨*, 🚫 πŸ‘† *➑ πŸ› οΈ πŸ”’*.
    
    ///
    
    ## πŸ“¨ πŸ‘” πŸ“Ÿ
    
    πŸ‘† πŸ’ͺ πŸ”¬ (πŸ‡ΊπŸ‡ΈπŸ”) `status_code` βš™οΈ πŸ“¨ πŸ‘† *➑ πŸ› οΈ*.
    
    πŸ‘† πŸ’ͺ πŸšΆβ€β™€οΈ πŸ”— `int` πŸ“Ÿ, πŸ’– `404`.
    
    βœ‹οΈ πŸš₯ πŸ‘† 🚫 πŸ’­ βš«οΈβ” πŸ”  πŸ”’ πŸ“Ÿ, πŸ‘† πŸ’ͺ βš™οΈ ⌨ πŸ“‰ `status`:
    
    //// tab | 🐍 3️⃣.6️⃣ &amp; πŸ”›
    
    ```Python hl_lines="3  17"
    {!> ../../docs_src/path_operation_configuration/tutorial001.py!}
    ```
    
    ////
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            }
            final Pattern pattern = Pattern.compile("^" + prefix + "([0-9]+):(.*)$");
            final String[] values = input.split("\n");
            final List<String> list = new ArrayList<>(values.length);
            int lineNum = 0;
            for (final String line : values) {
                final Matcher matcher = pattern.matcher(line);
                if (matcher.matches()) {
                    if (lineNum == 0) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. docs/fr/docs/features.md

    # DΓ©clare une variable comme Γ©tant une str
    # et profitez de l'aide de votre IDE dans cette fonction
    def main(user_id: str):
        return user_id
    
    
    # Un modèle Pydantic
    class User(BaseModel):
        id: int
        name: str
        joined: date
    ```
    Qui peuvent ensuite Γͺtre utilisΓ©s comme cela:
    
    ```Python
    my_user: User = User(id=3, name="John Doe", joined="2018-07-19")
    
    second_user_data = {
        "id": 4,
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/PairedStats.java

       *
       * <p><b>Note:</b> This hash code is consistent with exact equality of the calculated statistics,
       * including the floating point values. See the note on {@link #equals} for details.
       */
      @Override
      public int hashCode() {
        return Objects.hashCode(xStats, yStats, sumOfProductsOfDeltas);
      }
    
      @Override
      public String toString() {
        if (count() > 0) {
          return MoreObjects.toStringHelper(this)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top