Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 211 for perror (0.09 sec)

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

    				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()
    				if !strings.Contains(gotErr, tc.expectedErrorSubString) {
    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/time/format.go

    	}
    	if s == "" {
    		return 0, errors.New("time: invalid duration " + quote(orig))
    	}
    	for s != "" {
    		var (
    			v, f  uint64      // integers before, after decimal point
    			scale float64 = 1 // value = v + f/scale
    		)
    
    		var err error
    
    		// The next character must be [0-9.]
    		if !(s[0] == '.' || '0' <= s[0] && s[0] <= '9') {
    			return 0, errors.New("time: invalid duration " + quote(orig))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    				matchesAll(noError(), transitionRule(true)),
    				matchesAll(noError(), transitionRule(true)),
    				matchesAll(noError(), transitionRule(true)),
    				matchesAll(noError(), transitionRule(true)),
    				matchesAll(noError(), transitionRule(true)),
    				matchesAll(noError(), transitionRule(true)),
    				matchesAll(noError(), transitionRule(true)),
    				matchesAll(noError(), transitionRule(true)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                }
    
                slf4jLogger.error("");
    
                if (!cliRequest.showErrors) {
                    slf4jLogger.error(
                            "To see the full stack trace of the errors, re-run Maven with the '{}' switch",
                            MessageUtils.builder().strong("-e"));
                }
                if (!slf4jLogger.isDebugEnabled()) {
                    slf4jLogger.error(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. src/syscall/zerrors_solaris_amd64.go

    	64:  "machine is not on the network",
    	65:  "package not installed",
    	66:  "object is remote",
    	67:  "link has been severed",
    	68:  "advertise error",
    	69:  "srmount error",
    	70:  "communication error on send",
    	71:  "protocol error",
    	72:  "locked lock was unmapped ",
    	73:  "facility is not active",
    	74:  "multihop attempted",
    	77:  "not a data message",
    	78:  "file name too long",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    		t.Errorf("wanted 403 forbidden message; got: %s", body)
    	}
    }
    
    type issue12991FS struct{}
    
    func (issue12991FS) Open(string) (File, error) { return issue12991File{}, nil }
    
    type issue12991File struct{ File }
    
    func (issue12991File) Stat() (fs.FileInfo, error) { return nil, fs.ErrPermission }
    func (issue12991File) Close() error               { return nil }
    
    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. pkg/apis/batch/validation/validation.go

    		return 0, 0, fmt.Errorf("too large index: %q", limitsStr[0])
    	}
    	if len(limitsStr) > 1 {
    		y, err := strconv.Atoi(limitsStr[1])
    		if err != nil {
    			return 0, 0, fmt.Errorf("cannot convert string to integer for index: %q", limitsStr[1])
    		}
    		if y >= int(completions) {
    			return 0, 0, fmt.Errorf("too large index: %q", limitsStr[1])
    		}
    		if x >= y {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/validation/validation.go

    	if result.Error != nil {
    		allErrors = append(allErrors, convertCELErrorToValidationError(fldPath, expression, result.Error))
    	}
    	return allErrors
    }
    
    func convertCELErrorToValidationError(fldPath *field.Path, expression plugincel.ExpressionAccessor, err error) *field.Error {
    	if celErr, ok := err.(*cel.Error); ok {
    		switch celErr.Type {
    		case cel.ErrorTypeRequired:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. cmd/bucket-handlers.go

    			apiErr.Description = err.Error()
    			writeErrorResponse(ctx, w, apiErr, r.URL)
    			return
    		}
    
    		// if force delete header is set, we need to evaluate the policy anyways
    		// regardless of it being true or not.
    		if s3Error := checkRequestAuthType(ctx, r, policy.ForceDeleteBucketAction, bucket, ""); s3Error != ErrNone {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    			return
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                    } catch (ModelParseException ne) {
                        // still unreadable even in non-strict mode, rethrow original error
                        throw e;
                    }
    
                    Severity severity = (modelSource instanceof FileModelSource) ? Severity.ERROR : Severity.WARNING;
                    problems.add(new ModelProblemCollectorRequest(severity, ModelProblem.Version.V20)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top