Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 130 for goFiles (0.27 sec)

  1. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    	if err != nil {
    		t.Fatalf("opening %s: %v", gopath, err)
    	}
    	golines := strings.Split(string(content), "\n")
    
    	// Preserve copyright.
    	ues.newgolines = append(ues.newgolines, golines[:4]...)
    	if !strings.HasPrefix(golines[0], "// Copyright") {
    		t.Fatalf("missing copyright from existing testcase")
    	}
    	golines = golines[4:]
    
    	clore := regexp.MustCompile(`.+\.func\d+[\.\d]*$`)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. src/math/big/link_test.go

    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	t.Parallel()
    	tmp := t.TempDir()
    	goBin := testenv.GoToolPath(t)
    	goFile := filepath.Join(tmp, "x.go")
    	file := []byte(`package main
    import _ "math/big"
    func main() {}
    `)
    	if err := os.WriteFile(goFile, file, 0644); err != nil {
    		t.Fatal(err)
    	}
    	cmd := exec.Command(goBin, "build", "-o", "x.exe", "x.go")
    	cmd.Dir = tmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 24 15:51:26 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

            rootXcodeWorkspace.contentFile.assertHasProjects("${rootProjectName}.xcodeproj", 'app/app.xcodeproj', 'cppGreeter/cppGreeter.xcodeproj', 'hello/hello.xcodeproj')
    
            def appSwiftIncludeDirs = toFiles(xcodeProject("app/app.xcodeproj").projectFile.indexTarget.getBuildSettings().SWIFT_INCLUDE_PATHS)
            appSwiftIncludeDirs.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/generate.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test go generate variable substitution.
    
    //go:generate echo $GOARCH $GOFILE:$GOLINE ${GOPACKAGE}abc xyz$GOPACKAGE/$GOFILE/123
    
    package p
    -- generate/flag.go --
    // Copyright 2015 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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 03:24:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/generate_env.txt

    [GOOS:plan9] env path=$GOBIN${:}$path
    [!GOOS:plan9] env PATH=$GOBIN${:}$PATH
    
    # Test generators have access to the environment
    go generate ./printenv.go
    stdout '^GOARCH='$GOARCH
    stdout '^GOOS='$GOOS
    stdout '^GOFILE='
    stdout '^GOLINE='
    stdout '^GOPACKAGE='
    stdout '^DOLLAR='
    
    -- env.go --
    package main
    
    import (
    	"fmt"
    	"os"
    )
    
    func main() {
    	for _, v := range os.Environ() {
    		fmt.Println(v)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 554 bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/importer_test.go

    			continue
    		}
    
    		gofile := filepath.Join("testdata", test.pkgpath+".go")
    		if _, err := os.Stat(gofile); os.IsNotExist(err) {
    			continue
    		}
    		ofile := filepath.Join(tmpdir, test.pkgpath+".o")
    		afile := filepath.Join(artmpdir, "lib"+test.pkgpath+".a")
    
    		cmd := testenv.Command(t, gpath, "-fgo-pkgpath="+test.pkgpath, "-c", "-o", ofile, gofile)
    		out, err := cmd.CombinedOutput()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/SingleArtifactResolutionResultSpec.groovy

        void expectFiles(String... fileNames) {
            expectFiles(fileNames as List<String>)
        }
    
        void expectFiles(List<String> fileNames) {
            expectedFileNames = fileNames.sort()
        }
    
        void noFiles() {
            expectedFileNames = []
        }
    
        void shouldFail(@DelegatesTo(value = ExecutionFailure, strategy = Closure.DELEGATE_FIRST) Closure<?> onFailure) {
            expectSuccess = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/slashpath.txt

    # This is important for reproducing native builds with cross-compiled builds.
    go build -o hello.exe hello.go
    ! grep 'GOROOT\\' hello.exe
    ! grep '\\runtime' hello.exe
    ! grep 'runtime\\' hello.exe
    ! grep 'gofile..[A-Za-z]:\\' hello.exe
    
    -- hello.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 23:10:31 UTC 2023
    - 596 bytes
    - Viewed (0)
  9. internal/grid/grid_types_test.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package grid
    
    //go:generate msgp -unexported -file=$GOFILE -tests=false -o=grid_types_msgp_test.go
    
    type testRequest struct {
    	Num    int
    	String string
    }
    
    type testResponse struct {
    	OrgNum    int
    	OrgString string
    	Embedded  testRequest
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. cmd/storage-rest-common.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    //go:generate msgp -file $GOFILE -unexported
    
    const (
    	storageRESTVersion       = "v58" // Change VerifyFile signature
    	storageRESTVersionPrefix = SlashSeparator + storageRESTVersion
    	storageRESTPrefix        = minioReservedBucketPath + "/storage"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top