Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 641 - 650 of 2,731 for doAs (0.09 seconds)

  1. docs/en/docs/deployment/concepts.md

        * With an external component like cert-manager for certificate renewals
    * Handled internally by a cloud provider as part of their services (read below 👇)
    
    Another option is that you could use a **cloud service** that does more of the work including setting up HTTPS. It could have some restrictions or charge you more, etc. But in that case, you wouldn't have to set up a TLS Termination Proxy yourself.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 18.5K bytes
    - Click Count (1)
  2. docs/ru/docs/tutorial/metadata.md

    ## URL-адреса документации { #docs-urls }
    
    Вы можете изменить конфигурацию двух пользовательских интерфейсов документации, которые включены:
    
    * **Swagger UI**: отображаемый по адресу `/docs`.
        * Вы можете задать его URL с помощью параметра `docs_url`.
        * Вы можете отключить это с помощью настройки `docs_url=None`.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  3. docs/zh-hant/docs/tutorial/dependencies/dependencies-with-yield.md

    /// tip
    
    請確保每個相依內只使用一次 `yield`。
    
    ///
    
    /// note | 技術細節
    
    任何可用於下列裝飾器的函式:
    
    * [`@contextlib.contextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager) 或
    * [`@contextlib.asynccontextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.asynccontextmanager)
    
    都可以作為 **FastAPI** 的相依。
    
    事實上,FastAPI 內部就是使用這兩個裝飾器。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  4. src/main/resources/fess_env.properties

    development.here = true
    
    # The title of environment (e.g. local or integration or production)
    environment.title = Local Development
    
    # Does it enable the Framework internal debug? (true only when emergency)
    framework.debug = false
    
    # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Aug 07 04:53:24 GMT 2021
    - 2.2K bytes
    - Click Count (1)
  5. android/guava/src/com/google/common/util/concurrent/Runnables.java

       * version that we're testing under) or J2CL.
       *
       * That's not necessarily a real-world problem, but it does break our tests.
       */
      @SuppressWarnings({"InlineLambdaConstant", "UnnecessaryLambda"})
      private static final Runnable EMPTY_RUNNABLE = () -> {};
    
      /** Returns a {@link Runnable} instance that does nothing when run. */
      public static Runnable doNothing() {
        return EMPTY_RUNNABLE;
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Aug 05 15:30:14 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  6. docs/zh/llm-prompt.md

    ### Target language
    
    Translate to Simplified Chinese (简体中文).
    
    Language code: zh.
    
    ### Grammar and tone
    
    - Use clear, concise technical Chinese consistent with existing docs.
    - Address the reader naturally (commonly using “你/你的”).
    
    ### Headings
    
    - Follow existing Simplified Chinese heading style (short and descriptive).
    - Do not add trailing punctuation to headings.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Dec 29 18:54:20 GMT 2025
    - 1.4K bytes
    - Click Count (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/UserManual.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.docs;
    
    import org.gradle.api.file.ConfigurableFileCollection;
    import org.gradle.api.file.DirectoryProperty;
    
    /**
     * Configuration for user manual documentation
     */
    public abstract class UserManual {
        /**
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 22:33:18 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocBuilder.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.docs.dsl.docbook;
    
    import gradlebuild.docs.dsl.docbook.model.ClassDoc;
    
    public class ClassDocBuilder {
        private final ClassDocCommentBuilder commentBuilder;
        private final ClassDocPropertiesBuilder propertiesBuilder;
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2K bytes
    - Click Count (0)
  9. docs/zh/docs/tutorial/metadata.md

    例如,将其设置为服务于 `/api/v1/openapi.json`:
    
    {* ../../docs_src/metadata/tutorial002_py310.py hl[3] *}
    
    如果你想完全禁用 OpenAPI 模式,可以将其设置为 `openapi_url=None`,这样也会禁用使用它的文档用户界面。
    
    ## 文档 URLs { #docs-urls }
    
    你可以配置两个文档用户界面,包括:
    
    - **Swagger UI**:服务于 `/docs`。
        - 可以使用参数 `docs_url` 设置它的 URL。
        - 可以通过设置 `docs_url=None` 禁用它。
    - **ReDoc**:服务于 `/redoc`。
        - 可以使用参数 `redoc_url` 设置它的 URL。
        - 可以通过设置 `redoc_url=None` 禁用它。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/graph/Graph.java

       * edges().contains(endpoints)}.
       *
       * <p>Unlike the other {@code EndpointPair}-accepting methods, this method does not throw if the
       * endpoints are unordered and the graph is directed; it simply returns {@code false}. This is for
       * consistency with the behavior of {@link Collection#contains(Object)} (which does not generally
       * throw if the object cannot be present in the collection), and the desire to have this method's
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 13.6K bytes
    - Click Count (0)
Back to Top