- Sort Score
- Result 10 results
- Languages All
Results 2911 - 2920 of 3,090 for FALSE (0.03 sec)
-
android/guava/src/com/google/common/primitives/UnsignedLongs.java
*/ static boolean overflowInParse(long current, int digit, int radix) { if (current >= 0) { if (current < maxValueDivs[radix]) { return false; } if (current > maxValueDivs[radix]) { return true; } // current == maxValueDivs[radix] return (digit > maxValueMods[radix]); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Aug 12 21:04:48 UTC 2024 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/DES.java
} } /// Set the key. public void setKey( byte[] key ) { // CHECK PAROTY TBD deskey( key, true, encryptKeys ); deskey( key, false, decryptKeys ); } // Turn an 8-byte key into internal keys. private void deskey( byte[] keyBlock, boolean encrypting, int[] KnL ) { int i, j, l, m, n; int[] pc1m = new int[56];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 21.4K bytes - Viewed (0) -
internal/etag/etag.go
// The string can be an encrypted, singlepart // or multipart S3 ETag. It returns an error if s is // not a valid textual representation of an ETag. func Parse(s string) (ETag, error) { const strict = false return parse(s, strict) } // parse parse s as an S3 ETag, returning the result. // It operates in one of two modes: // - strict // - non-strict // // In strict mode, parse only accepts ETags that
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Mar 10 21:09:36 UTC 2024 - 13.3K bytes - Viewed (0) -
docs/em/docs/tutorial/sql-databases.md
โ: ```Python connect_args={"check_same_thread": False} ``` ...๐ช ๐ด `SQLite`. โซ๏ธ ๐ซ ๐ช ๐ ๐ฝ. /// info | "๐ก โน" ๐ข ๐ ๐ ๐ด โ 1๏ธโฃ ๐งต ๐ โฎ๏ธ โซ๏ธ, ๐ค ๐ ๐ ๐งต ๐ ๐ต ๐ฌ ๐จ. ๐ โ ๐ซ ๐ค ๐ ๐ ๐ ๐ (๐ ๐จ). โ๏ธ FastAPI, โ๏ธ ๐ ๐ข (`def`) ๐ ๐ 1๏ธโฃ ๐งต ๐ช ๐ โฎ๏ธ ๐ฝ ๐ ๐จ, ๐ฅ ๐ช โ ๐ ๐ญ ๐ โซ๏ธ ๐ โ ๐ โฎ๏ธ `connect_args={"check_same_thread": False}`. , ๐ฅ ๐ โ ๐ญ ๐ ๐จ ๐ค ๐ฎ ๐ ๐ฝ ๐ ๐ ๐, ๐ค ๐ โโ ๐ช ๐ ๐ข ๐ ๏ธ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 25K bytes - Viewed (0) -
docs/em/docs/tutorial/query-params-str-validations.md
``` //// ๐ฉบ ๐ ๐ฆ โซ๏ธ ๐ ๐: <img src="/img/tutorial/query-params-str-validations/image01.png"> ## ๐ซ โช๏ธโก๏ธ ๐ ๐ซ ๐ข ๐ข โช๏ธโก๏ธ ๐ ๐ ๐ (& โก๏ธ, โช๏ธโก๏ธ ๐ง ๐งพ โ๏ธ), โ ๐ข `include_in_schema` `Query` `False`: //// tab | ๐ 3๏ธโฃ.6๏ธโฃ & ๐ ```Python hl_lines="10" {!> ../../docs_src/query_params_str_validations/tutorial014.py!} ``` //// //// tab | ๐ 3๏ธโฃ.1๏ธโฃ0๏ธโฃ & ๐
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.7K bytes - Viewed (0) -
cni/pkg/nodeagent/informers.go
// Pod is not terminated, and has changed in a way we care about - so reconcile if !shouldBeEnabled { log.Debugf("removing pod from mesh: no longer should be enabled") err := s.dataplane.RemovePodFromMesh(s.ctx, pod, false) log.Debugf("RemovePodFromMesh returned: %v", err) // we ignore errors here as we don't want this event to be retried by the queue. } else {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 11.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
inputModel.update(modelNormalizer.mergeDuplicates(inputModel.getDelegate(), request, problems)); Map<String, Activation> interpolatedActivations = getProfileActivations(inputModel, false); injectProfileActivations(inputModel, interpolatedActivations); // profile injection for (Profile activeProfile : activePomProfiles) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 83.6K bytes - Viewed (0) -
internal/logger/logger.go
ErrorKind = madmin.LogKindError EventKind = madmin.LogKindEvent InfoKind = madmin.LogKindInfo ) var ( // DisableLog avoids printing error/event/info kind of logs DisableLog = false // Output allows configuring custom writer, defaults to os.Stderr Output io.Writer = os.Stderr ) var trimStrings []string // TimeFormat - logging time format. const TimeFormat string = "15:04:05 MST 01/02/2006"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 22 09:43:48 UTC 2024 - 12.4K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt
private val bytesOut = Buffer() private var hpackWriter: Hpack.Writer? = null @BeforeEach fun reset() { hpackReader = newReader(bytesIn) hpackWriter = Hpack.Writer(4096, false, bytesOut) } /** * Variable-length quantity special cases strings which are longer than 127 bytes. Values such as * cookies can be 4KiB, and should be possible to send. *
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 38.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
return ntlm.type == this.type && Objects.equals(domA, domB) && ntlm.getUsername().equalsIgnoreCase(this.getUsername()) && Objects.equals(getPassword(), ntlm.getPassword()); } return false; } /** * Return the upcased username hash code. */ @Override public int hashCode () { return getName().toUpperCase().hashCode(); } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 18.8K bytes - Viewed (0)