- Sort Score
- Result 10 results
- Languages All
Results 3031 - 3040 of 3,090 for FALSE (0.04 sec)
-
android/guava/src/com/google/common/graph/Network.java
* any, specified by {@code endpoints}). * * <p>Unlike the other {@code EndpointPair}-accepting methods, this method does not throw if the * endpoints are unordered and the network is directed; it simply returns {@code false}. This is * for consistency with {@link Graph#hasEdgeConnecting(EndpointPair)} and {@link * ValueGraph#hasEdgeConnecting(EndpointPair)}. * * @since 27.1 */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 10 15:41:27 UTC 2024 - 21.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/LongMathTest.java
for (RoundingMode mode : ALL_SAFE_ROUNDING_MODES) { // Promote the long value (rather than using longValue() on the expected value) to avoid // any risk of truncation which could lead to a false positive. assertEquals(BigIntegerMath.sqrt(valueOf(x), mode), valueOf(LongMath.sqrt(x, mode))); } } } /* Relies on the correctness of sqrt(long, FLOOR). */ @GwtIncompatible // TODO
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 15:00:32 UTC 2024 - 30.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractorTest.java
assertEquals("1997-01-08T22:48:59Z", extractData.getValues("dcterms:created")[0]); assertEquals("2012-05-18T22:50:00Z", extractData.getValues("dcterms:modified")[0]); assertEquals("false", extractData.getValues("protected")[0]); assertEquals("じょうたい", extractData.getValues("cp:contentStatus")[0]); assertEquals("たいとる", extractData.getValues("dc:title")[0]);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 30.5K bytes - Viewed (0) -
doc/go_spec.html
<code>real</code> and <code>imag</code> applied to a complex constant and <code>complex</code> applied to numeric constants. The boolean truth values are represented by the predeclared constants <code>true</code> and <code>false</code>. The predeclared identifier <a href="#Iota">iota</a> denotes an integer constant. </p> <p> In general, complex constants are a form of <a href="#Constant_expressions">constant expression</a>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.17.md
### API Machinery - kube-apiserver: the `--runtime-config` flag now supports an `api/beta=false` value which disables all built-in REST API versions matching `v[0-9]+beta[0-9]+`. ([#84304](https://github.com/kubernetes/kubernetes/pull/84304), [@liggitt](https://github.com/liggitt))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
cmd/peer-rest-client.go
return client.host.String() } // IsOnline returns true if the peer client is online. func (client *peerRESTClient) IsOnline() bool { conn := client.gridConn() if conn == nil { return false } return client.restClient.IsOnline() || conn.State() == grid.StateConnected } // Close - marks the client as closed. func (client *peerRESTClient) Close() error { client.restClient.Close() return nil
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 09 16:58:30 UTC 2024 - 26.1K bytes - Viewed (0) -
src/main/java/jcifs/SmbResource.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 26K bytes - Viewed (0) -
common-protos/k8s.io/api/autoscaling/v1/generated.proto
// a HorizontalPodAutoscaler at a certain point. message HorizontalPodAutoscalerCondition { // type describes the current condition optional string type = 1; // status is the status of the condition (True, False, Unknown) optional string status = 2; // lastTransitionTime is the last time the condition transitioned from // one status to another // +optional
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 22K bytes - Viewed (0) -
src/main/resources/suggest_indices/suggest_analyzer.json
"auto_expand_replicas": "0-1" }, "analysis" : { "tokenizer" : { "kuromoji_neologd_normal" : { "type" : "reloadable_kuromoji_tokenizer", "mode" : "normal", "discard_punctuation" : "false" }, "pattern_split" : { "type" : "simple_pattern_split", "pattern" : "__and__" } }, "analyzer" : { "reading_analyzer" : { "type" : "custom",
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Oct 03 02:51:59 UTC 2019 - 57.3K bytes - Viewed (0) -
docs/ja/docs/tutorial/security/oauth2-jwt.md
<img src="/img/tutorial/security/image08.png"> エンドポイント`/users/me/`を呼び出すと、次のようなレスポンスが得られます: ```JSON { "username": "johndoe", "email": "******@****.***", "full_name": "John Doe", "disabled": false } ``` <img src="/img/tutorial/security/image09.png"> 開発者ツールを開くと、送信されるデータにはトークンだけが含まれており、パスワードはユーザーを認証してアクセストークンを取得する最初のリクエストでのみ送信され、その後は送信されないことがわかります。 <img src="/img/tutorial/security/image10.png">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14.1K bytes - Viewed (1)