Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for set_platform (0.23 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

                    && targetPlatform.getArchitecture().isAmd64();
            }
    
            @Override
            public void apply(DefaultGccPlatformToolChain gccToolChain) {
                boolean isMacOsX = gccToolChain.getPlatform().getOperatingSystem().isMacOsX();
                final String[] compilerArgs;
                if (isMacOsX) {
                    compilerArgs = new String[]{"-arch", "x86_64"};
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  2. src/runtime/os_freebsd.go

    	pairs := sysauxv(auxvp[:])
    	auxv = auxvp[: pairs*2 : pairs*2]
    }
    
    const (
    	_AT_NULL     = 0  // Terminates the vector
    	_AT_PAGESZ   = 6  // Page size in bytes
    	_AT_PLATFORM = 15 // string identifying platform
    	_AT_TIMEKEEP = 22 // Pointer to timehands.
    	_AT_HWCAP    = 25 // CPU feature flags
    	_AT_HWCAP2   = 26 // CPU feature flags 2
    )
    
    func sysauxv(auxv []uintptr) (pairs int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_launch_util.cc

      output_tensor_shapes.reserve(ctx->num_outputs());
      if (output.on_host_shape().is_dynamic()) {
        const se::Platform* platform = nullptr;
        if (stream != nullptr) {
          platform = stream->parent()->GetPlatform();
        } else {
          // Stream is not set for the host platform.
          TF_ASSIGN_OR_RETURN(platform,
                              se::PlatformManager::PlatformWithId(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  4. src/runtime/os_linux.go

    	if ret < 0 {
    		writeErrStr(failthreadcreate)
    		exit(1)
    	}
    }
    
    const (
    	_AT_NULL     = 0  // End of vector
    	_AT_PAGESZ   = 6  // System physical page size
    	_AT_PLATFORM = 15 // string identifying platform
    	_AT_HWCAP    = 16 // hardware capability bit vector
    	_AT_SECURE   = 23 // secure mode boolean
    	_AT_RANDOM   = 25 // introduced in 2.6.29
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.InstallExecutable.html[InstallExecutable]::
     * `getSourceFile()` was replaced by `getExecutableFile()`.
     * `getPlatform()` was replaced by `getTargetPlatform()`.
     * `setTargetPlatform(NativePlatform)` was removed. Use `Property.set()` instead.
     * `getToolChain()` was changed to return a `Property`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	}
    	return ""
    }
    
    func (x *GlobalConfig) GetAutoscalingv2API() *wrapperspb.BoolValue {
    	if x != nil {
    		return x.Autoscalingv2API
    	}
    	return nil
    }
    
    func (x *GlobalConfig) GetPlatform() string {
    	if x != nil {
    		return x.Platform
    	}
    	return ""
    }
    
    func (x *GlobalConfig) GetIpFamilies() []string {
    	if x != nil {
    		return x.IpFamilies
    	}
    	return nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top