Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,487 for unimplement (0.2 sec)

  1. guava/src/com/google/common/base/Converter.java

       *     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}.
       */
      @ForOverride
      protected abstract A doBackward(B b);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Converter.java

       *     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}.
       */
      @ForOverride
      protected abstract A doBackward(B b);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. pkg/probe/grpc/grpc.go

    	})
    
    	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)
    				return probe.Failure, fmt.Sprintf("error: this server does not implement the grpc health protocol (grpc.health.v1.Health): %s", stat.Message()), nil
    			case codes.DeadlineExceeded:
    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/c/eager/c_api_unified_experimental_graph.cc

        return absl::OkStatus();
      }
    
      Status RegisterFunction(AbstractFunction* func) override {
        return errors::Unimplemented(
            "Registering graph functions has not been implemented yet.");
      }
    
      Status RemoveFunction(const string& func) override {
        return errors::Unimplemented(
            "GraphContext::RemoveFunction has not been implemented yet.");
      }
      // For LLVM style RTTI.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K 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. src/database/sql/driver/driver.go

    // [ExecerContext], [QueryerContext], [ConnPrepareContext], and [ConnBeginTx].
    //
    // To support custom data types, implement [NamedValueChecker]. [NamedValueChecker]
    // also allows queries to accept per-query options as a parameter by returning
    // [ErrRemoveArgument] from CheckNamedValue.
    //
    // If multiple result sets are supported, [Rows] should implement [RowsNextResultSet].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/net/fd_windows.go

    	lsa, _ := lrsa.Sockaddr()
    	rsa, _ := rrsa.Sockaddr()
    
    	netfd.setAddr(netfd.addrFunc()(lsa), netfd.addrFunc()(rsa))
    	return netfd, nil
    }
    
    // Unimplemented functions.
    
    func (fd *netFD) dup() (*os.File, error) {
    	// TODO: Implement this, perhaps using internal/poll.DupCloseOnExec.
    	return nil, syscall.EWINDOWS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    template <GTEST_$(n)_TYPENAMES_(T), GTEST_$(n)_TYPENAMES_(U)>
    inline bool operator!=(const GTEST_$(n)_TUPLE_(T)& t,
                           const GTEST_$(n)_TUPLE_(U)& u) { return !(t == u); }
    
    // 6.1.4 Pairs.
    // Unimplemented.
    
    }  // namespace tr1
    }  // namespace std
    
    
    $for j [[
    #undef GTEST_$(j)_TUPLE_
    
    ]]
    
    
    $for j [[
    #undef GTEST_$(j)_TYPENAMES_
    
    ]]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top