Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,487 for unimplement (0.22 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ConnectionVersion4.java

     * <li>Implementations must be thread-safe.
     * <li>Implementations should implement {@link InternalInvalidatableVirtualFileSystemConnection}. This is used by all consumer versions from 6.1.
     * <li>Implementations should implement {@link org.gradle.tooling.internal.protocol.test.InternalTestExecutionConnection}. This is used by all consumer versions from 2.6-rc-1.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. 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)
  3. test/fixedbugs/issue48471.go

    	f(new(T)) // ERROR "cannot use new\(T\) \(.*type \*T\) as I value in argument to f: \*T does not implement I \(missing method M\)"
    
    	var i I
    	i = new(T)    // ERROR "cannot use new\(T\) \(.*type \*T\) as I value in assignment: \*T does not implement I \(missing method M\)"
    	i = I(new(T)) // ERROR "cannot convert new\(T\) \(.*type \*T\) to type I: \*T does not implement I \(missing method M\)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 14:28:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. 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)
  5. pkg/test/framework/components/echo/match/matchers_test.go

    }
    
    func (f fakeInstance) Clusters() cluster.Clusters {
    	panic("implement me")
    }
    
    func (f fakeInstance) Call(echo.CallOptions) (echo.CallResult, error) {
    	panic("implement me")
    }
    
    func (f fakeInstance) CallOrFail(test.Failer, echo.CallOptions) echo.CallResult {
    	panic("implement me")
    }
    
    func (f fakeInstance) UpdateWorkloadLabel(add map[string]string, remove []string) error {
    	panic("implement me")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/net/file_windows.go

    package net
    
    import (
    	"os"
    	"syscall"
    )
    
    func fileConn(f *os.File) (Conn, error) {
    	// TODO: Implement this
    	return nil, syscall.EWINDOWS
    }
    
    func fileListener(f *os.File) (Listener, error) {
    	// TODO: Implement this
    	return nil, syscall.EWINDOWS
    }
    
    func filePacketConn(f *os.File) (PacketConn, error) {
    	// TODO: Implement this
    	return nil, syscall.EWINDOWS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 02 16:11:03 UTC 2015
    - 521 bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/issues0.go

    	i1 = i0 /* ERRORx `cannot use i0 .* as I1 value in assignment: I0 does not implement I1 \(missing method foo\)` */
    	i1 = t0 /* ERRORx `.* t0 .* as I1 .*: \*T0 does not implement I1 \(missing method foo\)` */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top