Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Coptic (0.17 sec)

  1. src/cmd/go/alldocs.go

    //	testflag        testing flags
    //	testfunc        testing functions
    //	vcs             controlling version control with GOVCS
    //
    // Use "go help <topic>" for more information about that topic.
    //
    // # Start a bug report
    //
    // Usage:
    //
    //	go bug
    //
    // Bug opens the default browser and starts a new bug report.
    // The report includes useful system information.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/net/http/server.go

    // looks like it might've been a misdirected plaintext HTTP request.
    func tlsRecordHeaderLooksLikeHTTP(hdr [5]byte) bool {
    	switch string(hdr[:]) {
    	case "GET /", "HEAD ", "POST ", "PUT /", "OPTIO":
    		return true
    	}
    	return false
    }
    
    // MaxBytesHandler returns a [Handler] that runs h with its [ResponseWriter] and [Request.Body] wrapped by a MaxBytesReader.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    			break
    		}
    	}
    }
    
    // chipfloat7() checks if the immediate constants available in  FMOVS/FMOVD instructions.
    // For details of the range of constants available, see
    // http://infocenter.arm.com/help/topic/com.arm.doc.dui0473m/dom1359731199385.html.
    func (c *ctxt7) chipfloat7(e float64) int {
    	ei := math.Float64bits(e)
    	l := uint32(int32(ei))
    	h := uint32(int32(ei >> 32))
    
    	if l != 0 || h&0xffff != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top