Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,877 for ErrorIs (0.14 sec)

  1. guava/src/com/google/common/util/concurrent/ExecutionError.java

     * ExecutionException}, the error's {@linkplain #getCause() cause} comes from a failed task,
     * possibly run in another thread. That cause should itself be an {@code Error}; if not, use {@code
     * ExecutionException} or {@link UncheckedExecutionException}. This allows the client code to
     * continue to distinguish between exceptions and errors, even when they come from other threads.
     *
     * @author Chris Povirk
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ExecutionError.java

     * ExecutionException}, the error's {@linkplain #getCause() cause} comes from a failed task,
     * possibly run in another thread. That cause should itself be an {@code Error}; if not, use {@code
     * ExecutionException} or {@link UncheckedExecutionException}. This allows the client code to
     * continue to distinguish between exceptions and errors, even when they come from other threads.
     *
     * @author Chris Povirk
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/syscall/syscall_plan9.go

    package syscall
    
    import (
    	"errors"
    	"internal/oserror"
    	"runtime"
    	"unsafe"
    )
    
    const ImplementsGetwd = true
    const bitSize16 = 2
    
    // ErrorString implements Error's String method by returning itself.
    //
    // ErrorString values can be tested against error values using [errors.Is].
    // For example:
    //
    //	_, _, err := syscall.Syscall(...)
    //	if errors.Is(err, fs.ErrNotExist) ...
    type ErrorString string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/script/engine.go

    	if impl == nil {
    		return cmdError(cmd, errors.New("unknown command"))
    	}
    
    	async := impl.Usage().Async
    	if cmd.background && !async {
    		return cmdError(cmd, errors.New("command cannot be run in background"))
    	}
    
    	wait, runErr := impl.Run(s, cmd.args...)
    	if wait == nil {
    		if async && runErr == nil {
    			return cmdError(cmd, errors.New("internal error: async command returned a nil WaitFunc"))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/meta/firsthit_restmapper.go

    // by returning the item, and collapses all NoMatchErrors to a single one (since they should all be the same)
    func collapseAggregateErrors(errors []error) error {
    	if len(errors) == 0 {
    		return nil
    	}
    	if len(errors) == 1 {
    		return errors[0]
    	}
    
    	allNoMatchErrors := true
    	for _, err := range errors {
    		allNoMatchErrors = allNoMatchErrors && IsNoMatchError(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_message.properties

    #                                               ------------
    errors.front_header=
    errors.front_footer=
    errors.front_prefix=<div class="alert alert-warning">
    errors.front_suffix=</div>
    errors.header=<ul class="has-error">
    errors.footer=</ul>
    errors.prefix=<li><i class="fa fa-exclamation-circle"></i>
    errors.suffix=</li>
    
    # ----------------------------------------------------------
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_en.properties

    errors.target_file_does_not_exist={0} file does not exist.
    errors.failed_to_delete_file=Failed to delete {0} file.
    errors.docid_not_found=Not found Doc ID:{0}
    errors.document_not_found=Not found URL of Doc ID:{0}
    errors.not_load_from_server=Could not load from this server: {0}
    errors.failed_to_start_job=Failed to start job {0}.
    errors.failed_to_stop_job=Failed to stop job {0}.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. pkg/registry/networking/servicecidr/strategy_test.go

    	errors := Strategy.Validate(context.TODO(), obj)
    	if len(errors) != 2 {
    		t.Errorf("Expected 2 validation errors for invalid object, got %d", len(errors))
    	}
    
    	oldObj := newServiceCIDR()
    	newObj := oldObj.DeepCopy()
    	newObj.Spec.CIDRs = []string{"bad cidr"}
    	errors = Strategy.ValidateUpdate(context.TODO(), newObj, oldObj)
    	if len(errors) != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 15:09:29 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_fr.properties

    errors.crud_failed_to_delete_crud_table=Échec de la suppression des données. ({0})
    errors.crud_could_not_find_crud_table=Impossible de trouver les données ({0}).
    
    errors.property_required={0} est requis.
    errors.property_type_integer={0} doit être numérique.
    errors.property_type_long={0} doit être numérique.
    errors.property_type_float={0} doit être numérique.
    errors.property_type_double={0} doit être numérique.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_ru.properties

    errors.target_file_does_not_exist={0} file does not exist.
    errors.failed_to_delete_file=Failed to delete {0} file.
    errors.docid_not_found=Not found Doc ID:{0}
    errors.document_not_found=Not found URL of Doc ID:{0}
    errors.not_load_from_server=Could not load from this server: {0}
    errors.failed_to_start_job=Failed to start job {0}.
    errors.failed_to_stop_job=Failed to stop job {0}.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 20 12:12:28 UTC 2022
    - 10.2K bytes
    - Viewed (0)
Back to top