Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 130 for goFiles (0.17 sec)

  1. src/cmd/cgo/doc.go

    to auto-update code from Go 1.14 and earlier:
    
    	go tool fix -r eglconf <pkg>
    
    # Using cgo directly
    
    Usage:
    
    	go tool cgo [cgo options] [-- compiler options] gofiles...
    
    Cgo transforms the specified input Go source files into several output
    Go and C source files.
    
    The compiler options are passed through uninterpreted when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    			Actor:      work.ActorFunc(builderPrintTest),
    			Deps:       []*work.Action{cleanAction},
    			Package:    p,
    			IgnoreFail: true, // print even if test failed
    		}
    	}
    
    	if len(ptest.GoFiles)+len(ptest.CgoFiles) > 0 {
    		addTestVet(b, ptest, vetRunAction, installAction)
    	}
    	if pxtest != nil {
    		addTestVet(b, pxtest, vetRunAction, installAction)
    	}
    
    	if installAction != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/index_test.go

    	p := importRaw(path, ".")
    
    	wantFiles := []string{"a.syso", "b.go", "c.c"}
    
    	var gotFiles []string
    	for i := range p.sourceFiles {
    		gotFiles = append(gotFiles, p.sourceFiles[i].name)
    	}
    
    	if !reflect.DeepEqual(gotFiles, wantFiles) {
    		t.Errorf("names of files in importRaw(testdata/ignore_non_source): got %v; want %v",
    			gotFiles, wantFiles)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 23:35:08 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/link/elf_test.go

    	testenv.MustHaveGoBuild(t)
    
    	t.Parallel()
    
    	goFile := filepath.Join(t.TempDir(), "notes.go")
    	if err := os.WriteFile(goFile, []byte(goSource), 0444); err != nil {
    		t.Fatal(err)
    	}
    	outFile := filepath.Join(t.TempDir(), "notes.exe")
    	goTool := testenv.GoToolPath(t)
    
    	cmd := testenv.Command(t, goTool, "build", "-o", outFile, "-ldflags", "-buildid 0x1234 -B gobuildid", goFile)
    	cmd.Dir = t.TempDir()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. src/runtime/env_plan9.go

    		env := make([]byte, len(name)+r)
    		copy(env, name)
    		copy(env[len(name):], buf[:r])
    		envs = append(envs, string(env))
    	})
    }
    
    // dofiles reads the directory opened with file descriptor fd, applying function f
    // to each filename in it.
    //
    //go:nosplit
    func dofiles(dirfd int32, f func([]byte)) {
    	dirbuf := new([dirBufSize]byte)
    
    	var off int64 = 0
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 02:39:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaPlatformIntegTest.groovy

            then:
            javaPlatform.assertPublished()
            javaPlatform.assertNoDependencies()
    
            and:
            resolveArtifacts(javaPlatform) { noFiles() }
            resolveApiArtifacts(javaPlatform) { noFiles() }
            resolveRuntimeArtifacts(javaPlatform) { noFiles() }
        }
    
        def "can publish java-platform with constraints"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top