Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,152 for tpool_ (0.11 sec)

  1. .github/workflows/run-mint.sh

    docker volume prune -f || true
    docker volume rm $(docker volume ls -q -f dangling=true) || true
    
    # Stop two nodes, one of each pool, to check that all S3 calls work while quorum is still there
    [ "${MODE}" == "pools" ] && docker-compose -f minio-${MODE}.yaml stop minio2
    [ "${MODE}" == "pools" ] && docker-compose -f minio-${MODE}.yaml stop minio6
    
    # Pause one node, to check that all S3 calls work while one node goes wrong
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/make.bash

    #
    # GOHOSTARCH: The architecture for host tools (compilers and
    # binaries).  Binaries of this type must be executable on the current
    # system, so the only common reason to set this is to set
    # GOHOSTARCH=386 on an amd64 machine.
    #
    # GOARCH: The target architecture for installed packages and tools.
    #
    # GOOS: The target operating system for installed packages and tools.
    #
    # GO_GCFLAGS: Additional go tool compile arguments to use when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JavaToolchainBuildOperationsFixture.groovy

            assert events.size() > 0
            events.each { usageEvent ->
                assertToolchainUsage(tool, jdkMetadata, usageEvent)
            }
        }
    
        static void assertToolchainUsages(List<BuildOperationRecord.Progress> events, JvmInstallationMetadata jdkMetadata, String... tools) {
            assert events.size() > 0
            def expectedTools = tools.toList().sort()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. docs/en/docs/external-links.md

    # External Links and Articles
    
    **FastAPI** has a great community constantly growing.
    
    There are many posts, articles, tools, and projects, related to **FastAPI**.
    
    Here's an incomplete list of some of them.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 22 07:35:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/vet/vetflag.go

    	parseVettoolFlag(args)
    
    	// Query the vet command for its flags.
    	var tool string
    	if vetTool == "" {
    		tool = base.Tool("vet")
    	} else {
    		var err error
    		tool, err = filepath.Abs(vetTool)
    		if err != nil {
    			log.Fatal(err)
    		}
    	}
    	out := new(bytes.Buffer)
    	vetcmd := exec.Command(tool, "-flags")
    	vetcmd.Stdout = out
    	if err := vetcmd.Run(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. subprojects/distributions-full/src/toplevel/README

    For more information about Gradle, please visit: https://gradle.org
    
    If you are using the "all" distribution, the User Manual is included in your distribution.
    
    If you are using the "bin" distribution, a copy of the User Manual is available on https://docs.gradle.org.
    
    Typing `gradle help` prints the command line help.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 15 06:58:16 UTC 2020
    - 976 bytes
    - Viewed (0)
  7. internal/bpool/bpool_test.go

    		t.Fatalf("bytepool length invalid: got %v want %v", len(b), width)
    	}
    	if cap(b) != capWidth {
    		t.Fatalf("bytepool cap invalid: got %v want %v", cap(b), capWidth)
    	}
    
    	bufPool.Put(b)
    
    	// Fill the pool beyond the capped pool size.
    	for i := uint64(0); i < size*2; i++ {
    		bufPool.Put(make([]byte, bufPool.w))
    	}
    
    	b = bufPool.Get()
    	if len(b) != width {
    		t.Fatalf("bytepool length invalid: got %v want %v", len(b), width)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 19:13:27 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollector.java

    import java.io.PrintWriter;
    import java.io.StringWriter;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    /**
     * Collects the test results into memory and spools the test output to file during execution (to avoid holding it all in memory).
     */
    public class TestReportDataCollector implements TestListener, TestOutputListener {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. tests/helper_test.go

    	}
    
    	for i := 0; i < config.Toys; i++ {
    		user.Toys = append(user.Toys, Toy{Name: name + "_toy_" + strconv.Itoa(i+1)})
    	}
    
    	for i := 0; i < config.Tools; i++ {
    		user.Tools = append(user.Tools, Tools{Name: name + "_tool_" + strconv.Itoa(i+1)})
    	}
    
    	if config.Company {
    		user.Company = Company{Name: "company-" + name}
    	}
    
    	if config.Manager {
    		user.Manager = GetUser(name+"_manager", Config{})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/informers/externalversions/generic.go

    package externalversions
    
    import (
    	"fmt"
    
    	v1 "k8s.io/apiextensions-apiserver/examples/client-go/pkg/apis/cr/v1"
    	schema "k8s.io/apimachinery/pkg/runtime/schema"
    	cache "k8s.io/client-go/tools/cache"
    )
    
    // GenericInformer is type of SharedIndexInformer which will locate and delegate to other
    // sharedInformers based on type
    type GenericInformer interface {
    	Informer() cache.SharedIndexInformer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 08 09:52:48 UTC 2018
    - 2K bytes
    - Viewed (0)
Back to top