Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for platform_id (0.21 sec)

  1. src/runtime/defs_windows.go

    type _OSVERSIONINFOW struct {
    	osVersionInfoSize uint32
    	majorVersion      uint32
    	minorVersion      uint32
    	buildNumber       uint32
    	platformId        uint32
    	csdVersion        [128]uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device.cc

          device_type_(device_type),
          platform_(platform),
          shape_determination_fns_(std::move(shape_determination_fns)),
          padded_shape_fn_(std::move(padded_shape_fn)),
          use_multiple_streams_(use_multiple_streams) {}
    
    int XlaDevice::Metadata::device_ordinal() const { return device_ordinal_; }
    
    se::Platform* XlaDevice::Metadata::platform() const { return platform_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/version_windows.go

    type _OSVERSIONINFOW struct {
    	osVersionInfoSize uint32
    	majorVersion      uint32
    	minorVersion      uint32
    	buildNumber       uint32
    	platformId        uint32
    	csdVersion        [128]uint16
    }
    
    // According to documentation, RtlGetVersion function always succeeds.
    //sys	rtlGetVersion(info *_OSVERSIONINFOW) = ntdll.RtlGetVersion
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    ====
    
    Once this is done, we need to make sure that all modules now _depend on the platform_, like this:
    
    .Declaring a dependency on the platform
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. misc/go_android_exec/main.go

    	cmd.Stderr = os.Stderr
    	out, err = cmd.Output()
    	if err != nil {
    		return fmt.Errorf("%v: %w", cmd, err)
    	}
    	platformBin := filepath.Dir(string(bytes.TrimSpace(out)))
    	if platformBin == "." {
    		return errors.New("failed to locate cmd/go for target platform")
    	}
    	if err := adb("push", platformBin, path.Join(deviceGoroot, "bin")); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    if (owner instanceof ModuleComponentIdentifier) {
                        ModuleComponentIdentifier platformId = (ModuleComponentIdentifier) owner;
                        final ModuleComponentSelector cs = DefaultModuleComponentSelector.newSelector(platformId.getModuleIdentifier(), platformId.getVersion());
    
                        // There are 2 possibilities here:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/stream_executor/stream_executor_test.cc

              platform_, test_util::DestroyPlatform, platform_fns_,
              test_util::DestroyPlatformFns, device_fns_, se_, timer_fns_);
        }
        absl::StatusOr<StreamExecutor*> maybe_executor =
            cplatform_->ExecutorForDevice(ordinal);
        TF_CHECK_OK(maybe_executor.status());
        return std::move(maybe_executor).value();
      }
      SP_Platform platform_;
      SP_PlatformFns platform_fns_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device.h

        bool UseMultipleStreams() const { return use_multiple_streams_; }
    
       private:
        const int device_ordinal_;
        const DeviceType device_type_;
        se::Platform* platform_;  // Not owned.
        std::vector<XlaShapeLayoutHelpers::ShapeDeterminationFns>
            shape_determination_fns_;
        PaddedShapeFn padded_shape_fn_;
        const bool use_multiple_streams_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho.go

    	S_ATTR_PURE_INSTRUCTIONS   = 0x80000000
    	S_ATTR_DEBUG               = 0x02000000
    	S_ATTR_SOME_INSTRUCTIONS   = 0x00000400
    )
    
    const (
    	PLATFORM_MACOS       MachoPlatform = 1
    	PLATFORM_IOS         MachoPlatform = 2
    	PLATFORM_TVOS        MachoPlatform = 3
    	PLATFORM_WATCHOS     MachoPlatform = 4
    	PLATFORM_BRIDGEOS    MachoPlatform = 5
    	PLATFORM_MACCATALYST MachoPlatform = 6
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. src/runtime/syscall_windows_test.go

    		ERROR_OLD_WIN_VERSION syscall.Errno = 1150
    	)
    
    	type OSVersionInfoEx struct {
    		OSVersionInfoSize uint32
    		MajorVersion      uint32
    		MinorVersion      uint32
    		BuildNumber       uint32
    		PlatformId        uint32
    		CSDVersion        [128]uint16
    		ServicePackMajor  uint16
    		ServicePackMinor  uint16
    		SuiteMask         uint16
    		ProductType       byte
    		Reserve           byte
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
Back to top