Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for derrs (0.05 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			errs := tc.options.Validate()
    			if len(errs) > 0 && !tc.expectErrors {
    				t.Errorf("expected no errors, errors found %+v", errs)
    			}
    
    			if len(errs) == 0 && tc.expectErrors {
    				t.Errorf("expected errors, no errors found")
    			}
    
    			if len(errs) > 0 && tc.expectErrors {
    				gotErr := utilerrors.NewAggregate(errs).Error()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    			if gover.Compare(mv, wv) > 0 && gover.Compare(mv, gover.GoStrictVersion) >= 0 {
    				errs = append(errs, errWorkTooOld(gomod, workFile, mv))
    				continue
    			}
    		}
    
    		if !inWorkspaceMode() {
    			ok := true
    			for _, g := range f.Godebug {
    				if err := CheckGodebug("godebug", g.Key, g.Value); err != nil {
    					errs = append(errs, fmt.Errorf("error loading go.mod:\n%s:%d: %v", base.ShortPath(gomod), g.Syntax.Start.Line, err))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	}
    	toProcess := make(chan runtime.Object, chanSize)
    	errs := make(chan error, workersNumber+1)
    	workersExited := make(chan struct{})
    
    	wg.Add(workersNumber)
    	for i := 0; i < workersNumber; i++ {
    		go func() {
    			// panics don't cross goroutine boundaries
    			defer utilruntime.HandleCrash(func(panicReason interface{}) {
    				errs <- fmt.Errorf("DeleteCollection goroutine panicked: %v", panicReason)
    			})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. cmd/xl-storage_test.go

    		fis[0].Versions = append(fis[0].Versions, FileInfo{Name: object, Volume: volume, VersionID: versions[i]})
    		deleted[i] = true
    	}
    	errs := xl.DeleteVersions(ctx, volume, fis, DeleteOptions{})
    	if errs[0] != nil {
    		t.Fatalf("expected nil error, got %v", errs[0])
    	}
    	checkVerExist(t)
    
    	// Delete them all... (some again)
    	fis[0].Versions = nil
    	for i := range versions[:] {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    					// necessarily prevent us from loading the packages we could find.
    					m.Errs = append(m.Errs, err)
    				}
    				matchPackages(ctx, m, opts.Tags, includeStd, mg.BuildList())
    
    			case m.Pattern() == "all":
    				if ld == nil {
    					// The initial roots are the packages in the main module.
    					// loadFromRoots will expand that to "all".
    					m.Errs = m.Errs[:0]
    					matchModules := MainModules.Versions()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. cmd/peer-rest-server.go

    	globalLocalDrivesMu.RUnlock()
    
    	errs := make([]error, len(localDrives))
    	infos := make([]DiskInfo, len(localDrives))
    	for i, drive := range localDrives {
    		infos[i], errs[i] = drive.DiskInfo(GlobalContext, DiskInfoOptions{})
    	}
    	infoMaps := make(map[string]madmin.DiskMetrics)
    	for i := range infos {
    		if infos[i].Metrics.TotalWaiting >= 1 && errors.Is(errs[i], errFaultyDisk) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    	errs := make([]error, len(versions))
    
    	for i, fiv := range versions {
    		if contextCanceled(ctx) {
    			errs[i] = ctx.Err()
    			continue
    		}
    		w := xioutil.NewDeadlineWorker(globalDriveConfig.GetMaxTimeout())
    		if err := w.Run(func() error { return s.deleteVersions(ctx, volume, fiv.Name, fiv.Versions...) }); err != nil {
    			errs[i] = err
    		}
    		diskHealthCheckOK(ctx, errs[i])
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    	return r.matchInModuleCache.Do(matchInModuleKey{pattern, m}, func() ([]string, error) {
    		match := modload.MatchInModule(ctx, pattern, m, imports.AnyTags())
    		if len(match.Errs) > 0 {
    			return match.Pkgs, match.Errs[0]
    		}
    		return match.Pkgs, nil
    	})
    }
    
    // queryNone adds a candidate set to q for each module matching q.pattern.
    // Each candidate set has only one possible module version: the matched
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    func (f *frameworkImpl) Close() error {
    	var errs []error
    	for name, plugin := range f.pluginsMap {
    		if closer, ok := plugin.(io.Closer); ok {
    			err := closer.Close()
    			if err != nil {
    				errs = append(errs, fmt.Errorf("%s failed to close: %w", name, err))
    				// We try to close all plugins even if we got errors from some.
    			}
    		}
    	}
    	return errors.Join(errs...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    				t.Fatalf("UserValidationRules validation mismatch: CELMapper.UserValidationRules is nil")
    			}
    		})
    	}
    }
    
    func errString(errs errors.Aggregate) string {
    	if errs != nil {
    		return errs.Error()
    	}
    	return ""
    }
    
    type (
    	test struct {
    		name            string
    		configuration   api.AuthorizationConfiguration
    		expectedErrList field.ErrorList
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
Back to top