Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for iovs (0.1 sec)

  1. .bazelrc

    build:macos_arm64 --macos_minimum_os=11.0
    
    # iOS configs for each architecture and the fat binary builds.
    build:ios --apple_platform_type=ios
    build:ios --apple_bitcode=embedded --copt=-fembed-bitcode
    build:ios --copt=-Wno-c++11-narrowing
    build:ios_armv7 --config=ios
    build:ios_armv7 --cpu=ios_armv7
    build:ios_arm64 --config=ios
    build:ios_arm64 --cpu=ios_arm64
    build:ios_arm64e --config=ios
    build:ios_arm64e --cpu=ios_arm64e
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    	switch {
    	case goos == "android":
    		if gohostos != "android" {
    			return pathf("%s/misc/go_android_exec/main.go", goroot)
    		}
    	case goos == "ios":
    		if gohostos != "ios" {
    			return pathf("%s/misc/ios/go_ios_exec.go", goroot)
    		}
    	}
    	return ""
    }
    
    func goInstall(env []string, goBinary string, args ...string) {
    	goCmd(env, goBinary, "install", args...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    		runTests: "^$", // only ensure they compile
    	})
    
    	// Test ios/amd64 for the iOS simulator.
    	if goos == "darwin" && goarch == "amd64" && t.cgoEnabled {
    		t.registerTest("GOOS=ios on darwin/amd64",
    			&goTest{
    				variant:  "amd64ios",
    				timeout:  300 * time.Second,
    				runTests: "SystemRoots",
    				env:      []string{"GOOS=ios", "CGO_ENABLED=1"},
    				pkg:      "crypto/x509",
    			})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. configure.py

    ]
    
    # List of files to configure when building Bazel on Apple platforms.
    APPLE_BAZEL_FILES = [
        'tensorflow/lite/ios/BUILD', 'tensorflow/lite/objc/BUILD',
        'tensorflow/lite/swift/BUILD',
        'tensorflow/lite/tools/benchmark/experimental/ios/BUILD'
    ]
    
    # List of files to move when building for iOS.
    IOS_FILES = [
        'tensorflow/lite/objc/TensorFlowLiteObjC.podspec',
        'tensorflow/lite/swift/TensorFlowLiteSwift.podspec',
    ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  5. src/runtime/malloc.go

    	// mips32 only has access to the low 2GB of virtual memory, so
    	// we further limit it to 31 bits.
    	//
    	// On ios/arm64, although 64-bit pointers are presumably
    	// available, pointers are truncated to 33 bits in iOS <14.
    	// Furthermore, only the top 4 GiB of the address space are
    	// actually available to the application. In iOS >=14, more
    	// of the address space is available, and the OS can now
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. tensorflow/BUILD

            ":macos_arm64",
        ],
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "ios",
        constraint_values = if_google(
            ["//third_party/bazel_platforms/os:ios"],
            [],
        ),
        values = if_oss(
            {"apple_platform_type": "ios"},
            {},
        ),
        visibility = ["//visibility:public"],
    )
    
    # TODO(jakeharmon8): Remove in favor of TSL version
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. src/os/os_test.go

    }
    
    var sysdir = func() *sysDir {
    	switch runtime.GOOS {
    	case "android":
    		return &sysDir{
    			"/system/lib",
    			[]string{
    				"libmedia.so",
    				"libpowermanager.so",
    			},
    		}
    	case "ios":
    		wd, err := syscall.Getwd()
    		if err != nil {
    			wd = err.Error()
    		}
    		sd := &sysDir{
    			filepath.Join(wd, "..", ".."),
    			[]string{
    				"ResourceRules.plist",
    				"Info.plist",
    			},
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. src/go/build/build.go

    // matchTag reports whether the name is one of:
    //
    //	cgo (if cgo is enabled)
    //	$GOOS
    //	$GOARCH
    //	ctxt.Compiler
    //	linux (if GOOS = android)
    //	solaris (if GOOS = illumos)
    //	darwin (if GOOS = ios)
    //	unix (if this is a Unix GOOS)
    //	boringcrypto (if GOEXPERIMENT=boringcrypto is enabled)
    //	tag (if tag is listed in ctxt.BuildTags, ctxt.ToolTags, or ctxt.ReleaseTags)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/manual.css

    /** Correct `inline-block` display not defined in IE 8/9. */
    audio,
    canvas,
    video {
    	display: inline-block;
    }
    
    /** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */
    audio:not([controls]) {
    	display: none;
    	height: 0;
    }
    
    /** Address `[hidden]` styling not present in IE 8/9. Hide the `template` element in IE, Safari, and Firefox < 22. */
    [hidden],
    template {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    			// -headerpad is incompatible with -fembed-bitcode.
    			argv = append(argv, "-Wl,-headerpad,1144")
    		}
    		if ctxt.DynlinkingGo() && buildcfg.GOOS != "ios" {
    			// -flat_namespace is deprecated on iOS.
    			// It is useful for supporting plugins. We don't support plugins on iOS.
    			// -flat_namespace may cause the dynamic linker to hang at forkExec when
    			// resolving a lazy binding. See issue 38824.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top