Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for taskname (0.14 sec)

  1. src/net/http/server.go

    }
    
    var (
    	uniqNameMu   sync.Mutex
    	uniqNameNext = make(map[string]int)
    )
    
    func newLoggingConn(baseName string, c net.Conn) net.Conn {
    	uniqNameMu.Lock()
    	defer uniqNameMu.Unlock()
    	uniqNameNext[baseName]++
    	return &loggingConn{
    		name: fmt.Sprintf("%s-%d", baseName, uniqNameNext[baseName]),
    		Conn: c,
    	}
    }
    
    func (c *loggingConn) Write(p []byte) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

    }
    
    # Copy a release tar and its accompanying hash.
    function copy-to-staging() {
      local -r staging_path=$1
      local -r gs_url=$2
      local -r tar=$3
      local -r hash=$4
      local -r basename_tar=$(basename "${tar}")
    
      #check whether this tar alread exists and has the same hash
      #if it matches, then don't bother uploading it again
    
      #remote_tar_md5 checks the remote location for the existing tarball and its md5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetModuleBaseName(process Handle, module Handle, baseName *uint16, size uint32) (err error) {
    	r1, _, e1 := syscall.Syscall6(procGetModuleBaseNameW.Addr(), 4, uintptr(process), uintptr(module), uintptr(unsafe.Pointer(baseName)), uintptr(size), 0, 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    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