- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 3,630 for atrule (0.09 sec)
-
android/guava-tests/test/com/google/common/io/FlushablesTest.java
setupFlushable(false); doFlush(mockFlushable, true, false); } public void testFlush_flushableWithEatenException() throws IOException { // make sure that no exception is thrown if 'swallowException' is true // when the mock does throw an exception on flush. setupFlushable(true); doFlush(mockFlushable, true, false); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 3.3K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Cookie.kt
attributeName.equals("path", ignoreCase = true) -> { path = attributeValue } attributeName.equals("secure", ignoreCase = true) -> { secureOnly = true } attributeName.equals("httponly", ignoreCase = true) -> { httpOnly = true } attributeName.equals("samesite", ignoreCase = true) -> { sameSite = attributeValue
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 04:12:05 UTC 2024 - 23.1K bytes - Viewed (0) -
lib/wasm/wasm_exec.js
const setInt64 = (addr, v) => { this.mem.setUint32(addr + 0, v, true); this.mem.setUint32(addr + 4, Math.floor(v / 4294967296), true); } const setInt32 = (addr, v) => { this.mem.setUint32(addr + 0, v, true); } const getInt64 = (addr) => { const low = this.mem.getUint32(addr + 0, true); const high = this.mem.getInt32(addr + 4, true); return low + high * 4294967296; }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Aug 30 19:15:21 UTC 2024 - 16.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
if (baseDir == null) { baseDir = new File(System.getProperty("java.io.tmpdir")); } destoryTimer = new Timer("CommandGeneratorDestoryTimer-" + ComponentUtil.getSystemHelper().getCurrentTimeAsLong(), true); updateProperties(); } protected void updateProperties() { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
return executeCommand(updateCommand, username, password) == 0; } return true; } @Override public User load(final User user) { return user; } protected boolean isTargetUser(final String username) { if (targetUsers == null) { return true; } return stream(targetUsers).get(stream -> stream.anyMatch(s -> s.equals(username))); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.3K bytes - Viewed (0) -
cmd/admin-handlers.go
return false } return true } func extractTraceOptions(r *http.Request) (opts madmin.ServiceTraceOpts, err error) { if err := opts.ParseParams(r); err != nil { return opts, err } // Support deprecated 'all' query if r.Form.Get("all") == "true" { opts.S3 = true opts.Internal = true opts.Storage = true opts.OS = true // Older mc - cannot deal with more types...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 99.7K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/BasicDerAdapter.kt
/** Encode and decode the value once tags are handled. */ private val codec: Codec<T>, /** True if the default value should be used if this value is absent during decoding. */ val isOptional: Boolean = false, /** The value to return if this value is absent. Undefined unless this is optional. */ val defaultValue: T? = null, /** True to set the encoded or decoded value as the type hint for the current SEQUENCE. */
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.4K bytes - Viewed (0) -
.teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt
"-PperformanceBaselines=%performance.baselines%", "-PtestJavaVersion=17", "-PtestJavaVendor=openjdk", "-PautoDownloadAndroidStudio=true", "-PrunAndroidStudioInHeadlessMode=true", "-Porg.gradle.java.installations.auto-download=false",
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 07:24:00 UTC 2024 - 7.3K bytes - Viewed (0) -
cmd/metrics-v2.go
getNodeHealthMetrics(MetricsGroupOpts{dependGlobalNotificationSys: true}), getClusterStorageMetrics(MetricsGroupOpts{dependGlobalObjectAPI: true}), getClusterTierMetrics(MetricsGroupOpts{dependGlobalObjectAPI: true}), getClusterUsageMetrics(MetricsGroupOpts{dependGlobalObjectAPI: true}), getKMSMetrics(MetricsGroupOpts{dependGlobalObjectAPI: true, dependGlobalKMS: true}), getClusterHealthMetrics(MetricsGroupOpts{dependGlobalObjectAPI: true}),
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 131.9K bytes - Viewed (0) -
.golangci.yml
linters-settings: gofumpt: simplify: true misspell: locale: US staticcheck: checks: ['all', '-ST1005', '-ST1000', '-SA4000', '-SA9004', '-SA1019', '-SA1008', '-U1000', '-ST1016'] linters: disable-all: true enable: - durationcheck - gocritic - gofumpt - goimports - gomodguard - govet - ineffassign - misspell - revive - staticcheck - tenv
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Dec 07 02:17:03 UTC 2023 - 689 bytes - Viewed (0)