Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pkgFiles (0.13 sec)

  1. src/cmd/compile/internal/types2/stdlib_test.go

    		w.errh(err)
    		return
    	}
    
    	// apply pkgh to the files in directory dir
    
    	// Don't get test files as these packages are imported.
    	pkgFiles, err := pkgFilenames(dir, false)
    	if err != nil {
    		w.errh(err)
    		return
    	}
    	if pkgFiles != nil {
    		w.pkgh(dir, pkgFiles)
    	}
    
    	// traverse subdirectories, but don't walk into testdata
    	for _, f := range files {
    		if f.IsDir() && f.Name() != "testdata" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/go/types/stdlib_test.go

    		w.errh(err)
    		return
    	}
    
    	// apply pkgh to the files in directory dir
    
    	// Don't get test files as these packages are imported.
    	pkgFiles, err := pkgFilenames(dir, false)
    	if err != nil {
    		w.errh(err)
    		return
    	}
    	if pkgFiles != nil {
    		w.pkgh(dir, pkgFiles)
    	}
    
    	// traverse subdirectories, but don't walk into testdata
    	for _, f := range files {
    		if f.IsDir() && f.Name() != "testdata" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/certs_test.go

    	publicKey := key.Public()
    
    	var tests = []struct {
    		name           string
    		files          certstestutil.PKIFiles
    		expectedErrors int
    	}{
    		{
    			name: "success",
    			files: certstestutil.PKIFiles{
    				"ca.crt":             caCert,
    				"ca.key":             caKey,
    				"front-proxy-ca.crt": caCert,
    				"front-proxy-ca.key": caKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. ci/devinfra/docker_windows/Dockerfile

        msys 'pacman --noconfirm -Syy flex gawk gcc-libs grep gzip inetutils info'; \
        msys 'pacman --noconfirm -Syy less lndir mintty ncurses pactoys-git patch'; \
        msys 'pacman --noconfirm -Syy pax-git pkgfile rebase sed tar tftp-hpa time tzcode util-linux which'; \
        $old_path = [Environment]::GetEnvironmentVariable(\"PATH\", \"Machine\"); \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top