Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 137 for UNIMPLEMENTED (0.42 sec)

  1. pilot/pkg/leaderelection/leaderelection_test.go

    	return true
    }
    
    func (w *fakeDefaultWatcher) GetDefault() string {
    	return w.defaultRevision
    }
    
    func (w *fakeDefaultWatcher) AddHandler(handler revisions.DefaultHandler) {
    	panic("unimplemented")
    }
    
    func TestLeaderElection(t *testing.T) {
    	client := fake.NewSimpleClientset()
    	watcher := &fakeDefaultWatcher{}
    	// First pod becomes the leader
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	case AddrPostIndex:
    		return fmt.Sprintf("[%s],%s", R, X)
    	case AddrPostReg:
    		post := Reg(X0) + Reg(m.imm)
    		postR := post.String()
    		return fmt.Sprintf("[%s], %s", R, postR)
    	}
    	return fmt.Sprintf("unimplemented!")
    }
    
    // A MemExtend is a memory reference made up of a base R and index expression X.
    // The effective memory address is R or R+X depending on Index, Extend and Amount.
    type MemExtend struct {
    	Base   RegSP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

        ImmediateExecutionContext* context, std::unique_ptr<TFSavedModelAPI>* out) {
      // TODO(bmzhao): Add support for loading a TF1 SavedModel.
      if (tags) {
        return errors::Unimplemented(
            "Loading saved models with explicit tags will be supported in the "
            "future");
      }
    
      SavedModelV2Bundle bundle;
      TF_RETURN_IF_ERROR(SavedModelV2Bundle::Load(directory, &bundle));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_platform_info.cc

        // the situation for us.
        const Status& status = compiler_for_platform.status();
        if (status.code() == error::NOT_FOUND) {
          return errors::Unimplemented("Could not find compiler for platform ",
                                       platform.value()->Name(), ": ",
                                       status.ToString());
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. src/runtime/os_windows.go

    // Stubs so tests can link correctly. These should never be called.
    func open(name *byte, mode, perm int32) int32 {
    	throw("unimplemented")
    	return -1
    }
    func closefd(fd int32) int32 {
    	throw("unimplemented")
    	return -1
    }
    func read(fd int32, p unsafe.Pointer, n int32) int32 {
    	throw("unimplemented")
    	return -1
    }
    
    type sigset struct{}
    
    // Call a Windows function with stdcall conventions,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  7. src/syscall/mksyscall.pl

    	$text .= sprintf "func %s(%s)%s {\n", $func, join(', ', @in), $out_decl;
    
    	# Disable ptrace on iOS.
    	if ($darwin && $func =~ /^ptrace(Ptr)?$/) {
    		$text .= "\tif runtime.GOOS == \"ios\" {\n";
    		$text .= "\t\tpanic(\"unimplemented\")\n";
    		$text .= "\t}\n";
    	}
    
    	# Check if err return available
    	my $errvar = "";
    	foreach my $p (@out) {
    		my ($name, $type) = parseparam($p);
    		if($type eq "error") {
    			$errvar = $name;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. src/runtime/os_darwin.go

    package runtime
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    type mOS struct {
    	initialized bool
    	mutex       pthreadmutex
    	cond        pthreadcond
    	count       int
    }
    
    func unimplemented(name string) {
    	println(name, "not implemented")
    	*(*int)(unsafe.Pointer(uintptr(1231))) = 1231
    }
    
    //go:nosplit
    func semacreate(mp *m) {
    	if mp.initialized {
    		return
    	}
    	mp.initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/kernels/xla_ops.cc

              /*may_alias_resource_update=*/false, &client, &kernel, &executable);
        }
        if (compile_mode != DeviceCompileMode::kLazy ||
            status.code() != error::UNIMPLEMENTED) {
          OP_REQUIRES_OK(ctx, status);
        }
    
        if (status.code() == error::UNIMPLEMENTED) {
          LOG(WARNING) << "Compilation failed:" << status
                       << ".  Falling back to TF function call.";
    
          BroadcastOptimizationRemark(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. src/crypto/tls/bogo_shim_test.go

    	args := []string{
    		"test",
    		".",
    		fmt.Sprintf("-shim-config=%s", filepath.Join(cwd, "bogo_config.json")),
    		fmt.Sprintf("-shim-path=%s", os.Args[0]),
    		"-shim-extra-flags=-bogo-mode",
    		"-allow-unimplemented",
    		"-loose-errors", // TODO(roland): this should be removed eventually
    		fmt.Sprintf("-json-output=%s", resultsFile),
    	}
    	if *bogoFilter != "" {
    		args = append(args, fmt.Sprintf("-test=%s", *bogoFilter))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top