Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 491 - 500 of 3,772 for getI (0.02 seconds)

  1. build-logic/src/main/kotlin/okhttp3/buildsupport/OkHttpBuildUtils.kt

    import org.gradle.api.Project
    
    val Project.platform: String
      get() = findProperty("okhttp.platform")?.toString() ?: "jdk9"
    
    val Project.testJavaVersion: Int
      get() = findProperty("test.java.version")?.toString()?.toInt() ?: 21
    
    val Project.androidBuild: Boolean
      get() = findProperty("androidBuild")?.toString()?.toBoolean() ?: false
    
    val Project.alpnBootVersion: String?
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 11 02:37:00 GMT 2026
    - 1K bytes
    - Click Count (0)
  2. tests/test_invalid_path_param.py

            class Item(BaseModel):
                title: str
    
            @app.get("/items/{id}")
            def read_items(id: list[Item]):
                pass  # pragma: no cover
    
    
    def test_invalid_tuple():
        with pytest.raises(AssertionError):
            app = FastAPI()
    
            class Item(BaseModel):
                title: str
    
            @app.get("/items/{id}")
            def read_items(id: tuple[Item, Item]):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  3. tests/test_security_http_digest_optional.py

    client = TestClient(app)
    
    
    def test_security_http_digest():
        response = client.get("/users/me", headers={"Authorization": "Digest foobar"})
        assert response.status_code == 200, response.text
        assert response.json() == {"scheme": "Digest", "credentials": "foobar"}
    
    
    def test_security_http_digest_no_credentials():
        response = client.get("/users/me")
        assert response.status_code == 200, response.text
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/it/search/FavoritesApiTests.java

            JsonPath jsonPath = JsonPath.from(searchResponse);
            String queryId = jsonPath.getString("query_id");
            List<Map<String, Object>> docs = jsonPath.getList("data");
    
            if (docs != null && !docs.isEmpty()) {
                String docId = docs.get(0).get("doc_id").toString();
    
                // Set favorite
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsScheduledJobBhv.java

                result.setName(DfTypeUtil.toString(source.get("name")));
                result.setScriptData(DfTypeUtil.toString(source.get("scriptData")));
                result.setScriptType(DfTypeUtil.toString(source.get("scriptType")));
                result.setSortOrder(DfTypeUtil.toInteger(source.get("sortOrder")));
                result.setTarget(DfTypeUtil.toString(source.get("target")));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  6. tests/test_duplicate_models_openapi.py

        c: Model
        d: Model2
    
    
    @app.get("/", response_model=Model3)
    def f():
        return {"c": {}, "d": {"a": {}}}
    
    
    client = TestClient(app)
    
    
    def test_get_api_route():
        response = client.get("/")
        assert response.status_code == 200, response.text
        assert response.json() == {"c": {}, "d": {"a": {}}}
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java

         */
        @Resource
        protected WebAuthenticationBhv webAuthenticationBhv;
    
        /**
         * Fess configuration settings.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Gets a paginated list of web authentications based on the provided pager.
         *
         * @param webAuthenticationPager The pager containing pagination and search criteria
         * @return List of web authentication configurations
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  8. src/main/java/jcifs/smb/SmbPipeHandleInternal.java

     *
     * <p>This interface is intended for internal use.</p>
     */
    public interface SmbPipeHandleInternal extends SmbPipeHandle {
    
        /**
         * Gets the type of this pipe.
         *
         * @return the pipe type
         */
        int getPipeType();
    
        /**
         * Gets the session key from the underlying SMB session.
         *
         * @return session key of the underlying smb session
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 3.7K bytes
    - Click Count (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java

                        .get());
                options.addOption(Option.builder(QUIET)
                        .longOpt("quiet")
                        .desc("Quiet output - only show errors")
                        .get());
                options.addOption(Option.builder(VERBOSE)
                        .longOpt("verbose")
                        .desc("Produce execution verbose output")
                        .get());
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Oct 08 07:36:42 GMT 2025
    - 21.3K bytes
    - Click Count (0)
  10. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLog.java

        @Override
        public void debug(Supplier<String> content) {
            if (isDebugEnabled()) {
                logger.debug(content.get());
            }
        }
    
        @Override
        public void debug(Supplier<String> content, Throwable error) {
            if (isDebugEnabled()) {
                logger.debug(content.get(), error);
            }
        }
    
        @Override
        public void info(CharSequence content) {
            if (isInfoEnabled()) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 4.6K bytes
    - Click Count (0)
Back to Top