Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 119 for UNIMPLEMENTED (0.13 sec)

  1. pkg/kubelet/container/testing/os.go

    	}
    	return nil
    }
    
    // Stat is a fake that returns an error
    func (f *FakeOS) Stat(path string) (os.FileInfo, error) {
    	if f.StatFn != nil {
    		return f.StatFn(path)
    	}
    	return nil, errors.New("unimplemented testing mock")
    }
    
    // Remove is a fake call that returns nil.
    func (f *FakeOS) Remove(path string) error {
    	f.Removes = append(f.Removes, path)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 13:37:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

    TF_WhileParams TF_NewWhile(TF_Graph* g, TF_Output* inputs, int ninputs,
                               TF_Status* status) {
    #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD)
      status->status = tensorflow::errors::Unimplemented(
          "Creating while loops is not supported on mobile. File a bug at "
          "https://github.com/tensorflow/tensorflow/issues if this feature is "
          "important to you");
      return EmptyWhileParams();
    #else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. pkg/probe/grpc/grpc.go

    		Service: service,
    	})
    
    	if err != nil {
    		stat, ok := status.FromError(err)
    		if ok {
    			switch stat.Code() {
    			case codes.Unimplemented:
    				klog.V(4).ErrorS(err, "server does not implement the grpc health protocol (grpc.health.v1.Health)", "addr", addr, "service", service)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 19:28:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/kernels/xla_ops.h

      XlaPlatformInfo platform_info_;
    
      const bool must_compile_;
    
      // Whether the graph has TF reference variables.
      const bool has_ref_vars_;
    
      // cannot_compile_cluster_ is set to true if XLA returns an Unimplemented
      // error when compiling the cluster this _XlaCompile is supposed to compile.
      // If `cannot_compile_cluster_` is true then we avoid compiling this cluster
      // on any future calls to _XlaCompile.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 23:44:26 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api.cc

    void TFE_DeleteContextOptions(TFE_ContextOptions* options) { delete options; }
    
    TFE_Context* TFE_NewContext(const TFE_ContextOptions* opts, TF_Status* status) {
      if (opts->use_tfrt) {
        status->status = tensorflow::errors::Unimplemented("TFRT is not supported");
        return nullptr;
      }
      std::vector<std::unique_ptr<tensorflow::Device>> devices;
      status->status = tensorflow::DeviceFactory::AddDevices(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    	metav1.TypeMeta
    	nested runtime.Object
    }
    
    func (w *wrappedParam) MarshalJSON() ([]byte, error) {
    	return nil, errors.New("MarshalJSON unimplemented for wrappedParam")
    }
    
    func (w *wrappedParam) UnmarshalJSON(data []byte) error {
    	return errors.New("UnmarshalJSON unimplemented for wrappedParam")
    }
    
    func (w *wrappedParam) ToUnstructured() interface{} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/cases.go

    var (
    	// NoLower disables the lowercasing of non-leading letters for a title
    	// caser.
    	NoLower Option = noLower
    
    	// Compact omits mappings in case folding for characters that would grow the
    	// input. (Unimplemented.)
    	Compact Option = compact
    )
    
    // TODO: option to preserve a normal form, if applicable?
    
    type options struct {
    	noLower bool
    	simple  bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_loong64.s

    TEXT runtime·access(SB),$0-20
    	MOVV	R0, 2(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    	MOVW	R0, ret+16(FP) // for vet
    	RET
    
    TEXT runtime·connect(SB),$0-28
    	MOVV	R0, 2(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    	MOVW	R0, ret+24(FP) // for vet
    	RET
    
    TEXT runtime·socket(SB),$0-20
    	MOVV	R0, 2(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response_test.go

    	gvk schema.GroupVersionKind
    	obj runtime.Object
    }
    
    // DeepCopyObject implements runtime.Object interface.
    func (m *mockCacheableObject) DeepCopyObject() runtime.Object {
    	panic("DeepCopy unimplemented for mockCacheableObject")
    }
    
    // GetObjectKind implements runtime.Object interface.
    func (m *mockCacheableObject) GetObjectKind() schema.ObjectKind {
    	return m
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/variable_info_util.cc

          // locks we have already acquired will be released when the VariableInfo
          // objects are destroyed.
          // TODO(b/128495870) Add support for passing aliased resource variables.
          return errors::Unimplemented("Duplicate variable passed to XLA cluster");
        }
        if (variables[i]->read_only()) {
          VLOG(4) << "Acquiring reader lock for variable "
                  << reinterpret_cast<void*>(variable);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top