Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 297 for panning (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/svg.go

    	graphID  = regexp.MustCompile(`<g id="graph\d"`)
    	svgClose = regexp.MustCompile(`</svg>`)
    )
    
    // massageSVG enhances the SVG output from DOT to provide better
    // panning inside a web browser. It uses the svgpan library, which is
    // embedded into the svgpan.JSSource variable.
    func massageSVG(svg string) string {
    	// Work around for dot bug which misses quoting some ampersands,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

     * ======================
     *
     * Given an unique existing element with id "viewport" (or when missing, the 
     * first g-element), including the the library into any SVG adds the following 
     * capabilities:
     *
     *  - Mouse panning
     *  - Mouse zooming (using the wheel)
     *  - Object dragging
     *
     * You can configure the behaviour of the pan/zoom/drag with the variables
     * listed in the CONFIGURATION section of this file.
     *
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      let mode = IDLE;
    
      // State needed to implement zooming.
      let currentScale = 1.0;
      const initWidth = svg.viewBox.baseVal.width;
      const initHeight = svg.viewBox.baseVal.height;
    
      // State needed to implement panning.
      let panLastX = 0;      // Last event X coordinate
      let panLastY = 0;      // Last event Y coordinate
      let moved = false;     // Have we seen significant movement
      let touchid = null;    // Current touch identifier
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    			return fmt.Errorf("failed to execute dot. Is Graphviz installed? Error: %v", err)
    		}
    		return nil
    	}
    }
    
    // massageDotSVG invokes the dot tool to generate an SVG image and alters
    // the image to have panning capabilities when viewed in a browser.
    func massageDotSVG() PostProcessor {
    	generateSVG := invokeDot("svg")
    	return func(input io.Reader, output io.Writer, ui plugin.UI) error {
    		baseSVG := new(bytes.Buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Running.kt

    Rodrigo B. de Oliveira <******@****.***> 1716386557 -0300
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 20:48:51 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/running.proxycfg

    Rama Chavali <******@****.***> 1671589100 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 483 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/pruning.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_translate -output-arrays=mul,exp,div --experimental-prune-unreachable-nodes-unconditionally --tflite-flatbuffer-to-mlir - -o - | FileCheck %s
    // Confirm graph pruning.
    
    func.func @main(tensor<4xf32>) -> tensor<4xf32> {
    ^bb0(%arg0: tensor<4xf32>):
      %0 = "tfl.pseudo_const" () {value = dense<1.0> : tensor<4xf32>} : () -> tensor<4xf32> loc("Const")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:35:24 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/filters/warning.go

    	"k8s.io/apiserver/pkg/warning"
    )
    
    // WithWarningRecorder attaches a deduplicating k8s.io/apiserver/pkg/warning#WarningRecorder to the request context.
    func WithWarningRecorder(handler http.Handler) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		recorder := &recorder{writer: w}
    		req = req.WithContext(warning.WithWarningRecorder(req.Context(), recorder))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/warning/warning.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package warning
    
    import (
    	restful "github.com/emicklei/go-restful/v3"
    
    	"k8s.io/apiserver/pkg/warning"
    )
    
    // AddWarningsHandler returns a handler that adds the provided warnings to all requests,
    // then delegates to the provided handler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 09 18:11:41 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt

     *
     * ## Warning: Certificate Pinning is Dangerous!
     *
     * Pinning certificates limits your server team's abilities to update their TLS certificates. By
     * pinning certificates, you take on additional operational complexity and limit your ability to
     * migrate between certificate authorities. Do not use certificate pinning without the blessing of
     * your server's TLS administrator!
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top