- Sort Score
- Result 10 results
- Languages All
Results 921 - 930 of 1,282 for updateFn (0.07 sec)
-
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
Long lastFailure = lastFailureTimes.get(key); return lastFailure == null || now - lastFailure > FAILURE_RECOVERY_TIME * 2; }); // Update connection metrics updateConnectionMetrics(); } /** * Update connection metrics for monitoring */ private void updateConnectionMetrics() { // Clean up metrics for connections that no longer exist
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
src/archive/tar/reader.go
hdr.Typeflag = TypeDir // Legacy archives use trailing slash for directories } else { hdr.Typeflag = TypeReg } } // The extended headers may have updated the size. // Thus, setup the regFileReader again after merging PAX headers. if err := tr.handleRegularFile(hdr); err != nil { return nil, err }Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Oct 07 19:46:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileDirectoryLeasingExtension.java
Smb2LeaseState.SMB2_LEASE_READ_CACHING | Smb2LeaseState.SMB2_LEASE_HANDLE_CACHING, scope); // Perform actual directory enumeration SmbFile[] files = smbFile.listFiles(); // Update cache if we have a directory lease if (leaseKey != null) { dirManager.updateDirectoryCache(directoryPath, Arrays.asList(files)); } return files; } /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 7.1K bytes - Viewed (0) -
internal/deadlineconn/deadlineconn_test.go
return } // Set a deadline in the past to indicate we want the next read to fail. // Ensure we don't override it on read. deadlineconn.SetReadDeadline(time.Unix(1, 0)) // Be sure to exceed update interval time.Sleep(updateInterval * 2) _, terr = deadlineconn.Read(b) if terr == nil { cerr = fmt.Errorf("could read from client, expected error, got %v", terr) return } }()
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Mon Nov 11 17:15:17 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
String SUGGEST_UPDATE_REQUEST_INTERVAL = "suggest.update.request.interval"; /** The key of the configuration. e.g. 2 */ String SUGGEST_UPDATE_DOC_PER_REQUEST = "suggest.update.doc.per.request"; /** The key of the configuration. e.g. 50% */ String SUGGEST_UPDATE_CONTENTS_LIMIT_NUM_PERCENTAGE = "suggest.update.contents.limit.num.percentage";
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2) -
docs/en/docs/how-to/separate-openapi-schemas.md
Now, there are some cases where you might want to have the **same schema for input and output**. Probably the main use case for this is if you already have some autogenerated client code/SDKs and you don't want to update all the autogenerated client code/SDKs yet, you probably will want to do it at some point, but maybe not right now. In that case, you can disable this feature in **FastAPI**, with the parameter `separate_input_output_schemas=False`.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 4.5K bytes - Viewed (0) -
docs/en/docs/tutorial/testing.md
Both *path operations* require an `X-Token` header. {* ../../docs_src/app_testing/app_b_an_py310/main.py *} ### Extended testing file { #extended-testing-file } You could then update `test_main.py` with the extended tests: {* ../../docs_src/app_testing/app_b_an_py310/test_main.py *}Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 6.1K bytes - Viewed (0) -
cmd/bucket-policy-handlers.go
return } configData, err := json.Marshal(bucketPolicy) if err != nil { writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return } updatedAt, err := globalBucketMetadataSys.Update(ctx, bucket, bucketPolicyConfig, configData) if err != nil { writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return } // Call site replication hook.
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/S3StorageClient.java
.build(); s3Client.putObjectTagging(request); } catch (final Exception e) { throw new StorageException("Failed to update tags for " + objectName, e); } } @Override public void ensureBucketExists() { try { final HeadBucketRequest request = HeadBucketRequest.builder().bucket(bucket).build();
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.9K bytes - Viewed (0) -
ci/devinfra/docker/windows/Dockerfile
Expand-Archive -Path 'C:\Temp\google-cloud-sdk.zip' -DestinationPath $env:ProgramFiles -Verbose:$false RUN & \"$env:ProgramFiles\\google-cloud-sdk\\install.bat\" --path-update false RUN $env:Path += \";$env:ProgramFiles\\google-cloud-sdk\\bin\"; \ [Environment]::SetEnvironmentVariable('Path', $env:Path, [EnvironmentVariableTarget]::Machine); # Re-enable prompts for interactive use.
Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Fri Jan 17 16:35:57 UTC 2025 - 8.4K bytes - Viewed (0)