- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 161 for 60 (0.01 sec)
-
samples/guide/src/main/java/okhttp3/recipes/RewriteResponseCacheControl.java
private static final Interceptor REWRITE_CACHE_CONTROL_INTERCEPTOR = chain -> { Response originalResponse = chain.proceed(chain.request()); return originalResponse.newBuilder() .header("Cache-Control", "max-age=60") .build(); }; private final OkHttpClient client; public RewriteResponseCacheControl(File cacheDirectory) throws Exception { Cache cache = new Cache(cacheDirectory, 1024 * 1024);
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jan 12 03:31:36 UTC 2019 - 2.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/ForwardingExecutorServiceTest.java
} public void testNoForwardingOfDefaultMethod() throws Exception { ExecutorService delegate = new ThreadPoolExecutor(0, Integer.MAX_VALUE, 60, SECONDS, new SynchronousQueue<>()) { @Override public void close() { throw new AssertionError( "ForwardingExecutorService should have used the default method"
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 18:45:52 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/web.xml
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee web-app_6_0.xsd" version="6.0"> <!-- ================================================================================= --> <!-- Servlet Filter -->
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue May 06 09:19:22 UTC 2025 - 7.9K bytes - Viewed (0) -
cmd/bucket-stats_gen.go
case "Totals": var zb0002 uint32 zb0002, err = dc.ReadArrayHeader() if err != nil { err = msgp.WrapError(err, "Totals") return } if zb0002 != uint32(60) { err = msgp.ArrayError{Wanted: uint32(60), Got: zb0002} return } for za0001 := range z.Totals { err = z.Totals[za0001].DecodeMsg(dc) if err != nil { err = msgp.WrapError(err, "Totals", za0001)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 06 06:00:45 UTC 2024 - 57.5K bytes - Viewed (0) -
ci/official/containers/ml_build_arm64/Dockerfile
tar zxf - google-cloud-sdk && \ google-cloud-sdk/install.sh --quiet ENV PATH="$PATH:/google-cloud-sdk/bin/" # Install various tools. # - bats: bash unit testing framework # NOTE: v1.6.0 seems to have a bug that made "git" in setup_file break # - bazelisk: always use the correct bazel version # - buildifier: clean bazel build depshttps://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildifier-linux-arm64
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Aug 01 02:44:57 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
// Set up transaction parameters transaction.setTotalParameterCount(100); transaction.setTotalDataCount(200); transaction.setParameterCount(30); transaction.setParameterOffset(60); transaction.setParameterDisplacement(20); transaction.setDataCount(80); transaction.setDataOffset(90); transaction.setDataDisplacement(70); // Execute the method
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
cmd/update-notifier_test.go
{time.Hour, "", ""}, {0 * time.Second, "my_download_url", "now"}, {1 * time.Second, "my_download_url", "1 second before the latest release"}, {37 * time.Second, "my_download_url", "37 seconds before the latest release"}, {60 * time.Second, "my_download_url", "1 minute before the latest release"}, {61 * time.Second, "my_download_url", "1 minute before the latest release"}, // Testcase index 10
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Jul 31 15:36:19 UTC 2023 - 4.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java
SMBUtil.writeInt8(2048L, buffer, 48); // allocationSize SMBUtil.writeInt4(0x20, buffer, 56); // extFileAttributes SMBUtil.writeInt4(filenameLength, buffer, 60); // fileNameLength SMBUtil.writeInt4(0, buffer, 64); // eaSize // Write short name length and short name byte[] shortNameBytes = Strings.getUNIBytes(shortName);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.28.md
- go.opencensus.io: v0.23.0 → v0.24.0 - go.uber.org/atomic: v1.7.0 → v1.10.0 - go.uber.org/multierr: v1.6.0 → v1.11.0 - golang.org/x/crypto: v0.1.0 → v0.6.0 - golang.org/x/mod: v0.9.0 → v0.10.0 - golang.org/x/net: v0.8.0 → v0.9.0 - golang.org/x/oauth2: ee48083 → v0.6.0 - golang.org/x/sys: v0.6.0 → v0.7.0 - golang.org/x/term: v0.6.0 → v0.7.0 - golang.org/x/text: v0.8.0 → v0.9.0 - golang.org/x/time: 90d013b → v0.3.0
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Oct 23 20:13:20 UTC 2024 - 456.9K bytes - Viewed (1) -
clause/where_test.go
{ []clause.Interface{clause.Select{}, clause.From{}, clause.Where{ Exprs: []clause.Expression{clause.Not(clause.Expr{SQL: "`score` <= ?", Vars: []interface{}{100}}, clause.Expr{SQL: "`age` <= ?", Vars: []interface{}{60}})}, }}, "SELECT * FROM `users` WHERE NOT (`score` <= ? AND `age` <= ?)", []interface{}{100, 60}, }, { []clause.Interface{clause.Select{}, clause.From{}, clause.Where{
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Apr 25 12:22:53 UTC 2024 - 6.2K bytes - Viewed (0)