Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 133 for index (0.05 sec)

  1. cmd/erasure-server-pool.go

    	nSets := make([]int, len(z.serverPools))
    	g := errgroup.WithNErrs(len(z.serverPools))
    	for index := range z.serverPools {
    		index := index
    		// Skip suspended pools or pools participating in rebalance for any new
    		// I/O.
    		if z.IsSuspended(index) || z.IsPoolRebalancing(index) {
    			continue
    		}
    		pool := z.serverPools[index]
    		nSets[index] = pool.setCount
    		g.Go(func() error {
    			// Get the set where it would be placed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/validation/validation.go

    		if _, ok := resourcesWithWildcardSubresoures[res]; ok {
    			allErrors = append(allErrors, field.Invalid(fldPath.Index(i), resSub, fmt.Sprintf("if '%s/*' is present, must not specify %s", res, resSub)))
    		}
    		if _, ok := subResourcesWithWildcardResource[sub]; ok {
    			allErrors = append(allErrors, field.Invalid(fldPath.Index(i), resSub, fmt.Sprintf("if '*/%s' is present, must not specify %s", sub, resSub)))
    		}
    		if sub == "*" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. tests/migrate_test.go

    	}
    
    	if !DB.Migrator().HasIndex(&IndexStruct{}, "Name") {
    		t.Fatalf("Failed to find index for user's name")
    	}
    
    	if err := DB.Migrator().DropIndex(&IndexStruct{}, "Name"); err != nil {
    		t.Fatalf("Failed to drop index for user's name, got err %v", err)
    	}
    
    	if DB.Migrator().HasIndex(&IndexStruct{}, "Name") {
    		t.Fatalf("Should not find index for user's name after delete")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    	if alreadyFlushed {
    		return
    	}
    
    	index := cycle % uint32(len(memRecord{}.future))
    	lock(&profMemActiveLock)
    	lock(&profMemFutureLock[index])
    	mProf_FlushLocked(index)
    	unlock(&profMemFutureLock[index])
    	unlock(&profMemActiveLock)
    }
    
    // mProf_FlushLocked flushes the events from the heap profiling cycle at index
    // into the active profile. The caller must hold the lock for the active profile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				// the scope of a cast operator.
    				return &TemplateParam{Index: index, Template: nil}
    			}
    
    			if index >= len(template.Args) {
    				st.failEarlier(fmt.Sprintf("substituted template index out of range (%d >= %d)", index, len(template.Args)), st.off-off)
    			}
    
    			return &TemplateParam{Index: index, Template: template}
    		}
    		seen := make(map[AST]bool)
    		skip := func(a AST) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    			name = "Dir"
    		case 1:
    			h = FileServer(FS(os.DirFS(".")))
    			name = "DirFS"
    		}
    		t.Run(name, func(t *testing.T) {
    			const want = "index.html says hello\n"
    			ts := newClientServerTest(t, mode, h).ts
    
    			for _, path := range []string{"/testdata/", "/testdata/index.html"} {
    				res, err := ts.Client().Get(ts.URL + path)
    				if err != nil {
    					t.Fatal(err)
    				}
    				b, err := io.ReadAll(res.Body)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. src/bytes/bytes_test.go

    }
    
    func bmIndexRuneASCII(index func([]byte, rune) int) func(b *testing.B, n int) {
    	return func(b *testing.B, n int) {
    		buf := bmbuf[0:n]
    		buf[n-1] = 'x'
    		for i := 0; i < b.N; i++ {
    			j := index(buf, 'x')
    			if j != n-1 {
    				b.Fatal("bad index", j)
    			}
    		}
    		buf[n-1] = '\x00'
    	}
    }
    
    func bmIndexRune(index func([]byte, rune) int) func(b *testing.B, n int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. src/reflect/type.go

    				}
    				nextCount[styp] = 1
    				if count[t] > 1 {
    					nextCount[styp] = 2 // exact multiple doesn't matter
    				}
    				var index []int
    				index = append(index, scan.index...)
    				index = append(index, i)
    				next = append(next, fieldScan{styp, index})
    			}
    		}
    		if ok {
    			break
    		}
    	}
    	return
    }
    
    // FieldByName returns the struct field with the given name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. pkg/apis/batch/validation/validation.go

    		return 0, 0, fmt.Errorf("the fragment %q violates the requirement that an index interval can have at most two parts separated by '-'", intervalStr)
    	}
    	x, err := strconv.Atoi(limitsStr[0])
    	if err != nil {
    		return 0, 0, fmt.Errorf("cannot convert string to integer for index: %q", limitsStr[0])
    	}
    	if x >= int(completions) {
    		return 0, 0, fmt.Errorf("too large index: %q", limitsStr[0])
    	}
    	if len(limitsStr) > 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    			// Check presence of middle and final index here rather than during type-checking
    			// to prevent erroneous programs from passing through gofmt (was go.dev/issue/7305).
    			if index[1] == nil {
    				p.error(colons[0], "middle index required in 3-index slice")
    				index[1] = &ast.BadExpr{From: colons[0] + 1, To: colons[1]}
    			}
    			if index[2] == nil {
    				p.error(colons[1], "final index required in 3-index slice")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top