Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 192 for raerror (0.14 sec)

  1. security/pkg/pki/ra/k8s_ra.go

    			possibleRootCert = rootCertFromCertChain
    		}
    		if possibleRootCert == nil {
    			return nil, raerror.NewError(raerror.CSRError, fmt.Errorf("failed to find root cert from either signed cert-chain or mesh config"))
    		}
    		if verifyErr := util.VerifyCertificate(nil, cert, possibleRootCert, nil); verifyErr != nil {
    			return nil, raerror.NewError(raerror.CSRError, fmt.Errorf("root cert from signed cert-chain is invalid (%v)", verifyErr))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. security/pkg/pki/ra/common.go

    	if forCA {
    		return requestedLifetime, raerror.NewError(raerror.CSRError,
    			fmt.Errorf("unable to generate CA certifificates"))
    	}
    	if !ValidateCSR(csrPEM, subjectIDs) {
    		return requestedLifetime, raerror.NewError(raerror.CSRError, fmt.Errorf(
    			"unable to validate SAN Identities in CSR"))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 19:57:30 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUError.h

     *
     *  05-Sep-2004   Added internal test interface. (JDS)
     */
    
    /** @file
     *  Error handling functions (user interface).
     *  CUnit uses a simple (and conventional) error handling strategy.
     *  Functions that can generate errors set (and usually return) an
     *  error code to indicate the run status.  The error code can be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. security/pkg/nodeagent/test/mock/caserver.go

    			return nil, status.Error(codes.Unauthenticated, "request authenticate failure")
    		}
    		id = caller.Identities
    	}
    	cert, err := s.sign([]byte(request.Csr), id, time.Duration(request.ValidityDuration)*time.Second, false)
    	if err != nil {
    		caServerLog.Errorf("failed to sign CSR: %+v", err)
    		return nil, status.Errorf(err.(*caerror.Error).HTTPErrorCode(), "CSR signing error: %+v", err.(*caerror.Error))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3_test.go

    func Test_atomicLastError(t *testing.T) {
    	aError := &atomicLastError{err: fmt.Errorf("initial error")}
    	// no timestamp is always updated
    	aError.Store(errors.New("updated error"), time.Time{})
    	err := aError.Load()
    	if err.Error() != "updated error" {
    		t.Fatalf("Expected: \"updated error\" got: %s", err.Error())
    	}
    	// update to current time
    	now := time.Now()
    	aError.Store(errors.New("now error"), now)
    	err = aError.Load()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 29 15:58:10 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/error.go

    	"errors"
    	"fmt"
    )
    
    var ErrPartialAdd = errors.New("partial add error")
    
    type PartialAddError struct {
    	inner error
    }
    
    func (e *PartialAddError) Error() string {
    	return fmt.Sprintf("%s: %v", ErrPartialAdd.Error(), e.inner)
    }
    
    func (e *PartialAddError) Unwrap() []error {
    	return []error{ErrPartialAdd, e.inner}
    }
    
    func NewErrPartialAdd(err error) *PartialAddError {
    	return &PartialAddError{
    		inner: err,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. 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)
Back to top