Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for UNIMPLEMENTED (0.47 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. maven-core/src/site/apt/offline-mode.apt

      repositories are "really" offline, since offline mode is more of a behavior,
      and this will lead to counter-intuitive results. A different feature may exist
      unimplemented, which is to detect when the network is down and provide better
      feedback for that case. However, when offline mode is declared, nothing
      earmarked as remote should be accessed, regardless of whether it is actually
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_executable_persistor.h

          serialized_executable.ok()) {
        serialized_entry.set_executable(std::move(*serialized_executable));
        return serialized_entry;
      } else if (serialized_executable.status().code() == error::UNIMPLEMENTED) {
        VLOG(1) << "Executable export is not implemented";
      } else {
        return serialized_executable.status();
      }
    
      TF_ASSIGN_OR_RETURN(
          auto serialized_executable,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

    class FakeDevice : public Device {
     public:
      explicit FakeDevice(const DeviceAttributes& device_attributes)
          : Device(nullptr, device_attributes) {}
    
      Status Sync() override { return errors::Unimplemented("FakeDevice::Sync()"); }
    
      Allocator* GetAllocator(AllocatorAttributes attr) override { return nullptr; }
    
      static std::unique_ptr<Device> Make(const string& name, const string& type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/stdlib_test.go

    type futurePackage struct {
    	done chan struct{} // guards pkg and err
    	pkg  *Package
    	err  error
    }
    
    func (c *stdlibChecker) Import(path string) (*Package, error) {
    	panic("unimplemented: use ImportFrom")
    }
    
    func (c *stdlibChecker) ImportFrom(path, dir string, _ ImportMode) (*Package, error) {
    	if path == "unsafe" {
    		// unsafe cannot be type checked normally.
    		return Unsafe, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cri_stats_provider.go

    			// Call succeeded
    			return result, nil
    		}
    		s, ok := status.FromError(err)
    		// Legitimate failure, rather than the CRI implementation does not support ListPodSandboxStats.
    		if !ok || s.Code() != codes.Unimplemented {
    			return nil, err
    		}
    		// CRI implementation doesn't support ListPodSandboxStats, warn and fallback.
    		klog.V(5).ErrorS(err,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
Back to top