Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for raerror (0.16 sec)

  1. src/text/template/parse/parse_test.go

    	{"dot after nil", "{{nil.E}}", hasError, ""},
    	// Wrong pipeline
    	{"wrong pipeline dot", "{{12|.}}", hasError, ""},
    	{"wrong pipeline number", "{{.|12|printf}}", hasError, ""},
    	{"wrong pipeline string", "{{.|printf|\"error\"}}", hasError, ""},
    	{"wrong pipeline char", "{{12|printf|'e'}}", hasError, ""},
    	{"wrong pipeline boolean", "{{.|true}}", hasError, ""},
    	{"wrong pipeline nil", "{{'c'|nil}}", hasError, ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifier.java

                            if (result.hasError()) {
                                VerificationFailure error = result.asError(publicKeyService);
                                builder.failWith(error);
                                if (error.isFatal()) {
                                    return;
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/armerror.s

    	MOVF	F2, 0x00ffffff(F2) // ERROR "illegal base register"
    	MOVD	F2, 0x00ffffff(F2) // ERROR "illegal base register"
    	MULS.S	R1, R2, R3, R4     // ERROR "invalid .S suffix"
    	ADD.P	R1, R2, R3         // ERROR "invalid .P suffix"
    	SUB.W	R2, R3             // ERROR "invalid .W suffix"
    	BL	4(R4)              // ERROR "non-zero offset"
    	ADDF	F0, R1, F2         // ERROR "illegal combination"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 14:06:21 UTC 2017
    - 14.4K bytes
    - Viewed (0)
  4. security/pkg/pki/ca/ca.go

    	signingCert, signingKey, _, _ := ca.keyCertBundle.GetAll()
    	if signingCert == nil {
    		return nil, caerror.NewError(caerror.CANotReady, fmt.Errorf("Istio CA is not ready")) // nolint
    	}
    
    	csr, err := util.ParsePemEncodedCSR(csrPEM)
    	if err != nil {
    		return nil, caerror.NewError(caerror.CSRError, err)
    	}
    
    	if err := csr.CheckSignature(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. security/pkg/server/ca/server_test.go

    			ca:             &mockca.FakeCA{SignErr: caerror.NewError(caerror.CANotReady, fmt.Errorf("cannot sign"))},
    			code:           codes.Internal,
    		},
    		"Invalid CSR": {
    			authenticators: []security.Authenticator{&mockAuthenticator{identities: []string{"test-identity"}}},
    			ca:             &mockca.FakeCA{SignErr: caerror.NewError(caerror.CSRError, fmt.Errorf("cannot sign"))},
    			code:           codes.InvalidArgument,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/runtime/error.go

    package runtime
    
    import (
    	"internal/abi"
    	"internal/bytealg"
    )
    
    // The Error interface identifies a run time error.
    type Error interface {
    	error
    
    	// RuntimeError is a no-op function but
    	// serves to distinguish types that are run time
    	// errors from ordinary errors: a type is a
    	// run time error if it has a RuntimeError method.
    	RuntimeError()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/math/rand/rand_test.go

    	if !nearEqual(sr.mean, expected.mean, expected.closeEnough, expected.maxError) {
    		s := fmt.Sprintf("mean %v != %v (allowed error %v, %v)", sr.mean, expected.mean, expected.closeEnough, expected.maxError)
    		fmt.Println(s)
    		return errors.New(s)
    	}
    	if !nearEqual(sr.stddev, expected.stddev, expected.closeEnough, expected.maxError) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. internal/event/target/elasticsearch.go

    type esClient interface {
    	isAtleastV7() bool
    	createIndex(ElasticsearchArgs) error
    	ping(context.Context, ElasticsearchArgs) (bool, error)
    	stop()
    	entryExists(context.Context, string, string) (bool, error)
    	removeEntry(context.Context, string, string) error
    	updateEntry(context.Context, string, string, event.Event) error
    	addEntry(context.Context, string, event.Event) error
    }
    
    // ElasticsearchArgs - Elasticsearch target arguments.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation_test.go

    			}
    		})
    	}
    }
    
    func hasError(errs field.ErrorList, needle string) bool {
    	for _, curr := range errs {
    		if curr.Error() == needle {
    			return true
    		}
    	}
    	return false
    }
    
    func hasPrefixError(errs field.ErrorList, prefix string) bool {
    	for _, curr := range errs {
    		if strings.HasPrefix(curr.Error(), prefix) {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  10. src/net/http/readrequest_test.go

    			Close:         true,
    		},
    		noBodyStr,
    		noTrailer,
    		noError,
    	},
    }
    
    func TestReadRequest(t *testing.T) {
    	for i := range reqTests {
    		tt := &reqTests[i]
    		req, err := ReadRequest(bufio.NewReader(strings.NewReader(tt.Raw)))
    		if err != nil {
    			if err.Error() != tt.Error {
    				t.Errorf("#%d: error %q, want error %q", i, err.Error(), tt.Error)
    			}
    			continue
    		}
    		rbody := req.Body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top