- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 1,106 for Feed (0.02 seconds)
-
cmd/service.go
// freezeServices will freeze all incoming S3 API calls. // For each call, unfreezeServices must be called once. func freezeServices() { // Use atomics for globalServiceFreeze, so we can read without locking. // We need a lock since we are need the 2 atomic values to remain in sync. globalServiceFreezeMu.Lock() // If multiple calls, first one creates channel. globalServiceFreezeCnt++ if globalServiceFreezeCnt == 1 {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Wed Feb 28 07:02:14 GMT 2024 - 3.8K bytes - Click Count (0) -
.github/ISSUE_TEMPLATE/feature_enhancement_request.yaml
required: true - type: textarea attributes: label: How do you want it to be improved? validations: required: true - type: textarea attributes: label: Why do we need it to be improved? validations: required: true - type: textarea attributes: label: Example description: >Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Nov 17 18:47:47 GMT 2023 - 3.9K bytes - Click Count (0) -
okhttp-tls/README.md
OdHOim9+ -----END PRIVATE KEY----- ``` Recommendations --------------- Typically servers need a held certificate plus a chain of intermediates. Servers only need the private key for their own certificate. The chain served by a server doesn't need the root certificate. The trusted roots don't need to be the same for client and server when using client authentication.
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Thu Oct 30 21:39:59 GMT 2025 - 9.1K bytes - Click Count (0) -
impl/maven-core/lifecycle-executor.txt
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 9.7K bytes - Click Count (0) -
dbflute_fess/dfprop/basicInfoMap.dfprop
# The base output directory for generating. # Basically you don't need to specify this if the project style is as follows: # # *Java Project Style # If this value is '../src/main/java' and your project is under the Maven, # you don't need to set up this property! # # {app-project} # | # |-dbflute_[project]Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Oct 31 23:35:14 GMT 2015 - 9.2K bytes - Click Count (0) -
docs/en/docs/tutorial/testing.md
Use the `TestClient` object the same way as you do with `httpx`. Write simple `assert` statements with the standard Python expressions that you need to check (again, standard `pytest`). {* ../../docs_src/app_testing/tutorial001_py39.py hl[2,12,15:18] *} /// tip Notice that the testing functions are normal `def`, not `async def`.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 6.1K bytes - Click Count (0) -
dbflute_fess/dfprop/outsideSqlMap.dfprop
# Basically you don't need this. # #; sqlFileEncoding = UTF-8 # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o sqlDirectory: (NotRequired - Default generateOutputDirectory & resourceOutputDirectory) # The directory of SQL file for outsideSql. # Basically you don't need this if your directory structure is same as default.
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Jul 25 06:04:16 GMT 2015 - 8K bytes - Click Count (0) -
proguard/base.pro
# Note: We intentionally don't add the flags we'd need to make Flags and Enums # work. That's because the Proguard configuration required to make them work on # optimized code would preclude lots of optimization, like converting enums # into ints. # Throwables uses internal APIs for lazy stack trace resolution -dontnote sun.misc.SharedSecrets -keep class sun.misc.SharedSecrets { *** getJavaLangAccess(...); } -dontnote sun.misc.JavaLangAccess
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue May 09 00:29:01 GMT 2023 - 1.2K bytes - Click Count (0) -
cmd/data-usage.go
} // For forward compatibility reasons, we need to add this code. if len(dataUsageInfo.BucketsUsage) == 0 { dataUsageInfo.BucketsUsage = make(map[string]BucketUsageInfo, len(dataUsageInfo.BucketSizes)) for bucket, size := range dataUsageInfo.BucketSizes { dataUsageInfo.BucketsUsage[bucket] = BucketUsageInfo{Size: size} } } // For backward compatibility reasons, we need to add this code.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu May 09 00:51:34 GMT 2024 - 5.6K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseManager.java
// Directory leasing requires SMB 3.0 or higher // MS-SMB2: Level 2 leasing (which includes directory leasing) is only supported in SMB 3.0+ // We'll validate this when we actually need to use the session // Request base lease Smb2LeaseKey leaseKey = baseLeaseManager.requestLease(directoryPath, requestedState); // Create directory cache entryCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 23 01:47:47 GMT 2025 - 12.3K bytes - Click Count (0)