Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 137 for UNIMPLEMENTED (0.46 sec)

  1. guava/src/com/google/common/reflect/Types.java

       * Java 8. If we include the {@code getAnnotatedBounds()} method then its return type means it
       * won't compile on Java 7, while if we don't include the method then the compiler will complain
       * that an abstract method is unimplemented. So instead we use a dynamic proxy to get an
       * implementation. If the method being called on the {@code TypeVariable} instance has the same
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2/api.pb.go

    type UnimplementedExampleServer struct {
    }
    
    func (*UnimplementedExampleServer) GetExampleInfo(ctx context.Context, req *ExampleRequest) (*ExampleResponse, error) {
    	return nil, status.Errorf(codes.Unimplemented, "method GetExampleInfo not implemented")
    }
    
    func RegisterExampleServer(s *grpc.Server, srv ExampleServer) {
    	s.RegisterService(&_Example_serviceDesc, srv)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor_test.go

    type anyObject struct {
    	Value interface{}
    }
    
    func (p anyObject) GetObjectKind() schema.ObjectKind {
    	return schema.EmptyObjectKind
    }
    
    func (anyObject) DeepCopyObject() runtime.Object {
    	panic("unimplemented")
    }
    
    func (p anyObject) MarshalCBOR() ([]byte, error) {
    	return modes.Encode.Marshal(p.Value)
    }
    
    func (p *anyObject) UnmarshalCBOR(in []byte) error {
    	return modes.Decode.Unmarshal(in, &p.Value)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta1/api.pb.go

    type UnimplementedExampleServer struct {
    }
    
    func (*UnimplementedExampleServer) GetExampleInfo(ctx context.Context, req *ExampleRequest) (*ExampleResponse, error) {
    	return nil, status.Errorf(codes.Unimplemented, "method GetExampleInfo not implemented")
    }
    
    func RegisterExampleServer(s *grpc.Server, srv ExampleServer) {
    	s.RegisterService(&_Example_serviceDesc, srv)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/gradients.cc

      // TODO(skyewm): handle (or at least detect) nested while loops
    
      // TODO(skyewm): handle NoGradient in while loop
      if (summed_grads == NoGradient()) {
        return errors::Unimplemented(
            "Missing gradient into while loop not yet implemented");
      }
    
      DCHECK(exit_node->IsExit());
      WhileContext* while_ctx = exit_node->while_ctx();
      DCHECK(while_ctx != nullptr);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

              combined_shape.dims() != component_shape.dims()) {
            PartialTensorShape first_shape;
            TF_RETURN_IF_ERROR(unwrap(tensors_[0].get())->Shape(&first_shape));
            return errors::Unimplemented(absl::StrCat(
                "Computing the shape of a ParallelTensor when the components do "
                "not all have the same rank is not supported. One tensor had "
                "shape ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. src/database/sql/driver/driver.go

    // package should continue as if the optional interface was not
    // implemented. ErrSkip is only supported where explicitly
    // documented.
    var ErrSkip = errors.New("driver: skip fast-path; continue as if unimplemented")
    
    // ErrBadConn should be returned by a driver to signal to the [database/sql]
    // package that a driver.[Conn] is in a bad state (such as the server
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_experimental.cc

    TF_Library* TF_LoadPluggableDeviceLibrary(const char* library_filename,
                                              TF_Status* status) {
    #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD)
      status->status = tensorflow::errors::Unimplemented(
          "PluggableDevice plugin functionality is not supported on mobile");
      return nullptr;
    #else
      TF_Library* lib_handle = new TF_Library;
      static tensorflow::mutex mu(tensorflow::LINKER_INITIALIZED);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Converter.java

       * @return the converted instance; <b>must not</b> be null
       * @throws UnsupportedOperationException if backward conversion is not implemented; this should be
       *     very rare. Note that if backward conversion is not only unimplemented but
       *     unimplement<i>able</i> (for example, consider a {@code Converter<Chicken, ChickenNugget>}),
       *     then this is not logically a {@code Converter} at all, and should just implement {@link
       *     Function}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Converter.java

       * @return the converted instance; <b>must not</b> be null
       * @throws UnsupportedOperationException if backward conversion is not implemented; this should be
       *     very rare. Note that if backward conversion is not only unimplemented but
       *     unimplement<i>able</i> (for example, consider a {@code Converter<Chicken, ChickenNugget>}),
       *     then this is not logically a {@code Converter} at all, and should just implement {@link
       *     Function}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top