Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for dt (0.15 sec)

  1. src/main/webapp/WEB-INF/view/common/help.jsp

    	</dd>
    	<dt>AND</dt>
    	<dd>
    		AND operator is the default conjunction operator. You can omit it from
    		a query. AND operator matches documents where both terms exist
    		anywhere in the text of a single document.
    		<pre>Fess AND CodeLibs</pre>
    	</dd>
    	</dd>
    	<dt>OR</dt>
    	<dd>
    		OR operator matches documents where any terms exist anywhere in the
    		text of a single document.
    		<pre>Fess OR CodeLibs</pre>
    	</dd>
    	<dt>Wildcard</dt>
    	<dd>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  2. tests/test_datetime_custom_encoder.py

        class ModelWithDatetimeField(BaseModel):
            dt_field: datetime
    
            @field_serializer("dt_field")
            def serialize_datetime(self, dt_field: datetime):
                return dt_field.replace(microsecond=0, tzinfo=timezone.utc).isoformat()
    
        app = FastAPI()
        model = ModelWithDatetimeField(dt_field=datetime(2019, 1, 1, 8))
    
        @app.get("/model", response_model=ModelWithDatetimeField)
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  3. tests/test_jsonable_encoder.py

        class ModelWithCustomEncoder(BaseModel):
            dt_field: datetime
    
            @field_serializer("dt_field")
            def serialize_dt_field(self, dt):
                return dt.replace(microsecond=0, tzinfo=timezone.utc).isoformat()
    
        class ModelWithCustomEncoderSubclass(ModelWithCustomEncoder):
            pass
    
        model = ModelWithCustomEncoder(dt_field=datetime(2019, 1, 1, 8))
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 21:56:59 GMT 2024
    - 9K bytes
    - Viewed (0)
  4. cmd/dynamic-timeouts.go

    // Timeout returns the current timeout value
    func (dt *dynamicTimeout) Timeout() time.Duration {
    	return time.Duration(atomic.LoadInt64(&dt.timeout))
    }
    
    func (dt *dynamicTimeout) RetryInterval() time.Duration {
    	return dt.retryInterval
    }
    
    // LogSuccess logs the duration of a successful action that
    // did not hit the timeout
    func (dt *dynamicTimeout) LogSuccess(duration time.Duration) {
    	dt.logEntry(duration)
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Aug 19 23:21:05 GMT 2022
    - 4.5K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/common/help_ja.jsp

    		設定で指定するフィールドは変更することができます。
    	</dd>
    	<dt>AND検索</dt>
    	<dd>
    		AND 演算子は省略可能な連結演算子です。
    		AND 演算子は指定した検索語をすべて含むドキュメントにマッチします。
    		たとえば、Fess と CodeLibs を含むドキュメント検索するには次のように入力します。
    		<pre>Fess AND CodeLibs</pre>
    	</dd>
    	</dd>
    	<dt>OR検索</dt>
    	<dd>
    		OR 演算子は指定した検索語のいずれかを含むドキュメントにマッチします。
    		たとえば、Fess または CodeLibs を含むドキュメントを検索するには次のように入力します。
    		<pre>Fess OR CodeLibs</pre>
    	</dd>
    	<dt>ワイルドカード</dt>
    	<dd>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 3.4K bytes
    - Viewed (0)
  6. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexerTest.groovy

            "<p>text<p>text"                          | "<p>text</p><p>text</p>"
            "<ul><li>text<li>text"                    | "<ul><li>text</li><li>text</li></ul>"
            "<dl><dt>term<dd>item<dt>term<dt>term"    | "<dl><dt>term</dt><dd>item</dd><dt>term</dt><dt>term</dt></dl>"
            "<table><tr><th>cell<tr><td>cell<td>cell" | "<table><tr><th>cell</th></tr><tr><td>cell</td><td>cell</td></tr></table>"
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/package-info.java

     *
     * <h2>Collection types</h2>
     *
     * <dl>
     *   <dt>{@link Multimap}
     *   <dd>A new type, which is similar to {@link java.util.Map}, but may contain multiple entries
     *       with the same key. Some behaviors of {@link Multimap} are left unspecified and are provided
     *       only by the subtypes mentioned below.
     *   <dt>{@link ListMultimap}
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Jul 06 16:29:45 GMT 2023
    - 5K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    		return
    	}
    	visited[dtype] = true
    	switch dt := dtype.(type) {
    	case *dwarf.TypedefType:
    		if strings.HasPrefix(dt.Name, "__builtin") {
    			// Don't look inside builtin types. There be dragons.
    			return
    		}
    		if !p.typedefs[dt.Name] {
    			p.typedefs[dt.Name] = true
    			p.typedefList = append(p.typedefList, typedefInfo{dt.Name, pos})
    			p.recordTypedefs1(dt.Type, pos, visited)
    		}
    	case *dwarf.PtrType:
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/common/help_ko.jsp

    		설정에서 지정하는 필드는 변경할 수 있습니다.
    	</dd>
    	<dt>AND검색</dt>
    	<dd>
    		AND 연산자는 선택적 연결 연산자입니다.
    		AND 연산자는 지정한 검색어를 모두 포함한 문서와 일치합니다.
    		예를 들어, Fess과 CodeLibs를 포함하는 문서 검색하려면 다음과 같이 입력합니다.
    		<pre>Fess AND CodeLibs</pre>
    	</dd>
    	</dd>
    	<dt>OR검색</dt>
    	<dd>
    		OR 연산자는 지정한 검색어 중 하나를 포함하는 문서에 매치합니다.
    		예를 들어, Fess 또는 CodeLibs를 포함하는 문서를 검색하려면 다음과 같이 입력합니다.
    		<pre>Fess OR CodeLibs</pre>
    	</dd>
    	<dt>와일드카드</dt>
    	<dd>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  10. doc/go1.22.html

      </dd>
    </dl><!-- bufio -->
    
    <dl id="cmp"><dt><a href="/pkg/cmp/">cmp</a></dt>
      <dd>
        <p><!-- https://go.dev/issue/60204 --><!-- CL 504883 -->
          The new function <code>Or</code> returns the first in a sequence of values that is not the zero value.
        </p>
      </dd>
    </dl><!-- cmp -->
    
    <dl id="crypto/tls"><dt><a href="/pkg/crypto/tls/">crypto/tls</a></dt>
      <dd>
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
Back to top