Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for UNIMPLEMENTED (0.29 sec)

  1. tensorflow/compiler/jit/rearrange_function_argument_pass_test.cc

            *fbody = new_fbody.get();
            fbodies.push_back(std::move(new_fbody));
            return absl::OkStatus();
          },
          g.get(), &fld);
      EXPECT_EQ(status.code(), error::UNIMPLEMENTED);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

                assertThat(
                    it.value,
                    equalTo<Any>("42")
                )
            }
        }
    
        @Test
        fun `unimplemented serialization feature problems link to the Java serialization section`() {
            val exception = assertThrows(UnsupportedOperationException::class.java) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device_context.cc

                                                  Device* device,
                                                  Tensor* output_tensor,
                                                  StatusCallback done) const {
      done(errors::Unimplemented("XLA->XLA same-device copies not implemented."));
    }
    
    void XlaDeviceContext::CopyCPUTensorToDevice(const Tensor* cpu_tensor,
                                                 Device* device,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top