Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 137 for UNIMPLEMENTED (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/convert_type.cc

        *type = builder.getType<mlir::tf_type::tftype##Type>(); \
        return OkStatus();
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.def"
    
        default:
          return errors::Unimplemented(absl::StrCat(
              "Converting DataType '", DataTypeString(dtype), "' to MLIR Type"));
      }
    }
    
    Status ConvertScalarTypeToDataType(Type type, DataType* dtype) {
      if (type.isF16()) {
        *dtype = DT_HALF;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/fake_session.cc

    }
    
    Status FakeSession::Create(const tensorflow::GraphDef& graph) {
      return tensorflow::errors::Unimplemented("not available");
    }
    Status FakeSession::Extend(const tensorflow::GraphDef& graph) {
      return tensorflow::errors::Unimplemented("not available");
    }
    
    Status FakeSession::Close() {
      return tensorflow::errors::Unimplemented("not available");
    }
    
    Status FakeSession::ListDevices(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. pkg/registry/registrytest/endpoint.go

    	return nil, fmt.Errorf("unimplemented!")
    }
    
    func (e *EndpointRegistry) Create(ctx context.Context, endpoints runtime.Object, createValidation rest.ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error) {
    	return nil, fmt.Errorf("unimplemented!")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/fake.go

    	})
    }
    func (f *recorderResourceManager) WebService() *restful.WebService {
    	panic("unimplemented")
    }
    
    func (f *recorderResourceManager) ServeHTTP(http.ResponseWriter, *http.Request) {
    	panic("unimplemented")
    }
    
    func (f *recorderResourceManager) WithSource(source Source) ResourceManager {
    	panic("unimplemented")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/internal/fuzz/mutators_byteslice_test.go

    	mr.counter++
    	return c
    }
    
    func (mr *mockRand) bool() bool {
    	b := mr.b
    	mr.b = !mr.b
    	return b
    }
    
    func (mr *mockRand) save(*uint64, *uint64) {
    	panic("unimplemented")
    }
    
    func (mr *mockRand) restore(uint64, uint64) {
    	panic("unimplemented")
    }
    
    func TestByteSliceMutators(t *testing.T) {
    	for _, tc := range []struct {
    		name     string
    		mutator  func(*mutator, []byte) []byte
    		randVals []int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 19 18:23:43 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/meta/help_test.go

    	metav1.TypeMeta
    	metav1.ListMeta
    	Items []Foo
    }
    
    func (s *FooList) DeepCopyObject() runtime.Object { panic("unimplemented") }
    
    type SampleList struct {
    	metav1.TypeMeta
    	metav1.ListMeta
    	Items []Sample
    }
    
    func (s *SampleList) DeepCopyObject() runtime.Object { panic("unimplemented") }
    
    type RawExtensionList struct {
    	metav1.TypeMeta
    	metav1.ListMeta
    
    	Items []runtime.RawExtension
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 13:40:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. 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)
  8. src/os/exec/internal/fdtest/exists_windows.go

    // license that can be found in the LICENSE file.
    
    //go:build windows
    
    package fdtest
    
    // Exists is not implemented on windows and panics.
    func Exists(fd uintptr) bool {
    	panic("unimplemented")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 16 19:41:37 UTC 2021
    - 305 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top