Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 137 for UNIMPLEMENTED (0.14 sec)

  1. src/cmd/pprof/pprof_test.go

    	pprofExePath  string
    	pprofPathErr  error
    )
    
    // See also runtime/pprof.cpuProfilingBroken.
    func mustHaveCPUProfiling(t *testing.T) {
    	switch runtime.GOOS {
    	case "plan9":
    		t.Skipf("skipping on %s, unimplemented", runtime.GOOS)
    	case "aix":
    		t.Skipf("skipping on %s, issue 45170", runtime.GOOS)
    	case "ios", "dragonfly", "netbsd", "illumos", "solaris":
    		t.Skipf("skipping on %s, issue 13841", runtime.GOOS)
    	case "openbsd":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/sdsservice.go

    func (s *sdsservice) DeltaSecrets(stream sds.SecretDiscoveryService_DeltaSecretsServer) error {
    	return status.Error(codes.Unimplemented, "DeltaSecrets not implemented")
    }
    
    func (s *sdsservice) FetchSecrets(ctx context.Context, discReq *discovery.DiscoveryRequest) (*discovery.DiscoveryResponse, error) {
    	return nil, status.Error(codes.Unimplemented, "FetchSecrets not implemented")
    }
    
    func (s *sdsservice) Close() {
    	close(s.stop)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/tests/module_test.cc

      ASSERT_TRUE(::tensorflow::protobuf::TextFormat::ParseFromString(
          pb_txt, &saved_object_proto));
    
      EXPECT_THAT(
          BuildSavedUserObject(saved_object_proto),
          StatusIs(tensorflow::error::UNIMPLEMENTED, ::testing::HasSubstr("foo")));
    }
    
    }  // namespace impl
    }  // namespace libtf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_s390x.s

    	RET
    
    TEXT runtime·access(SB),$0-20
    	MOVD	$0, 2(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    	MOVW	R0, ret+16(FP)
    	RET
    
    TEXT runtime·connect(SB),$0-28
    	MOVD	$0, 2(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    	MOVW	R0, ret+24(FP)
    	RET
    
    TEXT runtime·socket(SB),$0-20
    	MOVD	$0, 2(R0) // unimplemented, only needed for android; declared in stubs_linux.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top