search for: validatenotnullorempty

Displaying 2 results from an estimated 2 matches for "validatenotnullorempty".

2020 Oct 15
2
Performance regression of Windows clients?
...t;https://www.samba.org/samba/support/globalsupport.html> Thanks for the pointer, we might consider this in the future. Cheers, Giuseppe ---- # PowerShell script to touch and remove 100 files # # parameter: target directory (which must exist) param( [parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()]$path ) # first touch the files $duration = Measure-Command { 1..100 | ForEach-Object { New-Item -Path $path -Name "test.$_" -ItemType File -Force } } $touchtime_ms = [math]::Round($duration.TotalMilliseconds) # then remove them $duration = Measure-Command {Remove-Item -Path $path\*...
2020 Oct 15
2
Performance regression of Windows clients?
On 13/10/2020 23:00, Jeremy Allison wrote: > On Mon, Oct 12, 2020 at 03:16:31PM +0200, Giuseppe Lo Presti via samba wrote: [...] >> As the mentioned thread seems to have been moved to the samba-technical >> mailing list, was there any conclusion reached? In particular, we?re looking >> for suggestions on possible reconfigurations (if any!) of our Windows >> clients, as