- Sort Score
- Result 10 results
- Languages All
Results 1181 - 1190 of 3,090 for FALSE (0.04 sec)
-
guava/src/com/google/common/collect/ForwardingSortedSet.java
iterator.remove(); return true; } } } catch (ClassCastException | NullPointerException e) { return false; } return false; } /** * A sensible default implementation of {@link #subSet(Object, Object)} in terms of {@link * #headSet(Object)} and {@link #tailSet(Object)}. In some situations, you may wish to override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 15:26:39 UTC 2023 - 5.7K bytes - Viewed (0) -
docs_src/header_params/tutorial002_an_py310.py
from typing import Annotated from fastapi import FastAPI, Header app = FastAPI() @app.get("/items/") async def read_items( strange_header: Annotated[str | None, Header(convert_underscores=False)] = None, ):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Mar 26 16:56:53 UTC 2024 - 261 bytes - Viewed (0) -
src/cmd/asm/internal/lex/input.go
case "else", "endif", "ifdef", "ifndef", "line": // Press on. default: return false } } switch in.Stack.Text() { case "define": in.define() case "else": in.else_() case "endif": in.endif() case "ifdef": in.ifdef(true) case "ifndef": in.ifdef(false) case "include": in.include() case "line": in.line() case "undef": in.undef()
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Sep 06 13:17:27 UTC 2024 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/ParamMapTest.java
assertTrue(paramMap.containsKey("aaaBbb")); assertFalse(paramMap.containsKey("AaaBbb")); // false assertFalse(paramMap.containsKey("aaabbb")); assertTrue(paramMap.containsKey("aaa_bbb_ccc")); assertTrue(paramMap.containsKey("aaaBbbCcc")); assertFalse(paramMap.containsKey("AaaBbbCcc")); // false assertFalse(paramMap.containsKey("aaabbbcc")); assertTrue(paramMap.containsKey("ccc.ddd"));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/DelegatingLocalArtifactRepository.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
cmd/lock-rest-client.go
func (c *lockRESTClient) IsOnline() bool { return c.connection.State() == grid.StateConnected } // Not a local locker func (c *lockRESTClient) IsLocal() bool { return false } // Close - marks the client as closed. func (c *lockRESTClient) Close() error { return nil } // String - returns the remote host of the connection. func (c *lockRESTClient) String() string {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 18:10:04 UTC 2024 - 3.3K bytes - Viewed (0) -
internal/s3select/sql/funceval.go
switch s { case "true": return true, nil case "false": return false, nil default: return false, errCastFailure("cannot cast to Bool") } } switch x := v.value.(type) { case bool: return x, nil case string: return sToB(strings.ToLower(x)) case []byte: return sToB(strings.ToLower(string(x))) default: return false, errCastFailure("cannot cast %v to Bool") }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 13.2K bytes - Viewed (0) -
istioctl/pkg/workload/testdata/vmconfig/ipv6/meshconfig.yaml
defaultConfig: proxyMetadata: # should be overridden by the command ISTIO_META_DNS_CAPTURE: "false" # should be overridden by the annotation on the WorkloadGroup PROXY_CONFIG_ANNOT_VALUE: "foo" # should be in the final cluster.env/mesh.yaml
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 300 bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/NullPointerTester.java
if (!(member instanceof Method)) { return false; } Method method = (Method) member; if (!method.getName().contentEquals("equals")) { return false; } Class<?>[] parameters = method.getParameterTypes(); if (parameters.length != 1) { return false; } if (!parameters[0].equals(Object.class)) { return false; } return true; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 11 16:13:05 UTC 2024 - 22.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NetServerEnum2.java
dstIndex += 2; writeInt4( serverTypes, dst, dstIndex ); dstIndex += 4; dstIndex += writeString( domain.toUpperCase(), dst, dstIndex, false ); if( which == 1 ) { dstIndex += writeString( lastName.toUpperCase(), dst, dstIndex, false ); } return dstIndex - start; } int writeDataWireFormat( byte[] dst, int dstIndex ) { return 0; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.5K bytes - Viewed (0)