Update to latest Hugo version, move Hugo config to yaml, update folder structure, update partials.

Signed-off-by: Marc Duiker <marcduiker@users.noreply.github.com>
This commit is contained in:
Marc Duiker 2025-07-17 16:38:57 +00:00
parent c44e56b592
commit 5e7ced6a09
No known key found for this signature in database
GPG Key ID: 6A36EA7754473DD7
2 changed files with 10 additions and 10 deletions

View File

@ -627,9 +627,9 @@ await context.CallActivityAsync("PostResults", sum);
With the release of 1.16, it's even easier to process workflow activities in parallel while putting an upper cap on
concurrency by using the following extension methods on the `WorkflowContext`:
{{< tabs ".NET" >}}
{{% tabpane %}}
{{% codetab %}}
{{% tab header=".NET" %}}
<!-- .NET -->
```csharp
//Revisiting the earlier example...
@ -643,9 +643,9 @@ var sum = results.Sum(t => t);
await context.CallActivityAsync("PostResults", sum);
```
{{% /codetab %}}
{{% /tab %}}
{{< /tabs >}}
{{% /tabpane %}}
Limiting the degree of concurrency in this way can be useful for limiting contention against shared resources. For example, if the activities need to call into external resources that have their own concurrency limits, like a databases or external APIs, it can be useful to ensure that no more than a specified number of activities call that resource concurrently.

View File

@ -237,22 +237,22 @@ The metadata parameters are:
#### Example
{{< tabs Windows Linux >}}
{{% tabpane text=true %}}
{{% codetab %}}
{{% tab header="Windows" %}}
```bash
curl -d '{ \"operation\": \"bulkget\"}' http://localhost:<dapr-port>/v1.0/bindings/<binding-name>
```
{{% /codetab %}}
{{% /tab %}}
{{% codetab %}}
{{% tab header="Linux" %}}
```bash
curl -d '{ "operation": "bulkget"}' \
http://localhost:<dapr-port>/v1.0/bindings/<binding-name>
```
{{% /codetab %}}
{{% /tab %}}
{{< /tabs >}}
{{% /tabpane %}}
#### Response