Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for filemode (0.17 sec)

  1. cmd/admin-handlers.go

    	}
    
    	return loggerInfo, auditloggerInfo
    }
    
    func embedFileInZip(zipWriter *zip.Writer, name string, data []byte, fileMode os.FileMode) error {
    	// Send profiling data to zip as file
    	header, zerr := zip.FileInfoHeader(dummyFileInfo{
    		name:    name,
    		size:    int64(len(data)),
    		mode:    fileMode,
    		modTime: UTCNow(),
    		isDir:   false,
    		sys:     nil,
    	})
    	if zerr != nil {
    		return zerr
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    		// if Pod is not using host network, create a managed hosts file with Pod IP and other information.
    		hostsFileContent = managedHostsFileContent(hostIPs, hostName, hostDomainName, hostAliases)
    	}
    
    	hostsFilePerm := os.FileMode(0644)
    	if err := os.WriteFile(fileName, hostsFileContent, hostsFilePerm); err != nil {
    		return err
    	}
    	return os.Chmod(fileName, hostsFilePerm)
    }
    
    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/internal/work/exec.go

    		a.built = a1.built
    		return nil
    	}
    	if err := AllowInstall(a); err != nil {
    		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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	defer afterTest(t)
    	testCases := []struct{ siteMode, proxyMode testMode }{
    		{http1Mode, http1Mode},
    		{http1Mode, https1Mode},
    		{https1Mode, http1Mode},
    		{https1Mode, https1Mode},
    	}
    	for _, testCase := range testCases {
    		siteMode := testCase.siteMode
    		proxyMode := testCase.proxyMode
    		t.Run(fmt.Sprintf("site=%v/proxy=%v", siteMode, proxyMode), func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func CreateNamedPipe(name *uint16, flags uint32, pipeMode uint32, maxInstances uint32, outSize uint32, inSize uint32, defaultTimeout uint32, sa *SecurityAttributes) (handle Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top