Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 130 for raerror (0.18 sec)

  1. internal/crypto/error.go

    	e := fmt.Errorf(format, a...)
    	ee := Error{}
    	ee.msg = e.Error()
    	ee.cause = errors.Unwrap(e)
    	return ee
    }
    
    // Unwrap the internal error.
    func (e Error) Unwrap() error { return e.cause }
    
    // Error 'error' compatible method.
    func (e Error) Error() string {
    	if e.msg == "" {
    		return "crypto: cause <nil>"
    	}
    	return e.msg
    }
    
    var (
    	// ErrInvalidEncryptionMethod indicates that the specified SSE encryption method
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/html/template/error.go

    import (
    	"fmt"
    	"text/template/parse"
    )
    
    // Error describes a problem encountered during template Escaping.
    type Error struct {
    	// ErrorCode describes the kind of error.
    	ErrorCode ErrorCode
    	// Node is the node that caused the problem, if known.
    	// If not nil, it overrides Name and Line.
    	Node parse.Node
    	// Name is the name of the template in which the error was encountered.
    	Name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexResponse.java

                hasError = false;
            } else {
                hasError = true;
                errors.forEach(this.errors::add);
            }
        }
    
        public int getNumberOfSuggestDocs() {
            return numberOfSuggestDocs;
        }
    
        public int getNumberOfInputDocs() {
            return numberOfInputDocs;
        }
    
        public boolean hasError() {
            return hasError;
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/mdo/java/WrapperProperties.java

            try {
                writeOperationVoid(p -> {
                    try {
                        p.load(reader);
                    } catch (IOException e) {
                        throw new IOError(e);
                    }
                });
            } catch (IOError e) {
                throw (IOException) e.getCause();
            }
        }
    
        @Override
        public synchronized void load(InputStream inStream) throws IOException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 16:30:18 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcshared/testdata/main5.c

    	if (resetSIGIO == NULL) {
    		fprintf(stderr, "%s\n", dlerror());
    		exit(EXIT_FAILURE);
    	}
    
    	if (verbose) {
    		fprintf(stderr, "calling ResetSIGIO\n");
    	}
    
    	resetSIGIO();
    
    	sawSIGIO = (bool (*)(void))dlsym(handle, "SawSIGIO");
    	if (sawSIGIO == NULL) {
    		fprintf(stderr, "%s\n", dlerror());
    		exit(EXIT_FAILURE);
    	}
    
    	if (verbose) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/runtime/race/race_darwin_amd64.go

    //go:cgo_import_dynamic _NSGetArgv _NSGetArgv ""
    //go:cgo_import_dynamic _NSGetEnviron _NSGetEnviron ""
    //go:cgo_import_dynamic _NSGetExecutablePath _NSGetExecutablePath ""
    //go:cgo_import_dynamic __bzero __bzero ""
    //go:cgo_import_dynamic __error __error ""
    //go:cgo_import_dynamic __fork __fork ""
    //go:cgo_import_dynamic __mmap __mmap ""
    //go:cgo_import_dynamic __munmap __munmap ""
    //go:cgo_import_dynamic __stack_chk_fail __stack_chk_fail ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:29:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/runtime/race/race_darwin_arm64.go

    //go:cgo_import_dynamic _NSGetArgv _NSGetArgv ""
    //go:cgo_import_dynamic _NSGetEnviron _NSGetEnviron ""
    //go:cgo_import_dynamic _NSGetExecutablePath _NSGetExecutablePath ""
    //go:cgo_import_dynamic __error __error ""
    //go:cgo_import_dynamic __fork __fork ""
    //go:cgo_import_dynamic __mmap __mmap ""
    //go:cgo_import_dynamic __munmap __munmap ""
    //go:cgo_import_dynamic __stack_chk_fail __stack_chk_fail ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:29:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. 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)
  9. cmd/kubeadm/app/util/error.go

    	os.Exit(code)
    }
    
    // CheckErr prints a user friendly error to STDERR and exits with a non-zero
    // exit code. Unrecognized errors will be printed with an "error: " prefix.
    //
    // This method is generic to the command in use and may be used by non-Kubectl
    // commands.
    func CheckErr(err error) {
    	checkErr(err, fatal)
    }
    
    // preflightError allows us to know if the error is a preflight error or not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/LambdaTest.kt

        fun `if a lambda is not allowed, a lambda is reported as an error`() {
            schema.resolve("lambdaNotAllowed(0) { }").isError(ErrorReason.UnresolvedFunctionCallSignature::class)
        }
    
        private
        fun ResolutionResult.isSuccessful() {
            assertTrue { errors.isEmpty() }
            assertTrue { additions.size == 1 }
        }
    
        private
        fun ResolutionResult.isError(errorReason: KClass<out ErrorReason>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 12:27:49 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top