Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 120 for UNIMPLEMENTED (0.33 sec)

  1. src/crypto/internal/nistec/p256_ordinv_noasm.go

    // license that can be found in the LICENSE file.
    
    //go:build (!amd64 && !arm64) || purego
    
    package nistec
    
    import "errors"
    
    func P256OrdInverse(k []byte) ([]byte, error) {
    	return nil, errors.New("unimplemented")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 325 bytes
    - Viewed (0)
  2. src/runtime/create_file_nounix.go

    // license that can be found in the LICENSE file.
    
    //go:build !unix
    
    package runtime
    
    const canCreateFile = false
    
    func create(name *byte, perm int32) int32 {
    	throw("unimplemented")
    	return -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 03:45:30 UTC 2022
    - 305 bytes
    - Viewed (0)
  3. tensorflow/c/experimental/gradients/tape/tape_operation.cc

                                          const AbstractOperation* value) {
      return tensorflow::errors::Unimplemented(
          "SetAttrFunction has not been implemented yet.");
    }
    Status TapeOperation::SetAttrFunctionName(const char* attr_name,
                                              const char* value, size_t length) {
      return tensorflow::errors::Unimplemented(
          "SetAttrFunctionName has not been implemented "
          "yet.");
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 06:16:45 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_unified_experimental_graph.cc

        return absl::OkStatus();
      }
    
      Status RegisterFunction(AbstractFunction* func) override {
        return errors::Unimplemented(
            "Registering graph functions has not been implemented yet.");
      }
    
      Status RemoveFunction(const string& func) override {
        return errors::Unimplemented(
            "GraphContext::RemoveFunction has not been implemented yet.");
      }
      // For LLVM style RTTI.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/function.cc

        for (const auto& t : signature.tuple()) {
          if (t.type() != TaggedValue::Type::TENSOR_SPEC) {
            break;
          }
        }
        return ::tensorflow::OkStatus();
      }
      return tensorflow::errors::Unimplemented(
          "Only functions with inputs/outputs containing a single tensor or a tuple"
          " of tensors are supported right now.");
    }
    
    Status VerifySupportedArgs(TaggedValue args) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

        case AttrValue::kList:
          if (attr_.full_type() == "list(string)" &&
              attr_value.list().s_size() == 0) {
            return "{}";
          }
          LOG(WARNING) << "Unimplemented: default value of list-typed attribute.";
          return "/* UNIMPLEMENTED */";
        case AttrValue::kShape:
        case AttrValue::kTensor:
        case AttrValue::kFunc:
        case AttrValue::kPlaceholder:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

          continue;
        }
        if (mlir::isa<mlir::AffineMapAttr>(attr)) {
          // AffineMapAttr is not implemented.
          return errors::Unimplemented("AffineMap attribute (needed for '",
                                       name_strref, "') unimplemented");
        }
        TF_RETURN_IF_ERROR(
            llvm::TypeSwitch<mlir::Attribute, Status>(attr)
                .Case<mlir::BoolAttr, mlir::IntegerAttr, mlir::FloatAttr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/s390x/asm.go

    		ldr.Errorf(s, "unimplemented S390x relocation: %v", r.Type()-objabi.ElfRelocOffset)
    		return false
    
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_390_GLOB_DAT):
    		ldr.Errorf(s, "unimplemented S390x relocation: %v", r.Type()-objabi.ElfRelocOffset)
    		return false
    
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_390_JMP_SLOT):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/convert_attr.cc

            TF_ASSIGN_OR_RETURN(auto attr, ConvertTensorProto(item, builder));
            attrs.push_back(attr);
          }
          if (!value.list().func().empty()) {
            return tensorflow::errors::Unimplemented(
                absl::StrCat("Attribute ", value.DebugString()));
          }
          return builder->getArrayAttr(llvm::ArrayRef(attrs.begin(), attrs.end()));
        }
        case AttrValue::VALUE_NOT_SET:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. pkg/test/echo/proto/echo_grpc.pb.go

    	return nil, status.Errorf(codes.Unimplemented, "method Echo not implemented")
    }
    func (UnimplementedEchoTestServiceServer) ForwardEcho(context.Context, *ForwardEchoRequest) (*ForwardEchoResponse, error) {
    	return nil, status.Errorf(codes.Unimplemented, "method ForwardEcho not implemented")
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 26 01:14:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top