Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 104 for internalError (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/storageversion.go

    		if svm.Completed() {
    			handler.ServeHTTP(w, req)
    			return
    		}
    		ctx := req.Context()
    		requestInfo, found := request.RequestInfoFrom(ctx)
    		if !found {
    			responsewriters.InternalError(w, req, errors.New("no RequestInfo found in the context"))
    			return
    		}
    		// Allow non-resource requests
    		if !requestInfo.IsResourceRequest {
    			handler.ServeHTTP(w, req)
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

        auto func_op = llvm::dyn_cast<func::FuncOp>(
            *module_op->getBodyRegion().getOps().begin());
        if (!func_op) {
          return absl::InternalError("Input MLIR must have only 1 func");
        }
        if (arguments.size() != func_op.getNumArguments()) {
          return absl::InternalError("Input argument has wrong size");
        }
    
        // Convert input xla::Literal arguments to constants, this allows using
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication.go

    			w.Header().Set("Connection", "close")
    		}
    		ctx := req.Context()
    		requestInfo, found := genericapirequest.RequestInfoFrom(ctx)
    		if !found {
    			responsewriters.InternalError(w, req, errors.New("no RequestInfo found in the context"))
    			return
    		}
    
    		gv := schema.GroupVersion{Group: requestInfo.APIGroup, Version: requestInfo.APIVersion}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

      // fails to provide a valid file system.
      absl::Status GetFileSystemForFile(const std::string& fname,
                                        tsl::FileSystem** result) override {
        return absl::InternalError("Broken file system");
      }
    
     private:
      void GetLocalTempDirectories(std::vector<tsl::string>* list) override {
        list->push_back("/tmp");
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/get_compiler_ir.cc

      // that requires compilation from HLO to executable.
      if (device_type != DEVICE_CPU && stream == nullptr &&
          !is_tfrt_tpu_supported_stage(stage)) {
        return absl::InternalError(
            "GetCompilerIr with requested stage is not supported on this device.");
      }
      return absl::OkStatus();
    }
    
    absl::StatusOr<std::vector<XlaCompiler::Argument>> PrepareXlaCompilerArgs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.cc

                calibration_saved_model_dir, signature_keys_, tags_,
                /*force_graph_mode_calibration=*/true,
                representative_dataset_file_map) == std::nullopt) {
          return absl::InternalError(
              "CalibrationComponent error: Failed to run calibration.");
        }
      }
    
      if (absl::Status status = AddCalibrationStatistics(
              module_op, calibration_data_dir, config.calibration_options(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

    import org.gradle.api.logging.LoggingManager
    import org.gradle.api.resources.ResourceHandler
    import org.gradle.api.tasks.WorkResult
    import org.gradle.internal.deprecation.DeprecationLogger
    import org.gradle.kotlin.dsl.support.internalError
    import org.gradle.kotlin.dsl.support.serviceOf
    import org.gradle.kotlin.dsl.support.unsafeLazy
    import org.gradle.process.ExecResult
    import org.gradle.process.ExecSpec
    import org.gradle.process.JavaExecSpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

        if (num_submodules > 1) {
          return mlir::WalkResult::interrupt();
        }
    
        return mlir::WalkResult::advance();
      });
    
      if (num_submodules > 1) {
        auto num_submodules_error = absl::InternalError(
            "V1 Compat Bridge has more than one submodule. Erroring out.");
        TF_RETURN_IF_ERROR(RecordStatusIfError(
            /*error_prefix=*/"Bridge has more than one submodule:",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/codegen.cc

      for (int i = 0; i < ps.parameters_size(); ++i) {
        const xla::ShapeProto& shape = ps.parameters(i);
        if (shape.element_type() == xla::TUPLE) {
          // ShapeInfo cannot represent tuple args.
          return absl::InternalError(
              absl::StrCat("parameter ", i,
                           ": codegen requires XLA parameters to "
                           "be non-tuples."));
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation.go

    		case cel.ErrorTypeInvalid:
    			return field.Invalid(fldPath, expression.GetExpression(), celErr.Detail)
    		case cel.ErrorTypeInternal:
    			return field.InternalError(fldPath, celErr)
    		}
    	}
    	return field.InternalError(fldPath, fmt.Errorf("unsupported error type: %w", err))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top