Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 217 for why (0.01 seconds)

  1. ci/official/utilities/code_check_full.bats

    repeats of these filename(s) with different casing:
    EOF
        find . | tr '[A-Z]' '[a-z]' | sort | uniq -d | tee $BATS_FILE_TMPDIR/repeats
        [[ ! -s $BATS_FILE_TMPDIR/repeats ]]
    }
    
    # It's unclear why, but running this on //tensorflow/... is faster than running
    # only on affected targets, usually. There are targets in //tensorflow/lite that
    # don't pass --nobuild, so they're on their own.
    #
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Jan 28 22:41:17 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/base/FinalizableReferenceQueue.java

     *
     * <p>Some care is needed when using {@code Cleaner} to ensure that the callback passed to {@code
     * register} does not have a reference to the object (in this case, {@code MyServer}) that may be
     * garbage-collected. That's why we are careful to make a {@code Runnable} that does not have a
     * reference to any {@code MyServer} instance.
     *
     * @author Bob Lee
     * @since 2.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 19:26:59 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  3. docs/ko/docs/deployment/docker.md

    이는 `docker compose`를 사용할 때 꽤 눈에 띌 수 있습니다. 좀 더 기술적인 상세 내용은 Docker Compose FAQ 섹션을 참고하세요: [Why do my services take 10 seconds to recreate or stop?](https://docs.docker.com/compose/faq/#why-do-my-services-take-10-seconds-to-recreate-or-stop).
    
    #### 디렉터리 구조 { #directory-structure }
    
    이제 다음과 같은 디렉터리 구조가 되어야 합니다:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 32.6K bytes
    - Click Count (0)
  4. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

        return new ImmutableSortedMap<K, V>(delegate, comparator);
      }
    
      /*
       * We don't permit nulls, but we wrap every comparator with nullsFirst().
       * Why? We want for queries like containsKey(null) to return false, but the
       * GWT SortedMap implementation that we delegate to throws
       * NullPointerException if the comparator does. Since our construction
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 08 18:10:02 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  5. guava/src/com/google/common/collect/Lists.java

          this.function = checkNotNull(function);
        }
    
        /**
         * The default implementation inherited is based on iteration and removal of each element which
         * can be overkill. That's why we forward this call directly to the backing list.
         */
        @Override
        protected void removeRange(int fromIndex, int toIndex) {
          fromList.subList(fromIndex, toIndex).clear();
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 16:38:09 GMT 2026
    - 42.5K bytes
    - Click Count (0)
  6. docs/zh/docs/virtual-environments.md

    这样,当你运行 `python` 时,它不会尝试从那个虚拟环境及其已安装的软件包中运行。
    
    ## 开始工作 { #ready-to-work }
    
    现在你已经准备好开始你的工作了。
    
    
    
    /// tip | 提示
    
    你想要理解上面的所有内容吗?
    
    继续阅读。👇🤓
    
    ///
    
    ## 为什么要使用虚拟环境 { #why-virtual-environments }
    
    你需要安装 [Python](https://www.python.org/) 才能使用 FastAPI。
    
    之后,你需要**安装** FastAPI 和你想要使用的任何其他**软件包**。
    
    要安装软件包,你通常会使用随 Python 一起提供的 `pip` 命令(或类似的替代方案)。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/RestCompatTestTransformTask.java

        private final PatternFilterable testPatternSet;
        private final Factory<PatternSet> patternSetFactory;
        private final List<RestTestTransform<?>> transformations = new ArrayList<>();
        // PatternFilterable -> reason why skipped.
        private final Map<PatternFilterable, String> skippedTestByFilePatternTransformations = new HashMap<>();
        // PatternFilterable -> list of full test names and reasons. Needed for 1 pattern may include many tests and reasons
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 22.3K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/collect/Lists.java

          this.function = checkNotNull(function);
        }
    
        /**
         * The default implementation inherited is based on iteration and removal of each element which
         * can be overkill. That's why we forward this call directly to the backing list.
         */
        @Override
        protected void removeRange(int fromIndex, int toIndex) {
          fromList.subList(fromIndex, toIndex).clear();
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 16:38:09 GMT 2026
    - 42.1K bytes
    - Click Count (0)
  9. docs/en/docs/tutorial/response-model.md

    In this case, because the two models are different, if we annotated the function return type as `UserOut`, the editor and tools would complain that we are returning an invalid type, as those are different classes.
    
    That's why in this example we have to declare it in the `response_model` parameter.
    
    ...but continue reading below to see how to overcome that.
    
    ## Return Type and Data Filtering { #return-type-and-data-filtering }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 15.5K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/security/oauth2-jwt.md

    ///
    
    ## 密碼雜湊 { #password-hashing }
    
    「雜湊」是指把某些內容(此處為密碼)轉換成一串看起來像亂碼的位元組序列(其實就是字串)。
    
    每當你輸入完全相同的內容(完全相同的密碼),就會得到完全相同的亂碼。
    
    但你無法從這串亂碼再反推回原本的密碼。
    
    ### 為什麼要用密碼雜湊 { #why-use-password-hashing }
    
    如果你的資料庫被偷了,竊賊拿到的不是使用者的明文密碼,而只是雜湊值。
    
    因此,竊賊無法直接拿該密碼去嘗試登入其他系統(由於許多使用者在各處都用同一組密碼,這會很危險)。
    
    ## 安裝 `pwdlib` { #install-pwdlib }
    
    pwdlib 是一個很棒的 Python 套件,用來處理密碼雜湊。
    
    它支援多種安全的雜湊演算法與相關工具。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 10.1K bytes
    - Click Count (0)
Back to Top