Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 317 for variance (0.07 sec)

  1. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

        }
    
        /**
         * Checks if the current user has the specified action role or administrative privileges.
         *
         * @param role the role to check (supports both view and edit variants)
         * @return true if the user has the role or admin privileges, false otherwise
         */
        public static boolean hasActionRole(final String role) {
            final String[] roles;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (1)
  2. docs/en/docs/tutorial/first-steps.md

    ///
    
    ### Step 2: create a `FastAPI` "instance" { #step-2-create-a-fastapi-instance }
    
    {* ../../docs_src/first_steps/tutorial001.py hl[3] *}
    
    Here the `app` variable will be an "instance" of the class `FastAPI`.
    
    This will be the main point of interaction to create all your API.
    
    ### Step 3: create a *path operation* { #step-3-create-a-path-operation }
    
    #### Path { #path }
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 11K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Functions.java

      }
    
      /**
       * Returns the identity function.
       *
       * <p><b>Discouraged:</b> Prefer using a lambda like {@code v -> v}, which is shorter and often
       * more readable.
       */
      // implementation is "fully variant"; E has become a "pass-through" type
      @SuppressWarnings("unchecked")
      public static <E extends @Nullable Object> Function<E, E> identity() {
        return (Function<E, E>) IdentityFunction.INSTANCE;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java

            assertTrue(managerCalled.get());
            assertFalse(chainCalled.get());
        }
    
        // Test doFilter with ServletRequest and ServletResponse (not HTTP variants)
        public void test_doFilter_withServletRequestResponse() throws IOException, ServletException {
            // Setup mock objects
            ServletRequest request = createMockHttpServletRequest();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  5. docs/ko/docs/virtual-environments.md

    /// info | 정보
    
    이미 가상 환경에 대해 잘 알고 있다면, 이 섹션은 건너 뛰어도 괜찮습니다. 🤓
    
    ///
    
    /// tip | 팁
    
    **가상 환경(Virtual Environment)** 은 **환경 변수(Environment Variable)** 와 다릅니다.
    
    **환경 변수**는 시스템에 존재하며, 프로그램이 사용할 수 있는 변수입니다.
    
    **가상 환경**은 몇몇 파일로 구성된 하나의 디렉터리입니다.
    
    ///
    
    /// info | 정보
    
    이 페이지에서는 **가상 환경**의 사용 방법과 작동 방식을 설명합니다.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri May 30 13:10:41 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  6. helm-releases/minio-2.0.1.tgz

    "minio.extraArgs" -}} {{- range .Values.extraArgs -}} {{ " " }}{{ . }} {{- end -}} {{- end -}} {{/* Return the proper Docker Image Registry Secret Names */}} {{- define "minio.imagePullSecrets" -}} {{/* Helm 2.11 supports the assignment of a value to a variable defined in a different scope, but Helm 2.9 and 2.10 does not support it, so we need to implement this if-else logic. Also, we can not use a single if because lazy evaluation is not an option */}} {{- if .Values.global }} {{- if .Values.global.imagePullSecrets...
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 31 09:09:09 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  7. docs/ru/docs/virtual-environments.md

    Одной из таких переменных является `PATH`.
    
    /// tip | Подсказка
    
    Вы можете узнать больше о переменной окружения `PATH` в разделе [Переменные окружения](environment-variables.md#path-environment-variable){.internal-link target=_blank}.
    
    ///
    
    При активации виртуальной среды путь `.venv/bin` (для Linux и macOS) или `.venv\Scripts` (для Windows) добавляется в переменную окружения `PATH`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Dec 10 11:34:19 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

        checkNotNull(fromKey);
        return newView(sortedDelegate.tailMap(fromKey));
      }
    
      public ImmutableSortedMap<K, V> tailMap(K fromKeyParam, boolean inclusive) {
        // Declare a "true" local variable so that the Checker Framework will infer nullness.
        K fromKey = fromKeyParam;
        checkNotNull(fromKey);
        if (!inclusive) {
          fromKey = higher(fromKey);
          if (fromKey == null) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  9. docs/vi/docs/features.md

    Bạn viết chuẩn Python với kiểu dữ liệu như sau:
    
    ```Python
    from datetime import date
    
    from pydantic import BaseModel
    
    # Declare a variable as a str
    # and get editor support inside the function
    def main(user_id: str):
        return user_id
    
    
    # A Pydantic model
    class User(BaseModel):
        id: int
        name: str
        joined: date
    ```
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. CHANGELOG.md

        `okhttp-coroutines` artifact.
    
     *  Upgrade: [AndroidX Startup 1.2.0][startup_1_2_0]. The Android variant of the `okhttp` artifact
        now depends on this. This is a new dependency.
    
     *  Upgrade: [AndroidX Annotation 1.9.1][annotation_1_9_1]. As above, the Android variant of the
        `okhttp` artifact now depends on this. This is also a new dependency.
    
    
    ## Version 5.0.0-alpha.14
    
    _2024-04-17_
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 31.6K bytes
    - Viewed (1)
Back to top