Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 258 for derrs (0.04 sec)

  1. cmd/kubeadm/app/util/runtime/runtime.go

    				cancel()
    				continue
    			}
    			cancel()
    
    			lastErr = nil
    			break
    		}
    
    		if lastErr != nil {
    			errs = append(errs, lastErr)
    		}
    	}
    	return errorsutil.NewAggregate(errs)
    }
    
    // PullImage pulls the image
    func (runtime *CRIRuntime) PullImage(image string) (err error) {
    	for i := 0; i < constants.PullImageRetry; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/attachdetachcontroller.go

    func (o *AttachDetachControllerOptions) Validate() []error {
    	if o == nil {
    		return nil
    	}
    
    	errs := []error{}
    
    	if o.ReconcilerSyncLoopPeriod.Duration < time.Second {
    		errs = append(errs, fmt.Errorf("duration time must be greater than one second as set via command line option reconcile-sync-loop-period"))
    	}
    
    	return errs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/deployment/builder.go

    		namespaces: map[string]namespace.Instance{},
    	}
    	templates, err := b.injectionTemplates()
    	if err != nil {
    		// deal with this when we call Build() to avoid making the New signature unwieldy
    		b.errs = multierror.Append(b.errs, fmt.Errorf("failed finding injection templates on clusters %v", err))
    	}
    	b.templates = templates
    
    	return b.WithClusters(clusters...)
    }
    
    type builder struct {
    	ctx resource.Context
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/options/options.go

    func (o *Options) Validate() []error {
    	var errs []error
    
    	if err := validation.ValidateKubeSchedulerConfiguration(o.ComponentConfig); err != nil {
    		errs = append(errs, err.Errors()...)
    	}
    	errs = append(errs, o.SecureServing.Validate()...)
    	errs = append(errs, o.Authentication.Validate()...)
    	errs = append(errs, o.Authorization.Validate()...)
    	errs = append(errs, o.Metrics.Validate()...)
    
    	return errs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

          llvm::errs() << ",";
        }
        llvm::errs() << ") -> (";
        for (auto i = 0; i < op.getNumResults(); ++i) {
          if (auto params = GetResultParams(op, i))
            params.print(llvm::errs());
          else
            llvm::errs() << "_";
          llvm::errs() << ",";
        }
        llvm::errs() << ")\n";
      });
    }
    
    // A heuristic to get quantization parameters satisfies the same scale
    // constraints:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. cmd/config-current.go

    		if err != nil {
    			errs = append(errs, fmt.Errorf("Unable to apply heal config: %w", err))
    		} else {
    			globalHealConfig.Update(healCfg)
    		}
    	case config.BatchSubSys:
    		batchCfg, err := batch.LookupConfig(s[config.BatchSubSys][config.Default])
    		if err != nil {
    			errs = append(errs, fmt.Errorf("Unable to apply batch config: %w", err))
    		} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    	if err != nil {
    		return nil, err
    	}
    	f := &WorkFile{
    		Syntax: fs,
    	}
    	var errs ErrorList
    
    	for _, x := range fs.Stmt {
    		switch x := x.(type) {
    		case *Line:
    			f.add(&errs, x, x.Token[0], x.Token[1:], fix)
    
    		case *LineBlock:
    			if len(x.Token) > 1 {
    				errs = append(errs, Error{
    					Filename: file,
    					Pos:      x.Start,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. cmd/erasure-healing-common.go

    		// because of bugs found in CopyObject/PutObjectTags) https://github.com/minio/minio/pull/10772
    		erasureDistributionReliable = false
    	}
    
    	metaErrs := make([]error, len(errs))
    
    	for i, onlineDisk := range onlineDisks {
    		if errs[i] != nil {
    			metaErrs[i] = errs[i]
    			continue
    		}
    		if onlineDisk == OfflineDisk {
    			metaErrs[i] = errDiskNotFound
    			continue
    		}
    
    		meta := partsMetadata[i]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. cmd/erasure-healing_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    
    		fileInfos, errs = readAllFileInfo(ctx, erasureDisks, "", bucket, object, "", false, true)
    		if countErrs(errs, nil) != len(fileInfos) {
    			t.Fatal("Expected all xl.meta healed, but partial heal detected")
    		}
    
    		fileInfos, errs = readAllFileInfo(ctx, erasureDisks, "", minioMetaBucket, cfgFile, "", false, true)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  10. cmd/peer-s3-client.go

    			return err
    		}, idx)
    	}
    
    	errs := g.Wait()
    
    	var poolErrs []error
    	for poolIdx := 0; poolIdx < sys.poolsCount; poolIdx++ {
    		perPoolErrs := make([]error, 0, len(sys.peerClients))
    		for i, client := range sys.peerClients {
    			if slices.Contains(client.GetPools(), poolIdx) {
    				perPoolErrs = append(perPoolErrs, errs[i])
    			}
    		}
    		quorum := len(perPoolErrs) / 2
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top