Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for pkgFiles (0.1 sec)

  1. cmd/kubeadm/app/util/certs/util.go

    			Files: PKIFiles{
    				"front-proxy-client.crt": fpCert,
    				"front-proxy-client.key": fpKey,
    			},
    			ExpectError: true,
    		},
    	}
    }
    
    // PKIFiles are a list of files that should be created for a test case
    type PKIFiles map[string]interface{}
    
    // WritePKIFiles writes the given files out to the given directory
    func WritePKIFiles(t *testing.T, dir string, files PKIFiles) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/build_test.go

    		t.Skip("skipping: Chmod ignored ModeSetgid on " + runtime.GOOS)
    	}
    
    	pkgfile, err := os.CreateTemp("", "pkgfile")
    	if err != nil {
    		t.Fatalf("os.CreateTemp(\"\", \"pkgfile\"): %v", err)
    	}
    	defer os.Remove(pkgfile.Name())
    	defer pkgfile.Close()
    
    	dirGIDFile := filepath.Join(setgiddir, "setgid")
    	if err := sh.moveOrCopyFile(dirGIDFile, pkgfile.Name(), 0666, true); err != nil {
    		t.Fatalf("moveOrCopyFile: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. 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