Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1581 - 1590 of 2,486 for tape (0.11 seconds)

  1. tests/test_security_api_key_cookie_description.py

                        }
                    }
                },
                "components": {
                    "securitySchemes": {
                        "APIKeyCookie": {
                            "type": "apiKey",
                            "name": "key",
                            "in": "cookie",
                            "description": "An API Cookie Key",
                        }
                    }
                },
            }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  2. tests/test_security_http_bearer_optional.py

                            "security": [{"HTTPBearer": []}],
                        }
                    }
                },
                "components": {
                    "securitySchemes": {"HTTPBearer": {"type": "http", "scheme": "bearer"}}
                },
            }
    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)
  3. tests/test_security_oauth2_authorization_code_bearer_description.py

    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  4. tests/test_security_oauth2_password_bearer_optional.py

                        }
                    }
                },
                "components": {
                    "securitySchemes": {
                        "OAuth2PasswordBearer": {
                            "type": "oauth2",
                            "flows": {"password": {"scopes": {}, "tokenUrl": "/token"}},
                        }
                    }
                },
            }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/RestTestTransformByParentObject.java

     * Side Public License, v 1.
     */
    
    package org.elasticsearch.gradle.internal.test.rest.transform;
    
    import com.fasterxml.jackson.databind.JsonNode;
    import com.fasterxml.jackson.databind.node.ObjectNode;
    
    /**
     * A type of {@link RestTestTransform} that finds the transformation by a given key in to an {@link ObjectNode}.
     */
    public interface RestTestTransformByParentObject extends RestTestTransform<ObjectNode> {
    
        /**
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.3K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/length/ReplaceValueInLength.java

    import org.elasticsearch.gradle.internal.test.rest.transform.ReplaceByKey;
    import org.gradle.api.tasks.Internal;
    
    /**
     * A transformation to replace the key in a length assertion, must be a numeric type
     * For example, change from "length":{"index._doc": 1} to "length":{"index._doc": 2}
     */
    public class ReplaceValueInLength extends ReplaceByKey {
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 14:44:05 GMT 2021
    - 1.5K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/exception/UserRoleLoginException.java

            return actionClass;
        }
    
        /**
         * Overrides fillInStackTrace to return null for performance optimization.
         * This prevents stack trace generation for this exception type.
         *
         * @return null to skip stack trace generation
         */
        @Override
        public synchronized Throwable fillInStackTrace() {
            return null;
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Nov 19 08:04:23 GMT 2025
    - 2K bytes
    - Click Count (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

    package gradlebuild.basics
    
    import java.util.regex.Pattern
    
    
    /**
     * This is the definition of what constitutes the Gradle public API.
     *
     * A type is part of the Gradle public API if and only if its FQCN matches {@link #includes} and does not match {@link #excludes}.
     */
    // NOTE: If you update this, please also change .idea/scopes/Gradle_public_API.xml
    object PublicApi {
        val includes = listOf(
            "org/gradle/*",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Jun 12 23:20:08 GMT 2024
    - 2.4K bytes
    - Click Count (0)
  9. guava/src/com/google/common/collect/StandardTable.java

                     *
                     * (Arguably we should use requireNonNull rather than uncheckedCastNullableTToT: We
                     * know that V is a non-null type because that's the only kind of value type that
                     * StandardTable supports. Thus, requireNonNull is safe as long as the cell is still
                     * present. (And if it's not present, behavior is undefined.) However, that's a
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 30.4K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/response-model.md

    因此,FastAPI 會負責(透過 Pydantic)過濾掉輸出模型中未宣告的所有資料。
    
    ### `response_model` 或回傳型別 { #response-model-or-return-type }
    
    在這種情況下,因為兩個模型不同,如果我們把函式回傳型別註解為 `UserOut`,編輯器和工具會抱怨我們回傳了無效的型別,因為它們是不同的類別。
    
    這就是為什麼在這個例子中我們必須在 `response_model` 參數中宣告它。
    
    ...但繼續往下讀看看如何克服這個問題。
    
    ## 回傳型別與資料過濾 { #return-type-and-data-filtering }
    
    讓我們延續前一個範例。我們想要用一種型別來註解函式,但實際上希望能夠從函式回傳包含更多資料的內容。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 14.5K bytes
    - Click Count (0)
Back to Top