Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Tperm (0.03 sec)

  1. src/cmd/go/internal/work/exec.go

    		return err
    	}
    
    	if err := sh.Mkdir(a.Objdir); err != nil {
    		return err
    	}
    
    	perm := fs.FileMode(0666)
    	if a1.Mode == "link" {
    		switch cfg.BuildBuildmode {
    		case "c-archive", "c-shared", "plugin":
    		default:
    			perm = 0777
    		}
    	}
    
    	// make target directory
    	dir, _ := filepath.Split(a.Target)
    	if dir != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    				// later auto-create it with the incorrect mode 0750
    				// Make extra care not to escape the volume!
    				perm, err := hu.GetMode(volumePath)
    				if err != nil {
    					return nil, cleanupAction, err
    				}
    				if err := subpather.SafeMakeDir(subPath, volumePath, perm); err != nil {
    					// Don't pass detailed error back to the user because it could give information about host filesystem
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //		// Output: The output of
    //		// this example.
    //	}
    //
    // Here is another example where the ordering of the output is ignored:
    //
    //	func ExamplePerm() {
    //		for _, value := range Perm(4) {
    //			fmt.Println(value)
    //		}
    //
    //		// Unordered output: 4
    //		// 2
    //		// 1
    //		// 3
    //		// 0
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top