Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 94 of 94 for sched (0.04 sec)

  1. src/expvar/expvar_test.go

    	var s String
    
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			s.Set("red")
    		}
    	})
    }
    
    func TestMapInit(t *testing.T) {
    	RemoveAll()
    	colors := NewMap("bike-shed-colors")
    	colors.Add("red", 1)
    	colors.Add("blue", 1)
    	colors.Add("chartreuse", 1)
    
    	n := 0
    	colors.Do(func(KeyValue) { n++ })
    	if n != 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/mips/a.out.go

    )
    
    const (
    	/* mark flags */
    	FOLL    = 1 << 0
    	LABEL   = 1 << 1
    	LEAF    = 1 << 2
    	SYNC    = 1 << 3
    	BRANCH  = 1 << 4
    	LOAD    = 1 << 5
    	FCMP    = 1 << 6
    	NOSCHED = 1 << 7
    
    	NSCHED = 20
    )
    
    const (
    	C_NONE = iota
    	C_REG
    	C_FREG
    	C_FCREG
    	C_MREG /* special processor register */
    	C_WREG /* MSA registers */
    	C_HI
    	C_LO
    	C_ZCON
    	C_SCON /* 16 bit signed */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. src/encoding/gob/encoder_test.go

    type SingleTest struct {
    	in  any
    	out any
    	err string
    }
    
    var singleTests = []SingleTest{
    	{17, &testInt, ""},
    	{float32(17.5), &testFloat32, ""},
    	{"bike shed", &testString, ""},
    	{[]string{"bike", "shed", "paint", "color"}, &testSlice, ""},
    	{map[string]int{"seven": 7, "twelve": 12}, &testMap, ""},
    	{[7]int{4, 55, 0, 0, 0, 0, 0}, &testArray, ""}, // case that once triggered a bug
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. cmd/iam-store.go

    	// reject such operation (updates to the service account are handled in
    	// a different API).
    	if su, found := cache.iamUsersMap[accessKey]; found {
    		scred := su.Credentials
    		if scred.ParentUser != parentUser {
    			return updatedAt, fmt.Errorf("%w: the service account access key is taken by another user", errIAMServiceAccountNotAllowed)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top