- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 220 for Govett (0.67 sec)
-
LICENSE
MIT License Copyright (c) 2017-present Devon Govett Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
Plain Text - Registered: 2023-03-19 11:31 - Last Modified: 2018-01-01 01:43 - 1.1K bytes - Viewed (0) -
LICENSES/MIT.txt
---------- beep: https://github.com/mscdex/beepjs ---------- Copyright Brian White. All rights reserved. ---------- browserify-zlib: https://github.com/devongovett/browserify-zlib ---------- Devon Govett <******@****.***> ---------- buffer: https://github.com/feross/buffer/ ---------- Copyright (c) Feross Aboukhadijeh, and other contributors. ----------
Plain Text - Registered: 2023-03-15 22:11 - Last Modified: 2020-02-25 20:47 - 27.7K bytes - Viewed (0) -
cmd/moveto/moveto.go
// Package moveto provides the moveto command. package moveto import ( "context" "github.com/rclone/rclone/cmd" "github.com/rclone/rclone/fs/operations" "github.com/rclone/rclone/fs/sync" "github.com/spf13/cobra" ) func init() { cmd.Root.AddCommand(commandDefinition) } var commandDefinition = &cobra.Command{ Use: "moveto source:path dest:path", Short: `Move file or directory from source to dest.`, Long: `
Go - Registered: 2023-02-06 07:43 - Last Modified: 2022-12-03 17:58 - 1.9K bytes - Viewed (0) -
docs/content/commands/rclone_moveto.md
--- title: "rclone moveto" description: "Move file or directory from source to dest." slug: rclone_moveto url: /commands/rclone_moveto/ versionIntroduced: v1.35 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/moveto/ and as part of making a release run "make commanddocs" --- # rclone moveto Move file or directory from source to dest. ## Synopsis If source:path is a file or directory then it moves it to a file or
Plain Text - Registered: 2023-02-06 07:43 - Last Modified: 2022-12-20 17:16 - 1.6K bytes - Viewed (0) -
AUTHORS
Kip Gebhardt <******@****.***> Stefan Rusu <******@****.***> Shigeki Ohtsu <******@****.***> Wojciech Wnętrzak <******@****.***> Vyacheslav Egorov <******@****.***> Devon Govett <******@****.***> Steve Engledow <******@****.***> Pierre-Alexandre St-Jean <******@****.***> Reid Burke <******@****.***> Vicente Jimenez Aguilar <******@****.***>
Plain Text - Registered: 2023-03-14 21:40 - Last Modified: 2022-06-12 05:54 - 128.7K bytes - Viewed (4) -
dev/benchmarks/macrobenchmarks/lib/src/web/bench_paths_recording.dart
_runPathTest(path1); gFillType = path1.fillType; allPaths.add(path1); } void pathOps2() { final Path path2 = Path(); path2.moveTo(20, 60); path2.quadraticBezierTo(60, 20, 60, 60); path2.close(); path2.moveTo(60, 20); path2.quadraticBezierTo(60, 60, 20, 60); gBounds = path2.getBounds(); gBounds = path2.getBounds(); gBounds = path2.getBounds();
Plain Text - Registered: 2023-03-17 06:24 - Last Modified: 2021-10-08 16:25 - 152.3K bytes - Viewed (0) -
plugins/flot/plugins/jquery.flot.symbol.js
var size = radius * Math.sqrt(Math.PI) / 2; ctx.moveTo(x - size, y - size); ctx.lineTo(x + size, y + size); ctx.moveTo(x - size, y + size); ctx.lineTo(x + size, y - size); }, ellipse = function(ctx, x, y, radius, shadow, fill) { if (!shadow) { ctx.moveTo(x + radius, y); ctx.arc(x, y, radius, 0, Math.PI * 2, false);
JavaScript - Registered: 2023-03-13 07:18 - Last Modified: 2020-07-24 20:13 - 3.3K bytes - Viewed (0) -
docs/apis/canvas/CanvasContext.md
ctx.beginPath() ctx.moveTo(10, 10) ctx.lineTo(150, 10) ctx.stroke() ctx.beginPath() ctx.setLineWidth(5) ctx.moveTo(10, 30) ctx.lineTo(150, 30) ctx.stroke() ctx.beginPath() ctx.setLineWidth(10) ctx.moveTo(10, 50) ctx.lineTo(150, 50) ctx.stroke() ctx.beginPath() ctx.setLineWidth(15) ctx.moveTo(10, 70) ctx.lineTo(150, 70) ctx.stroke()
Plain Text - Registered: 2023-03-13 22:59 - Last Modified: 2020-02-17 09:02 - 45.6K bytes - Viewed (0) -
dev/benchmarks/macrobenchmarks/lib/src/cubic_bezier.dart
final Path path = Path(); path.moveTo(100.0, 97.0); for (final Point point in points) { path.lineTo(point.x, point.y); } final Path bezier2Path = Path(); bezier2Path.moveTo(0.0, 70.55); for (final Point p in pointList[1]) { bezier2Path.lineTo(p.x, p.y); } final Path bezier3Path = Path(); bezier3Path.moveTo(0.0, 69.48);
Plain Text - Registered: 2023-03-17 06:24 - Last Modified: 2023-02-02 19:33 - 10.1K bytes - Viewed (0) -
src/helpers/helpers.canvas.ts
yOffsetW = Math.sin(rad) * (w ? w / 2 : radius); ctx.moveTo(x - xOffsetW, y - yOffset); ctx.lineTo(x + xOffsetW, y + yOffset); ctx.moveTo(x + yOffsetW, y - xOffset); ctx.lineTo(x - yOffsetW, y + xOffset); break; case 'line': xOffset = w ? w / 2 : Math.cos(rad) * radius; yOffset = Math.sin(rad) * radius; ctx.moveTo(x - xOffset, y - yOffset);
Plain Text - Registered: 2023-03-19 10:25 - Last Modified: 2023-02-15 14:26 - 14.5K bytes - Viewed (0)