Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for errorCh (0.17 sec)

  1. fastapi/routing.py

            if is_coroutine:
                value, errors_ = field.validate(response_content, {}, loc=("response",))
            else:
                value, errors_ = await run_in_threadpool(
                    field.validate, response_content, {}, loc=("response",)
                )
            if isinstance(errors_, list):
                errors.extend(errors_)
            elif errors_:
                errors.append(errors_)
            if errors:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    		},
    		{
    			name:               "Reserve - Error",
    			action:             func(f framework.Framework) { f.RunReservePluginsReserve(context.Background(), state, pod, "") },
    			inject:             injectedResult{ReserveStatus: int(framework.Error)},
    			wantExtensionPoint: "Reserve",
    			wantStatus:         framework.Error,
    		},
    		{
    			name:               "PreBind - Error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    			if tc.wantErr {
    				if err == nil {
    					t.Errorf("%s: expected error, got nil", tc.name)
    				}
    			} else {
    				if err != nil {
    					t.Errorf("%s: unexpected error: %v", tc.name, err)
    				}
    				if gotFirstID != tc.wantFirstID || gotRangeLen != tc.wantRangeLen {
    					t.Errorf("%s: got (%d, %d), want (%d, %d)", tc.name, gotFirstID, gotRangeLen, tc.wantFirstID, tc.wantRangeLen)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      else
        # If no traps in stack, clear.
        trap EXIT
      fi
    }
    
    # Logs the end of a bootstrap step that errored.
    # Args:
    #  $1 : bootstrap step name.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    function log-error {
      local bootstep="$1"
    
      log-proto "${bootstep}" "${LOG_STATUS_ERROR}" "encountered non-zero exit code"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    }
    
    // A PackageError describes an error loading information about a package.
    type PackageError struct {
    	ImportStack      []string // shortest path from package named on command line to this one
    	Pos              string   // position of error
    	Err              error    // the error itself
    	IsImportCycle    bool     // the error is an import cycle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top