Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 119 for goFiles (0.33 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    					decl.Recv = nil
    				}
    			}
    			decls = append(decls, decl)
    		}
    		f.Decls = decls
    		if debug {
    			format.Node(os.Stderr, fset, f) // debugging
    		}
    		cgoFiles = append(cgoFiles, f)
    	}
    	if cgoFiles == nil {
    		return nil, nil, nil // nothing to do (can't happen?)
    	}
    
    	// Type-check the synthetic files.
    	tc := &types.Config{
    		FakeImportC: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonStarter.java

                builder.applicationClasspath(classPathRegistry.getClassPath("MINIMUM_WORKER_RUNTIME").getAsFiles());
                builder.useApplicationClassloaderOnly();
                builder.applicationClasspath(toFiles(flatClassLoaderStructure.getSpec()));
            } else {
                builder.applicationClasspath(classPathRegistry.getClassPath("CORE_WORKER_RUNTIME").getAsFiles());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ArtifactResolutionExpectationSpec.groovy

         * @param fileNames
         */
        void expectFiles(String... fileNames) {
            always {
                expectFiles(fileNames as List<String>)
            }
        }
    
        void noFiles() {
            always {
                noFiles()
            }
        }
    
        /**
         * Short-hand notation for expecting a list of files independently of the fact module metadata is used or not
         * @param fileNames
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/crypto/tls/link_test.go

    		// That currently brings in the client via Conn.handleRenegotiation.
    
    	}
    	tmpDir := t.TempDir()
    	goFile := filepath.Join(tmpDir, "x.go")
    	exeFile := filepath.Join(tmpDir, "x.exe")
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if err := os.WriteFile(goFile, []byte(tt.program), 0644); err != nil {
    				t.Fatal(err)
    			}
    			os.Remove(exeFile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top