Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 120 for UNIMPLEMENTED (0.31 sec)

  1. pilot/pkg/security/authz/model/generator.go

    	return nil, fmt.Errorf("unimplemented")
    }
    
    func (envoyFilterGenerator) extendedPrincipal(_ string, _ []string, _ bool) (*rbacpb.Principal, error) {
    	return nil, fmt.Errorf("unimplemented")
    }
    
    type srcIPGenerator struct{}
    
    func (srcIPGenerator) permission(_, _ string, _ bool) (*rbacpb.Permission, error) {
    	return nil, fmt.Errorf("unimplemented")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/log/slog/internal/benchmarks/handlers.go

    	*buf = strconv.AppendInt(*buf, t.Unix(), 10)
    }
    
    func (h *fastTextHandler) WithAttrs([]slog.Attr) slog.Handler {
    	panic("fastTextHandler: With unimplemented")
    }
    
    func (*fastTextHandler) WithGroup(string) slog.Handler {
    	panic("fastTextHandler: WithGroup unimplemented")
    }
    
    // An asyncHandler simulates a Handler that passes Records to a
    // background goroutine for processing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 20:33:37 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/modular_filesystem.cc

    Status ModularFileSystem::NewRandomAccessFile(
        const std::string& fname, TransactionToken* token,
        std::unique_ptr<RandomAccessFile>* result) {
      if (ops_->new_random_access_file == nullptr)
        return errors::Unimplemented(tensorflow::strings::StrCat(
            "Filesystem for ", fname, " does not support NewRandomAccessFile()"));
    
      UniquePtrTo_TF_Status plugin_status(TF_NewStatus(), TF_DeleteStatus);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables_test_pass.h

      Status Create(const tensorflow::GraphDef& graph) override {
        return tensorflow::errors::Unimplemented("not available");
      }
      Status Extend(const tensorflow::GraphDef& graph) override {
        return tensorflow::errors::Unimplemented("not available");
      }
    
      Status Close() override {
        return tensorflow::errors::Unimplemented("not available");
      }
    
      Status ListDevices(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 15:49:06 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

                                         size_t length) {
      return Unimplemented("SetAttrString has not been implemented yet.");
    }
    Status MlirAbstractOp::SetAttrInt(const char* attr_name, int64_t value) {
      return Unimplemented("SetAttrInt has not been implemented yet.");
    }
    Status MlirAbstractOp::SetAttrFloat(const char* attr_name, float value) {
      return Unimplemented("SetAttrFloat has not been implemented yet.");
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. pkg/kubelet/prober/prober.go

    	return eic.run()
    }
    
    func (eic *execInContainer) Output() ([]byte, error) {
    	return nil, fmt.Errorf("unimplemented")
    }
    
    func (eic *execInContainer) SetDir(dir string) {
    	// unimplemented
    }
    
    func (eic *execInContainer) SetStdin(in io.Reader) {
    	// unimplemented
    }
    
    func (eic *execInContainer) SetStdout(out io.Writer) {
    	eic.writer = out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:50:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top