Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 2571 - 2580 of 2,773 for crealm (0.25 seconds)

  1. internal/s3select/jstream/decoder.go

    		switch c := d.next(); c {
    		case '\n':
    			d.lineStart = d.pos
    			d.lineNo++
    			continue
    		case ' ', '\t', '\r':
    			continue
    		default:
    			return c
    		}
    	}
    	return 0
    }
    
    // create syntax errors at current position, with optional context
    func (d *Decoder) mkError(err DecoderError, context ...string) error {
    	if len(context) > 0 {
    		err.context = context[0]
    	}
    	err.atChar = d.cur()
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 13.4K bytes
    - Click Count (0)
  2. 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)
  3. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

                    final String loginUrl = auth.login(null, authnRequestParams, true);
                    request.getSession().setAttribute(SAML_STATE, UuidUtil.create());
                    return new ActionResponseCredential(() -> HtmlResponse.fromRedirectPathAsIs(loginUrl));
                } catch (final Exception e) {
                    throw new SsoLoginException("Invalid SAML redirect URL.", e);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 03:13:33 GMT 2026
    - 20.2K bytes
    - Click Count (3)
  4. 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)
  5. 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)
  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. tensorflow/c/c_api_experimental.cc

          status->status = TF_TensorToTensor(input_tensors[i], &input_tensor);
          if (!status->status.ok()) return;
          input_tensors_vector[i] = &input_tensor;
        }
      }
    
      // Create an inference context with dummy values, which will be updated later.
      InferenceContext c(TF_GRAPH_DEF_VERSION, node_def, op_reg_data->op_def,
                         std::vector<ShapeHandle>(num_inputs), input_tensors_vector,
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 04 05:55:32 GMT 2025
    - 29.4K bytes
    - Click Count (0)
  10. CHANGELOG/CHANGELOG-1.33.md

    patching themselves with an OwnerReference to a cluster-scoped resource. If the OwnerReference resource does not exist or is subsequently deleted, the given node object will be deleted via garbage collection. By default, node users are authorized for create and patch requests but not delete requests against their node object. Since the NodeRestriction admission controller does not prevent patching OwnerReferences, a compromised node could leverage this vulnerability to delete and then recreate its node...
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 03:17:58 GMT 2026
    - 369K bytes
    - Click Count (0)
Back to Top