Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 105 for cpuIDs (0.17 sec)

  1. src/internal/runtime/atomic/atomic_riscv64.s

    //   - If rl is set, the CPU may move the instruction forward, but not backward.
    //
    //   - If both are set, the CPU may not reorder the instruction at all.
    //
    // These four modes correspond to other well-known memory models on other CPUs.
    // On ARM, aq corresponds to a dmb ishst, aq+rl corresponds to a dmb ish. On
    // Intel, aq corresponds to an lfence, rl to an sfence, and aq+rl to an mfence
    // (or a lock prefix).
    //
    // Go's memory model requires that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/runtime/gc_test.go

    	*n--
    	countpwg(n, ready, teardown)
    }
    
    func TestMemoryLimit(t *testing.T) {
    	if testing.Short() {
    		t.Skip("stress test that takes time to run")
    	}
    	if runtime.NumCPU() < 4 {
    		t.Skip("want at least 4 CPUs for this test")
    	}
    	got := runTestProg(t, "testprog", "GCMemoryLimit")
    	want := "OK\n"
    	if got != want {
    		t.Fatalf("expected %q, but got %q", want, got)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/go/doc/testdata/testing.1.golden

    		timeout		= flag.Duration("test.timeout", 0, "if positive, sets an aggregate time limit for all tests")
    		cpuListStr	= flag.String("test.cpu", "", "comma-separated list of number of CPUs to use for each test")
    		parallel	= flag.Int("test.parallel", runtime.GOMAXPROCS(0), "maximum test parallelism")
    	
    		cpuList	[]int
    	)
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  4. docs/de/docs/deployment/server-workers.md

    ## Zusammenfassung
    
    Sie können **Gunicorn** (oder auch Uvicorn) als Prozessmanager mit Uvicorn-Workern verwenden, um **Multikern-CPUs** zu nutzen und **mehrere Prozesse parallel** auszuführen.
    
    Sie können diese Tools und Ideen nutzen, wenn Sie **Ihr eigenes Deployment-System** einrichten und sich dabei selbst um die anderen Deployment-Konzepte kümmern.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/server-workers.md

    ## Recap
    
    You can use **Gunicorn** (or also Uvicorn) as a process manager with Uvicorn workers to take advantage of **multi-core CPUs**, to run **multiple processes in parallel**.
    
    You could use these tools and ideas if you are setting up **your own deployment system** while taking care of the other deployment concepts yourself.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/preflight/checks.go

    			}
    		}
    	}
    
    	return warnings, errorList
    }
    
    // NumCPUCheck checks if current number of CPUs is not less than required
    type NumCPUCheck struct {
    	NumCPU int
    }
    
    // Name returns the label for NumCPUCheck
    func (NumCPUCheck) Name() string {
    	return "NumCPU"
    }
    
    // Check number of CPUs required by kubeadm
    func (ncc NumCPUCheck) Check() (warnings, errorList []error) {
    	numCPU := runtime.NumCPU()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. cmd/peer-rest-server.go

    	aoMetricsGroup         = grid.NewArrayOf[*MetricV2](func() *MetricV2 { return &MetricV2{} })
    	madminBgHealState      = grid.NewJSONPool[madmin.BgHealState]()
    	madminCPUs             = grid.NewJSONPool[madmin.CPUs]()
    	madminMemInfo          = grid.NewJSONPool[madmin.MemInfo]()
    	madminNetInfo          = grid.NewJSONPool[madmin.NetInfo]()
    	madminOSInfo           = grid.NewJSONPool[madmin.OSInfo]()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. src/go/doc/testdata/testing.go

    	timeout        = flag.Duration("test.timeout", 0, "if positive, sets an aggregate time limit for all tests")
    	cpuListStr     = flag.String("test.cpu", "", "comma-separated list of number of CPUs to use for each test")
    	parallel       = flag.Int("test.parallel", runtime.GOMAXPROCS(0), "maximum test parallelism")
    
    	cpuList []int
    )
    
    // common holds the elements common between T and B and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  9. docs/security/README.md

    - [PRF](#prf): HMAC-SHA-256
    - [AEAD](#aead): AES-256-GCM if the CPU supports AES-NI, ChaCha20-Poly1305 otherwise. More specifically AES-256-GCM is only selected for X86-64 CPUs with AES-NI extension.
    
    Further any secret key (apart from the KMS-generated ones) is 256 bits long. The KMS-generated keys may be 256 bits but this depends on the KMS capabilities and configuration.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprog/gc.go

    func gcMemoryLimit(gcPercent int) {
    	if oldProcs := runtime.GOMAXPROCS(4); oldProcs < 4 {
    		// Fail if the default GOMAXPROCS isn't at least 4.
    		// Whatever invokes this should check and do a proper t.Skip.
    		println("insufficient CPUs")
    		return
    	}
    	debug.SetGCPercent(gcPercent)
    
    	const myLimit = 256 << 20
    	if limit := debug.SetMemoryLimit(-1); limit != math.MaxInt64 {
    		print("expected MaxInt64 limit, got ", limit, " bytes instead\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
Back to top