Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 3501 - 3510 of 3,713 for creaste (0.08 seconds)

  1. src/main/java/org/codelibs/fess/job/CrawlJob.java

            }
    
            final StringBuilder resultBuf = new StringBuilder(100);
            final boolean runAll = webConfigIds == null && fileConfigIds == null && dataConfigIds == null;
    
            if (sessionId == null) { // create session id
                final SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
                sessionId = sdf.format(new Date());
            }
            resultBuf.append("Session Id: ").append(sessionId).append("\n");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19.6K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/advanced/advanced-dependencies.md

    接著,我們可以用 `__init__` 來宣告這個實例的參數,用以「參數化」這個相依:
    
    {* ../../docs_src/dependencies/tutorial011_an_py310.py hl[9] *}
    
    在這裡,**FastAPI** 完全不會接觸或在意 `__init__`,我們會直接在自己的程式碼中使用它。
    
    ## 建立一個實例 { #create-an-instance }
    
    我們可以這樣建立該類別的實例:
    
    {* ../../docs_src/dependencies/tutorial011_an_py310.py hl[18] *}
    
    如此一來我們就能「參數化」相依,現在它內部含有 `"bar"`,作為屬性 `checker.fixed_content`。
    
    ## 將實例作為相依使用 { #use-the-instance-as-a-dependency }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.4K bytes
    - Click Count (0)
  3. docs/zh-hant/docs/advanced/generate-clients.md

    * [liblab](https://developers.liblab.com/tutorials/sdk-for-fastapi?utm_source=fastapi)
    
    其中有些方案也可能是開源或提供免費方案,讓你不需財務承諾就能試用。其他商業的 SDK 產生器也不少,你可以在網路上找到。🤓
    
    ## 建立 TypeScript SDK { #create-a-typescript-sdk }
    
    先從一個簡單的 FastAPI 應用開始:
    
    {* ../../docs_src/generate_clients/tutorial001_py310.py hl[7:9,12:13,16:17,21] *}
    
    注意這些 *路徑操作* 為請求與回應的有效載荷定義了所用的模型,使用了 `Item` 與 `ResponseMessage` 這兩個模型。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 9.1K bytes
    - Click Count (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

            } catch (ResourceDoesNotExistException e) {
                getLogger()
                        .info(metadata + " could not be found on repository: " + remoteRepository.getId()
                                + ", so will be created");
    
                // delete the local copy so the old details aren't used.
                if (file.exists()) {
                    if (!file.delete()) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 18.9K bytes
    - Click Count (0)
  5. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

        new NullPointerTester().testAllPublicConstructors(AtomicDoubleArray.class);
        new NullPointerTester().testAllPublicInstanceMethods(new AtomicDoubleArray(1));
      }
    
      /** constructor creates array of given size with all elements zero */
      public void testConstructor() {
        AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
        for (int i = 0; i < SIZE; i++) {
          assertBitEquals(0.0, aa.get(i));
        }
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  6. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

         */
        @Override
        public boolean close() throws CIFSException {
            boolean inUse = false;
    
            // Cleanup first
            cleanup();
            log.debug("Closing pool");
    
            // Create a snapshot of connections to close
            List<SmbTransportImpl> toClose = new ArrayList<>(this.connections);
            toClose.addAll(this.nonPooledConnections);
    
            // Clear the collections (thread-safe operations)
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 33.4K bytes
    - Click Count (0)
  7. docs/ja/docs/tutorial/dependencies/index.md

    これらすべてを、コードの繰り返しを最小限に抑えながら行います。
    
    ## 最初のステップ { #first-steps }
    
    非常にシンプルな例を見てみましょう。あまりにもシンプルなので、今のところはあまり参考にならないでしょう。
    
    しかし、この方法では **Dependency Injection** システムがどのように機能するかに焦点を当てることができます。
    
    ### 依存関係(「dependable」)の作成 { #create-a-dependency-or-dependable }
    
    まずは依存関係に注目してみましょう。
    
    以下のように、*path operation 関数*と同じパラメータを全て取ることができる関数にすぎません:
    
    {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[8:9] *}
    
    これだけです。
    
    **2行**。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  8. docs/ja/docs/advanced/settings.md

    ---> 100%
    ```
    
    </div>
    
    また、次のように `all` エクストラをインストールすると付属します:
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    ---> 100%
    ```
    
    </div>
    
    ### `Settings` オブジェクトを作成 { #create-the-settings-object }
    
    Pydantic から `BaseSettings` をインポートして、そのサブクラスを作成します。これは Pydantic モデルとほぼ同じです。
    
    Pydantic モデルと同様に、型アノテーションと(必要なら)デフォルト値を持つクラス属性を宣言します。
    
    `Field()` による追加バリデーションなど、Pydantic モデルで使えるのと同じバリデーション機能をすべて利用できます。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 12.7K bytes
    - Click Count (0)
  9. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

      }
    
      /*
       * Tests that we workaround GWT bug #3621 (or that it is already fixed).
       *
       * A call to of() with a parameter that is not a plain Object[] (here,
       * Interface[]) creates a RegularImmutableSortedSet backed by an array of that
       * type. Later, RegularImmutableSortedSet.toArray() calls System.arraycopy()
       * to copy from that array to the destination array. This would be fine, but
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 47.2K bytes
    - Click Count (0)
  10. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

            if (!model.getMixins().isEmpty() && !flattenEnabled && !model.isPreserveModelVersion()) {
                throw new MavenException("The consumer POM for "
                        + project.getId()
                        + " cannot be created because the POM contains mixins. "
                        + "Mixins are not supported in the default consumer POM format. "
                        + "You have the following options to resolve this:" + System.lineSeparator()
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Mar 04 19:49:40 GMT 2026
    - 22.3K bytes
    - Click Count (0)
Back to Top