Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 137 for UNIMPLEMENTED (0.2 sec)

  1. fuzzing/fuzzingserver-expected.txt

    "12.1.9 UNIMPLEMENTED"
    "12.2.1 UNIMPLEMENTED"
    "12.2.10 UNIMPLEMENTED"
    "12.2.11 UNIMPLEMENTED"
    "12.2.12 UNIMPLEMENTED"
    "12.2.13 UNIMPLEMENTED"
    "12.2.14 UNIMPLEMENTED"
    "12.2.15 UNIMPLEMENTED"
    "12.2.16 UNIMPLEMENTED"
    "12.2.17 UNIMPLEMENTED"
    "12.2.18 UNIMPLEMENTED"
    "12.2.2 UNIMPLEMENTED"
    "12.2.3 UNIMPLEMENTED"
    "12.2.4 UNIMPLEMENTED"
    "12.2.5 UNIMPLEMENTED"
    "12.2.6 UNIMPLEMENTED"
    "12.2.7 UNIMPLEMENTED"
    "12.2.8 UNIMPLEMENTED"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 6.7K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/module.cc

      }
      return tensorflow::errors::Unimplemented(absl::StrCat(
          "UserObject with identifier '", identifier, "' not implemented."));
    }
    
    // Register all available concrete functions from a SavedModel into a runtime.
    tensorflow::Status RegisterConcreteFunctions(Runtime runtime,
                                                 TFPackage tf_package) {
      return tensorflow::errors::Unimplemented("Not implemented.");
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/internal/bytealg/index_generic.go

    // Requires 2 <= len(b) <= MaxLen.
    func Index(a, b []byte) int {
    	panic("unimplemented")
    }
    
    // IndexString returns the index of the first instance of b in a, or -1 if b is not present in a.
    // Requires 2 <= len(b) <= MaxLen.
    func IndexString(a, b string) int {
    	panic("unimplemented")
    }
    
    // Cutover reports the number of failures of IndexByte we should tolerate
    // before switching over to Index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 901 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/util/grpc/codes.go

    	"RESOURCE_EXHAUSTED":  codes.ResourceExhausted,
    	"FAILED_PRECONDITION": codes.FailedPrecondition,
    	"ABORTED":             codes.Aborted,
    	"OUT_OF_RANGE":        codes.OutOfRange,
    	"UNIMPLEMENTED":       codes.Unimplemented,
    	"INTERNAL":            codes.Internal,
    	"UNAVAILABLE":         codes.Unavailable,
    	"DATA_LOSS":           codes.DataLoss,
    	"UNAUTHENTICATED":     codes.Unauthenticated,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 16:50:02 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top