Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for maine (0.17 sec)

  1. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		ccArgs = append(cc, "-o", exe, "-nopie", "main5.c", "libgo2.a")
    		out, err = exec.Command(ccArgs[0], ccArgs[1:]...).CombinedOutput()
    		t.Logf("%v\n%s", ccArgs, out)
    	}
    
    	// Don't use either -no-pie or -nopie
    	if err != nil && bytes.Contains(out, []byte("unrecognized")) {
    		ccArgs = append(cc, "-o", exe, "main5.c", "libgo2.a")
    		out, err = exec.Command(ccArgs[0], ccArgs[1:]...).CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. src/cmd/doc/main.go

    	fmt.Fprintf(os.Stderr, "Flags:\n")
    	flag.PrintDefaults()
    	os.Exit(2)
    }
    
    func main() {
    	log.SetFlags(0)
    	log.SetPrefix("doc: ")
    	telemetry.Start()
    	dirsInit()
    	err := do(os.Stdout, flag.CommandLine, os.Args[1:])
    	if err != nil {
    		log.Fatal(err)
    	}
    }
    
    // do is the workhorse, broken out of main to make testing easier.
    func do(writer io.Writer, flagSet *flag.FlagSet, args []string) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/main.go

    // license that can be found in the LICENSE file.
    
    // The gen command generates Go code (in the parent directory) for all
    // the architecture-specific opcodes, blocks, and rewrites.
    package main
    
    import (
    	"bytes"
    	"flag"
    	"fmt"
    	"go/format"
    	"log"
    	"math/bits"
    	"os"
    	"path"
    	"regexp"
    	"runtime"
    	"runtime/pprof"
    	"runtime/trace"
    	"sort"
    	"strings"
    	"sync"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. misc/go_android_exec/main.go

    //go:build darwin || dragonfly || freebsd || illumos || linux || netbsd || openbsd
    
    // This program can be used as go_android_GOARCH_exec by the Go tool.
    // It executes binaries on an android device using adb.
    package main
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"log"
    	"os"
    	"os/exec"
    	"os/signal"
    	"path"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"syscall"
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcshared/cshared_test.go

    	if GOOS == "darwin" || GOOS == "ios" {
    		linkFlags = ""
    	}
    
    	runCC(t, "-o", cmd, "main2.c", linkFlags, libname)
    
    	defer os.Remove(libname)
    	defer os.Remove(bin)
    
    	out := runExe(t, []string{"LD_LIBRARY_PATH=."}, bin)
    
    	if strings.TrimSpace(out) != "PASS" {
    		t.Error(out)
    	}
    }
    
    // test3: tests main.main is exported on android.
    func TestMainExportedOnAndroid(t *testing.T) {
    	globalSkip(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

                  files=".*[/\\]stdlib-java-extensions[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\][^/\\]+"/>
        <suppress checks="JavadocPackage"
                  files=".*[/\\]model-core[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\][^/\\]+"/>
        <suppress checks="JavadocPackage"
                  files=".*[/\\]core[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\][^/\\]+"/>
        <suppress checks="JavadocPackage"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                        }
                    """
                )
                withDirectory("v1/src/main").v1()
                withDirectory("v2/src/main").v2()
                val sourceRoots = if (File(withDirectory("v2/src/main"), "java").exists()) {
                    "v2/src/main/java"
                } else {
                    "v2/src/main/kotlin"
                }
                withDirectory("binary-compatibility").apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testplugin/plugin_test.go

    func TestDWARFSections(t *testing.T) {
    	// test that DWARF sections are emitted for plugins and programs importing "plugin"
    	globalSkip(t)
    	goCmd(t, "run", "./checkdwarf/main.go", "plugin2.so", "plugin2.UnexportedNameReuse")
    	goCmd(t, "run", "./checkdwarf/main.go", "./host.exe", "main.main")
    }
    
    func TestBuildID(t *testing.T) {
    	// check that plugin has build ID.
    	globalSkip(t)
    	b := goCmd(t, "tool", "buildid", "plugin1.so")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

                        buildKtSourceModule {
                            addSourceRoot(testDataPath(root).resolve("main"))
                            addRegularDependency(main)
                            platform = JvmPlatforms.defaultJvmPlatform
                            moduleName = "main"
                        }
                    )
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. src/cmd/cover/cover_test.go

    	// will not normalize the trailing / to a \ on Windows.
    	srcPath := t.TempDir() + string(filepath.Separator) + "\npackage main\nfunc main() { panic(string([]rune{'u', 'h', '-', 'o', 'h'}))\n/*/main.go"
    	mainSrc := ` package main
    
    func main() {
    	/* nothing here */
    	println("ok")
    }
    `
    	if err := os.MkdirAll(filepath.Dir(srcPath), 0777); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top