Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2491 - 2500 of 4,205 for inst (0.02 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

                if (!repositoryEquals(it1.next(), it2.next())) {
                    return false;
                }
            }
    
            return true;
        }
    
        public static int repositoriesHashCode(List<RemoteRepository> repositories) {
            int result = 17;
            for (RemoteRepository repository : repositories) {
                result = 31 * result + repositoryHashCode(repository);
            }
            return result;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 04 18:33:16 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial001_py39.py hl[1] *}
    
    ### Eine `HTTPException` in Ihrem Code auslösen { #raise-an-httpexception-in-your-code }
    
    `HTTPException` ist eine normale Python-Exception mit zusätzlichen Daten, die für APIs relevant sind.
    
    Weil es eine Python-Exception ist, geben Sie sie nicht zurück (`return`), sondern lösen sie aus (`raise`).
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  3. docs/zh/docs/tutorial/path-params.md

    本例把 `item_id` 的类型声明为 `int`。
    
    /// check | 检查
    
    类型声明将为函数提供错误检查、代码补全等编辑器支持。
    
    ///
    
    ## 数据<abbr title="也称为:序列化、解析">转换</abbr>
    
    运行示例并访问 <a href="http://127.0.0.1:8000/items/3" class="external-link" target="_blank">http://127.0.0.1:8000/items/3</a>,返回的响应如下:
    
    ```JSON
    {"item_id":3}
    ```
    
    /// check | 检查
    
    注意,函数接收并返回的值是 `3`( `int`),不是 `"3"`(`str`)。
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Dec 15 16:43:19 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/path-params.md

          "input": "foo"
        }
      ]
    }
    ```
    
    porque o parâmetro de path `item_id` tinha o valor `"foo"`, que não é um `int`.
    
    O mesmo erro apareceria se você fornecesse um `float` em vez de um `int`, como em: <a href="http://127.0.0.1:8000/items/4.2" class="external-link" target="_blank">http://127.0.0.1:8000/items/4.2</a>
    
    /// check | Verifique
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  5. cmd/bucket-listobjects-handlers.go

    	var nodeIndex int
    	if subToken, nodeIndex = parseRequestToken(token); nodeIndex >= 0 {
    		proxied, success = proxyRequestByNodeIndex(ctx, w, r, nodeIndex, returnErr)
    	}
    	return subToken, proxied, success
    }
    
    func proxyRequestByNodeIndex(ctx context.Context, w http.ResponseWriter, r *http.Request, index int, returnErr bool) (proxied, success bool) {
    	if len(globalProxyEndpoints) == 0 {
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  6. cmd/erasure-encode_test.go

    func (badDisk) Hostname() string {
    	return ""
    }
    
    const oneMiByte = 1 * humanize.MiByte
    
    var erasureEncodeTests = []struct {
    	dataBlocks                   int
    	onDisks, offDisks            int
    	blocksize, data              int64
    	offset                       int
    	algorithm                    BitrotAlgorithm
    	shouldFail, shouldFailQuorum bool
    }{
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  7. docs/de/llm-prompt.md

    * «`foo` as a `type`»: «`foo`, ein `type`»
    * «FastAPI's X»: «FastAPIs X»
    * «Starlette's Y»: «Starlettes Y»
    * «X is case-sensitive»: «Groß-/Klein­schrei­bung ist relevant in X»
    * «X is case-insensitive»: «Groß-/Klein­schrei­bung ist nicht relevant in X»
    * «standard Python»: «Standard-Python»
    * «deprecated»: «deprecatet»
    
    
    ### Other rules
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 09:39:53 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/NullsFirstOrdering.java

        implements Serializable {
      final Ordering<? super T> ordering;
    
      NullsFirstOrdering(Ordering<? super T> ordering) {
        this.ordering = ordering;
      }
    
      @Override
      public int compare(@Nullable T left, @Nullable T right) {
        if (left == right) {
          return 0;
        }
        if (left == null) {
          return RIGHT_IS_GREATER;
        }
        if (right == null) {
          return LEFT_IS_GREATER;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Jun 04 13:03:16 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  9. fess-crawler/src/test/resources/extractor/program/test.cpp

    /* Test Code */
    #include <sdtio.h>
    
    
    int main(void)
    {
        printf("テスト");
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 81 bytes
    - Viewed (0)
  10. okhttp-dnsoverhttps/api/okhttp-dnsoverhttps.api

    	public final fun resolvePrivateAddresses ()Z
    	public final fun resolvePublicAddresses ()Z
    	public final fun url ()Lokhttp3/HttpUrl;
    }
    
    public final class okhttp3/dnsoverhttps/DnsOverHttps$Builder {
    	public fun <init> ()V
    	public final fun bootstrapDnsHosts (Ljava/util/List;)Lokhttp3/dnsoverhttps/DnsOverHttps$Builder;
    	public final fun bootstrapDnsHosts ([Ljava/net/InetAddress;)Lokhttp3/dnsoverhttps/DnsOverHttps$Builder;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Feb 27 15:23:43 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top