Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 104 for internalError (0.52 sec)

  1. cmd/api-errors.go

    		Description:    "You did not provide the number of bytes specified by the Content-Length HTTP header.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInternalError: {
    		Code:           "InternalError",
    		Description:    "We encountered an internal error, please try again.",
    		HTTPStatusCode: http.StatusInternalServerError,
    	},
    	ErrInvalidAccessKeyID: {
    		Code:           "InvalidAccessKeyId",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    			if err != nil {
    				allErrs.CELErrors = append(allErrs.CELErrors, field.InternalError(fldPath.Child("x-kubernetes-validations"), fmt.Errorf("internal error: failed to construct type information for x-kubernetes-validations rules: %s", err)))
    			} else if typeInfo == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.yaml

    # Please keep entries ordered by code.
    # NOTE: The range 0000-0100 is reserved for internal and/or future use.
    messages:
      - name: "InternalError"
        code: IST0001
        level: Error
        description: "There was an internal error in the toolchain. This is almost always a bug in the implementation."
        template: "Internal error: %v"
        args:
          - name: detail
            type: string
    
      - name: "Deprecated"
        code: IST0002
        level: Warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. src/compress/flate/huffman_bit_writer.go

    			n = 0
    		}
    		w.nbytes = n
    	}
    }
    
    func (w *huffmanBitWriter) writeBytes(bytes []byte) {
    	if w.err != nil {
    		return
    	}
    	n := w.nbytes
    	if w.nbits&7 != 0 {
    		w.err = InternalError("writeBytes with unfinished bits")
    		return
    	}
    	for w.nbits != 0 {
    		w.bytes[n] = byte(w.bits)
    		w.bits >>= 8
    		w.nbits -= 8
    		n++
    	}
    	if n != 0 {
    		w.write(w.bytes[:n])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  5. internal/s3select/select.go

    				if len(outputQueue) < cap(outputQueue) {
    					continue
    				}
    
    				if !sendRecord() {
    					break OuterLoop
    				}
    			}
    		}
    	}
    
    	if err != nil {
    		_ = writer.FinishWithError("InternalError", err.Error())
    	}
    }
    
    // Close - closes opened S3 object.
    func (s3Select *S3Select) Close() error {
    	if s3Select.recordReader == nil {
    		return nil
    	}
    	return s3Select.recordReader.Close()
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

                              OpShardingVector& shardings) {
      shardings.clear();
      for (auto& sharding : optional_shardings) {
        if (!sharding) {
          return absl::InternalError(
              "Couldn't find/assign sharding for an input/output. All shardings "
              "should have been identified by this point.");
        }
    
        shardings.push_back(std::move(sharding.value()));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    		// all comments up to g, ignore anything after that
    		p.flush(p.posFor(g.List[0].Pos()), token.ILLEGAL)
    		p.comments = p.comments[0:1]
    		// in debug mode, report error
    		p.internalError("setComment found pending comments")
    	}
    	p.comments[0] = g
    	p.cindex = 0
    	// don't overwrite any pending comment in the p.comment cache
    	// (there may be a pending comment when a line comment is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. pkg/controller/history/controller_history_test.go

    			}
    			return true, update.GetObject(), nil
    		default:
    			return false, nil, nil
    		}
    	}
    	internalError := func(action core.Action) (bool, runtime.Object, error) {
    		switch action.(type) {
    		case core.UpdateActionImpl:
    			return true, nil, errors.NewInternalError(fmt.Errorf("internal error"))
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	CauseTypeTooMany CauseType = "FieldValueTooMany"
    	// CauseTypeInternal is used to report other errors that are not related
    	// to user input.  See InternalError().
    	CauseTypeInternal CauseType = "InternalError"
    	// CauseTypeTypeInvalid is for the value did not match the schema type for that field
    	CauseTypeTypeInvalid CauseType = "FieldValueTypeInvalid"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	// TODO(wojtek-t): It seems that etcd is currently returning a different error,
    	// being an Internal error of "etcd event received with PrevKv=nil".
    	// We temporary allow both but we should unify here.
    	internalError := metav1.Status{
    		Status: metav1.StatusFailure,
    		Code:   http.StatusInternalServerError,
    		Reason: metav1.StatusReasonInternalError,
    	}
    	testCheckResultFunc(t, tooOldWatcher, func(actualEvent watch.Event) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top