Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for taskname (0.21 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. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    String[] getDefaultExcludes(); public static java.util.List getDefaultExcludesAs(); public static String byteCountToDisplaySi(int); public static String dirname(String); public static String filename(String); public static String basename(String); public static String basename(String, String); public static String extension(String); public static boolean fileExists(String); public static String fileRead(String) throws java.io.IOException; public static String fileRead(java.io.File) throws java.io.IOException;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "cachingMode": {
              "description": "Host Caching mode: None, Read Only, Read Write.",
              "type": "string"
            },
            "diskName": {
              "description": "The Name of the data disk in the blob storage",
              "type": "string"
            },
            "diskURI": {
              "description": "The URI the data disk in the blob storage",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top