Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 134 for exportable (0.18 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/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.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/internal/objfile/objfile.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package objfile implements portable access to OS-specific executable files.
    package objfile
    
    import (
    	"cmd/internal/archive"
    	"debug/dwarf"
    	"debug/gosym"
    	"fmt"
    	"io"
    	"os"
    	"sort"
    )
    
    type rawFile interface {
    	symbols() (syms []Sym, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 24 16:01:55 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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 (0)
  9. 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)
  10. src/cmd/go/testdata/script/mod_dot.txt

    # except that -mod=vendor is implied by default.
    cd $GOROOT/src
    ! go list .
    stderr '^no Go files in '$GOROOT'[/\\]src$'
    
    ! go list ./builtin
    stderr '^"builtin" is a pseudo-package, not an importable package$'
    
    ! go list ./debug
    ! stderr 'cannot find module providing package'
    stderr '^no Go files in '$GOROOT'[/\\]src[/\\]debug$'
    
    ! go list ./golang.org/x/tools/cmd/goimports
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 22:30:03 UTC 2022
    - 4.6K bytes
    - Viewed (0)
Back to top