Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 198 for derrs (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	}
    	if errs := utilvalidation.IsDNS1035Label(strings.ToLower(names.Kind)); len(names.Kind) > 0 && len(errs) > 0 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("kind"), names.Kind, "may have mixed case, but should otherwise match: "+strings.Join(errs, ",")))
    	}
    	if errs := utilvalidation.IsDNS1035Label(strings.ToLower(names.ListKind)); len(names.ListKind) > 0 && len(errs) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/hpacontroller.go

    func (o *HPAControllerOptions) Validate() []error {
    	if o == nil {
    		return nil
    	}
    
    	errs := []error{}
    	if o.ConcurrentHorizontalPodAutoscalerSyncs < 1 {
    		errs = append(errs, fmt.Errorf("concurrent-horizontal-pod-autoscaler-syncs must be greater than 0, but got %d", o.ConcurrentHorizontalPodAutoscalerSyncs))
    	}
    	return errs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. pkg/registry/batch/cronjob/strategy_test.go

    		t.Errorf("CronJob does not allow setting status on create")
    	}
    	if cronJob.Generation != 1 {
    		t.Errorf("expected Generation=1, got %d", cronJob.Generation)
    	}
    	errs := Strategy.Validate(ctx, cronJob)
    	if len(errs) != 0 {
    		t.Errorf("Unexpected error validating %v", errs)
    	}
    	now := metav1.Now()
    
    	// ensure we do not change generation for non-spec updates
    	updatedLabelCronJob := cronJob.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

          /*saved_model_dir=*/"", bundle.get(), &result, serialize_stablehlo_ops);
      if (!status.ok()) {
        llvm::errs() << status.message() << '\n';
        return kTrFailure;
      }
    
      std::string error_msg;
      auto output = mlir::openOutputFile(output_file_name, &error_msg);
      if (output == nullptr) {
        llvm::errs() << error_msg << '\n';
        return kTrFailure;
      }
      output->os() << result;
      output->keep();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. src/encoding/base32/base32_test.go

    		testEqual(t, "Read from %q = %v, want %v", p.encoded, err, io.EOF)
    	}
    }
    
    type badReader struct {
    	data   []byte
    	errs   []error
    	called int
    	limit  int
    }
    
    // Populates p with data, returns a count of the bytes written and an
    // error.  The error returned is taken from badReader.errs, with each
    // invocation of Read returning the next error in this slice, or io.EOF,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. pkg/webhooks/validation/controller/controller.go

    func (o Options) Validate() error {
    	var errs *multierror.Error
    	if o.WatchedNamespace == "" || !labels.IsDNS1123Label(o.WatchedNamespace) {
    		errs = multierror.Append(errs, fmt.Errorf("invalid namespace: %q", o.WatchedNamespace))
    	}
    	if o.ServiceName == "" || !labels.IsDNS1123Label(o.ServiceName) {
    		errs = multierror.Append(errs, fmt.Errorf("invalid service name: %q", o.ServiceName))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top