Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 109 for exportable (0.28 sec)

  1. src/cmd/vendor/golang.org/x/sys/plan9/syscall.go

    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    // to freebsd and $GOARCH to arm.
    //
    // The primary use of this package is inside other packages that provide a more
    // portable interface to the system, such as "os", "time" and "net".  Use
    // those packages rather than this one if you can.
    //
    // For details of the functions and data types in this package consult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/syscall/syscall_wasip1.go

    // because we need Go programs to be portable across platforms. WASI does
    // not have a mechanism to to spawn processes so there is no reason for an
    // application to take a dependency on this type.
    type Rusage struct {
    	Utime Timeval
    	Stime Timeval
    }
    
    // ProcAttr is a placeholder to allow compilation of the [os/exec] package
    // because we need Go programs to be portable across platforms. WASI does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. ci/devinfra/docker_windows/Dockerfile

        $env:PATH = [Environment]::GetEnvironmentVariable('PATH', 'Machine'); \
        choco feature enable -n allowGlobalConfirmation; \
        choco install 7zip; \
        choco install 7zip.install; \
        choco install 7zip.portable; \
        choco install anaconda2 --version 5.0.1; \
        choco install anaconda3 --version 5.0.1; \
        choco install android-sdk --version 25.2.3.1; \
        choco install AndroidStudio --version 3.0.1.0; \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. src/plugin/plugin.go

    // should be considered carefully during the design. For example:
    //
    //   - Plugins are currently supported only on Linux, FreeBSD, and
    //     macOS, making them unsuitable for applications intended to be
    //     portable.
    //
    //   - Applications that use plugins may require careful configuration
    //     to ensure that the various parts of the program be made available
    //     in the correct location in the file system (or container image).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:46:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/syscall/syscall.go

    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    // to freebsd and $GOARCH to arm.
    // The primary use of syscall is inside other packages that provide a more
    // portable interface to the system, such as "os", "time" and "net".  Use
    // those packages rather than this one if you can.
    // For details of the functions and data types in this package consult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/first-steps.md

     │                      │
     ╰──────────────────────╯
    
    <font color="#3465A4">INFO    </font> Importing module <font color="#4E9A06">main</font>
    <font color="#3465A4">INFO    </font> Found importable FastAPI app
    
     ╭─ <font color="#8AE234"><b>Importable FastAPI app</b></font> ─╮
     │                          │
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 12K bytes
    - Viewed (1)
  7. src/cmd/dist/main.go

    		println("VFPv1 OK.")
    		useVFPv3() // might fail with SIGILL
    		println("VFPv3 OK.")
    		os.Exit(0)
    	}
    
    	xinit()
    	xmain()
    	xexit(0)
    }
    
    // The OS-specific main calls into the portable code here.
    func xmain() {
    	if len(os.Args) < 2 {
    		usage()
    	}
    	cmd := os.Args[1]
    	os.Args = os.Args[1:] // for flag parsing during cmd
    	flag.Usage = func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. src/os/error.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"internal/poll"
    	"io/fs"
    )
    
    // Portable analogs of some common system call errors.
    //
    // Errors returned from this package may be tested against these errors
    // with [errors.Is].
    var (
    	// ErrInvalid indicates an invalid argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/math/sqrt.go

    //           | Use the hardware sqrt if you have one |
    //           -----------------------------------------
    // Method:
    //   Bit by bit method using integer arithmetic. (Slow, but portable)
    //   1. Normalization
    //      Scale x to y in [1,4) with even powers of 2:
    //      find an integer k such that  1 <= (y=x*2**(2k)) < 4, then
    //              sqrt(x) = 2**k * sqrt(y)
    //   2. Bit by bit computation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 15 17:07:57 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/environment/base.go

    //
    // Note that a default version number less than n-1 indicates a wider range of version
    // compatibility than strictly required for rollback. A wide range of compatibility is
    // desirable because it means that CEL expressions are portable across a wider range
    // of Kubernetes versions.
    func DefaultCompatibilityVersion() *version.Version {
    	return version.MajorMinor(1, 30)
    }
    
    var baseOpts = append(baseOptsWithoutStrictCost, StrictCostOpt)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 15:51:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top