github.com/slspeek/camlistore_namedsearch@v0.0.0-20140519202248-ed6f70f7721a/third_party/bazil.org/fuse/LICENSE (about) 1 Copyright (c) 2013, 2014 Tommi Virtanen. 2 Copyright (c) 2009, 2011, 2012 The Go Authors. 3 All rights reserved. 4 5 Redistribution and use in source and binary forms, with or without 6 modification, are permitted provided that the following conditions are 7 met: 8 9 * Redistributions of source code must retain the above copyright 10 notice, this list of conditions and the following disclaimer. 11 * Redistributions in binary form must reproduce the above 12 copyright notice, this list of conditions and the following disclaimer 13 in the documentation and/or other materials provided with the 14 distribution. 15 * Neither the name of Google Inc. nor the names of its 16 contributors may be used to endorse or promote products derived from 17 this software without specific prior written permission. 18 19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 20 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 21 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 23 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 24 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 25 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 26 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 31 32 33 The following included software components have additional copyright 34 notices and license terms that may differ from the above. 35 36 37 File fuse.go: 38 39 // Adapted from Plan 9 from User Space's src/cmd/9pfuse/fuse.c, 40 // which carries this notice: 41 // 42 // The files in this directory are subject to the following license. 43 // 44 // The author of this software is Russ Cox. 45 // 46 // Copyright (c) 2006 Russ Cox 47 // 48 // Permission to use, copy, modify, and distribute this software for any 49 // purpose without fee is hereby granted, provided that this entire notice 50 // is included in all copies of any software which is or includes a copy 51 // or modification of this software and in all copies of the supporting 52 // documentation for such software. 53 // 54 // THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED 55 // WARRANTY. IN PARTICULAR, THE AUTHOR MAKES NO REPRESENTATION OR WARRANTY 56 // OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS 57 // FITNESS FOR ANY PARTICULAR PURPOSE. 58 59 60 File mount_darwin.go: 61 62 // Adapted from Plan 9 from User Space's src/cmd/9pfuse/fuse.c, 63 // which carries this notice: 64 // 65 // The files in this directory are subject to the following license. 66 // 67 // The author of this software is Russ Cox. 68 // 69 // Copyright (c) 2006 Russ Cox 70 // 71 // Permission to use, copy, modify, and distribute this software for any 72 // purpose without fee is hereby granted, provided that this entire notice 73 // is included in all copies of any software which is or includes a copy 74 // or modification of this software and in all copies of the supporting 75 // documentation for such software. 76 // 77 // THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED 78 // WARRANTY. IN PARTICULAR, THE AUTHOR MAKES NO REPRESENTATION OR WARRANTY 79 // OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS 80 // FITNESS FOR ANY PARTICULAR PURPOSE. 81 82 83 File fuse_kernel.go: 84 85 // Derived from FUSE's fuse_kernel.h 86 /* 87 This file defines the kernel interface of FUSE 88 Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu> 89 90 91 This -- and only this -- header file may also be distributed under 92 the terms of the BSD Licence as follows: 93 94 Copyright (C) 2001-2007 Miklos Szeredi. All rights reserved. 95 96 Redistribution and use in source and binary forms, with or without 97 modification, are permitted provided that the following conditions 98 are met: 99 1. Redistributions of source code must retain the above copyright 100 notice, this list of conditions and the following disclaimer. 101 2. Redistributions in binary form must reproduce the above copyright 102 notice, this list of conditions and the following disclaimer in the 103 documentation and/or other materials provided with the distribution. 104 105 THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND 106 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 107 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 108 ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE 109 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 110 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 111 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 112 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 113 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 114 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 115 SUCH DAMAGE. 116 */