Search Options

Results per page
Sort
Preferred Languages
Advance

Results 911 - 920 of 1,044 for query2 (0.1 sec)

  1. guava/src/com/google/common/collect/Multisets.java

              Supplier<M> multisetSupplier) {
        return CollectCollectors.toMultiset(elementFunction, countFunction, multisetSupplier);
      }
    
      /**
       * Returns an unmodifiable view of the specified multiset. Query operations on the returned
       * multiset "read through" to the specified multiset, and attempts to modify the returned multiset
       * result in an {@link UnsupportedOperationException}.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

        val encodedPathSegments: List<String> = httpUrl.encodedPathSegments
        val pathSegments: List<String> = httpUrl.pathSegments
        val encodedQuery: String? = httpUrl.encodedQuery
        val query: String? = httpUrl.query
        val querySize: Int = httpUrl.querySize
        val queryParameter: String? = httpUrl.queryParameter("")
        val queryParameterNames: Set<String> = httpUrl.queryParameterNames
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. docs/zh/docs/tutorial/request-files.md

    ## 定义 `File` 参数
    
    创建文件(`File`)参数的方式与 `Body` 和 `Form` 一样:
    
    ```Python hl_lines="7"
    {!../../docs_src/request_files/tutorial001.py!}
    ```
    
    /// info | "说明"
    
    `File` 是直接继承自 `Form` 的类。
    
    注意,从 `fastapi` 导入的 `Query`、`Path`、`File` 等项,实际上是返回特定类的函数。
    
    ///
    
    /// tip | "提示"
    
    声明文件体必须使用 `File`,否则,FastAPI 会把该参数当作查询参数或请求体(JSON)参数。
    
    ///
    
    文件作为「表单数据」上传。
    
    如果把*路径操作函数*参数的类型声明为 `bytes`,**FastAPI** 将以 `bytes` 形式读取和接收文件内容。
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. docs/pt/docs/advanced/events.md

    ///
    
    ### `startup` e `shutdown` juntos
    
    Há uma grande chance que a lógica para sua *inicialização* e *encerramento* esteja conectada, você pode querer iniciar alguma coisa e então finalizá-la, adquirir um recurso e então liberá-lo, etc.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/Cache.java

       * unprivileged user may return a resource accessible only to a privileged user making a similar
       * call. To prevent this problem, create a key object that includes all values that affect the
       * result of the query. Or use {@code LoadingCache.get(K)}, which lacks the ability to refer to
       * state other than that in the key.
       *
       * <p><b>Warning:</b> as with {@link CacheLoader#load}, {@code loader} <b>must not</b> return
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  6. docs/ru/docs/tutorial/request-files.md

    {!> ../../docs_src/request_files/tutorial001.py!}
    ```
    
    ////
    
    /// info | "Дополнительная информация"
    
    `File` - это класс, который наследуется непосредственно от `Form`.
    
    Но помните, что когда вы импортируете `Query`, `Path`, `File` и другие из `fastapi`, на самом деле это функции, которые возвращают специальные классы.
    
    ///
    
    /// tip | "Подсказка"
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. tests/associations_belongs_to_test.go

    	// Find
    	var user2 User
    	DB.Find(&user2, "id = ?", user.ID)
    	pointerOfUser := &user2
    	if err := DB.Model(&pointerOfUser).Association("Company").Find(&user2.Company); err != nil {
    		t.Errorf("failed to query users, got error %#v", err)
    	}
    	user2.Manager = &User{}
    	DB.Model(&user2).Association("Manager").Find(user2.Manager)
    	CheckUser(t, user2, user)
    
    	// Count
    	AssertAssociationCount(t, user, "Company", 1, "")
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/bsbhv/BsSearchLogBhv.java

                result.setHitCountRelation(DfTypeUtil.toString(source.get("hitCountRelation")));
                result.setLanguages(DfTypeUtil.toString(source.get("languages")));
                result.setQueryId(DfTypeUtil.toString(source.get("queryId")));
                result.setQueryOffset(DfTypeUtil.toInteger(source.get("queryOffset")));
                result.setQueryPageSize(DfTypeUtil.toInteger(source.get("queryPageSize")));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. cmd/post-policy_test.go

    	var opts ObjectOptions
    
    	// The final name of the upload object
    	targetObj := keyName + "/upload.txt"
    
    	// The url of success_action_redirect field
    	redirectURL, err := url.Parse("http://www.google.com?query=value")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Register the API end points with Erasure/FS object layer.
    	apiRouter := initTestAPIEndPoints(obj, []string{"PostPolicy"})
    
    	credentials := globalActiveCred
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. README.md

    Learn more about the
    [TensorFlow community](https://www.tensorflow.org/community) and how to
    [contribute](https://www.tensorflow.org/community/contribute).
    
    ## Courses
    
    * [Coursera](https://www.coursera.org/search?query=TensorFlow)
    * [Udacity](https://www.udacity.com/courses/all?search=TensorFlow)
    * [Edx](https://www.edx.org/search?q=TensorFlow)
    
    ## License
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top