- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 241 for ages (0.08 sec)
-
CONTRIBUTING.md
diff <my_cc_file> /tmp/my_cc_file.cc ``` #### Python coding style Changes to TensorFlow Python code should conform to [Google Python Style Guide](https://github.com/google/styleguide/blob/gh-pages/pyguide.md) Use `pylint` to check your Python changes. To install `pylint` and check a file with `pylint` against TensorFlow's custom style definition: ```bash pip install pylint
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Sat Jan 11 04:47:59 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
*/ public Map<Smb2LeaseKey, LeaseEntry> getAllLeases() { return new ConcurrentHashMap<>(leases); } /** * Clean up expired leases * * @param maxAgeMillis maximum age in milliseconds * @return number of leases cleaned up */ public int cleanupExpiredLeases(long maxAgeMillis) { lock.writeLock().lock(); try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
```java public class SecureHandleStorage { private final SecretKey encryptionKey; public void saveEncrypted(HandleInfo handle, Path file) throws Exception { Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); cipher.init(Cipher.ENCRYPT_MODE, encryptionKey); ByteArrayOutputStream baos = new ByteArrayOutputStream(); try (CipherOutputStream cos = new CipherOutputStream(baos, cipher);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt
} fun testCachedRequest() { enableTls() server.enqueue(MockResponse(body = "abc", headers = Headers.headersOf("cache-control", "public, max-age=3"))) server.enqueue(MockResponse(body = "abc")) val ctxt = InstrumentationRegistry.getInstrumentation().targetContext.applicationContext val cacheSize = 1L * 1024 * 1024 // 1MB
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 02 14:12:28 UTC 2025 - 29K bytes - Viewed (0) -
cmd/generic-handlers.go
header.Set("X-Content-Type-Options", "nosniff") // Prevent mime-sniff header.Set("Strict-Transport-Security", "max-age=31536000; includeSubDomains") // HSTS mitigates variants of MITM attacks // Previously, this value was set right before a response was sent to // the client. So, logger and Error response XML were not using this
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 20.7K bytes - Viewed (1) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt
.cache(cache) .build() server.enqueue( MockResponse( headers = headersOf("cache-control", "max-age=60"), body = "ABCD", ), ) server.enqueue( MockResponse( headers = headersOf("cache-control", "max-age=60"), body = "EFGH", ), ) val call1 = client.newCall(Request(server.url("/"))) val response1 = call1.execute()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 73.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
ExecJob result = execJob.gcLogging(); assertSame(execJob, result); assertEquals(1, execJob.jvmOptions.size()); assertTrue(execJob.jvmOptions.get(0).startsWith("-Xlog:gc*,gc+age=trace,safepoint:file=")); assertTrue(execJob.jvmOptions.get(0).contains("gc-test.log")); // Test with custom logFilePath execJob.jvmOptions.clear(); execJob.logFilePath("/custom/path");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
okhttp/src/androidMain/assets/PublicSuffixDatabase.list
pa.us paas.beebyte.io paas.datacenter.fi paas.hosted-by-previder.com paas.massivegrid.com pabianice.pl padova.it padua.it page pages-research.it.hs-heilbronn.de pages.dev pages.gay pages.it.hs-heilbronn.de pages.torproject.net pages.wiardweb.com pagespeedmobilizer.com pagexl.com palermo.it palmas.br panasonic panel.dev panel.gg pantheonsite.io
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Dec 31 14:50:53 UTC 2024 - 129.6K bytes - Viewed (2) -
src/main/java/jcifs/smb/SmbTransportImpl.java
if (cipherId == -1) { // Default to AES-128-GCM for SMB 3.1.1 if no cipher negotiated cipherId = EncryptionNegotiateContext.CIPHER_AES128_GCM; } } else if (dialect.atLeast(DialectVersion.SMB300)) { // SMB 3.0/3.0.2 only supports AES-128-CCM cipherId = EncryptionNegotiateContext.CIPHER_AES128_CCM; } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** * Get the value for the key 'api.cors.max.age'. <br> * The value is, e.g. 3600 <br> * comment: Max age for CORS preflight requests. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getApiCorsMaxAge(); /** * Get the value for the key 'api.cors.max.age' as {@link Integer}. <br> * The value is, e.g. 3600 <br>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1)