Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for plothover (0.92 sec)

  1. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

            function hoverOnExecutionGraph(event, pos, item) {
                $('#tooltip').html(item.datapoint[1] + " " + unit).css({top: item.pageY - 30, left: item.pageX + 10}).show();
            }
    
            $('#' + chartId).bind('plothover', function (event, pos, item) {
                if (!item) {
                    $('#tooltip').hide();
                } else if (executionLabels) {
                    hoverOnHistoryGraph(event, pos, item);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/call.go

    		},
    		ProxyProtocolVersion: getProxyProtoVersion(opts.ProxyProtocolVersion),
    	}
    }
    
    func getProxyProtoVersion(protoVer int) proto.ProxyProtoVersion {
    	if protoVer == 1 {
    		return proto.ProxyProtoVersion_V1
    	} else if protoVer == 2 {
    		return proto.ProxyProtoVersion_V2
    	}
    
    	return proto.ProxyProtoVersion_NONE
    }
    
    func getProtoALPN(alpn []string) *proto.Alpn {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top