http_archive( name = "pybind11", build_file = "//:pybind11-BUILD.bazel", strip_prefix = "pybind11-%s" % version, urls = ["https://github.com/pybind/pybind11/archive/v%s.zip" % version], ) doesn't pass a sha256 or integrity attr. Would be nice to improve this :)lal...
Message update. * rs/archive-with-attr-pathspec-fix: archive: fix misleading error messagemaster v2.47.0 gitster committed Oct 4, 2024 2 parents 4861bbf + bebf0e2 commit 12841c4 Showing 1 changed file with 2 additions and 1 deletion. Whitespace Ignore whitespace Split Unified 3...
make[1]: Entering directory '/root/attr-2.4.47/test' *** attr.test *** Unescaped left brace in regex is illegal here in regex; marked by <-- HERE in m/%{ <-- HERE (\w+)}/ at run line 87. make[1]: *** [Makefile:40: attr.test] Error 255 make[1]: Leaving directory '...
+ * Driver shall not modify the IEs specified through %NL80211_ATTR_IE if + * %NL80211_ATTR_MAC is included. However, if %NL80211_ATTR_MAC_HINT is + * included, these IEs through %NL80211_ATTR_IE are specified by the user + * space based on the best possible BSS selected. Thus,...
I’m deploying to a Glassfish 3.1.2.2 environment which has a JDBC connection pool used by the application. The JDBC connection pool has a checkbox (off by default) called, “Non-Transactional Connections”. Can anyone shed some light on the relationship of this setting and TransactionAttribute...
@@ -217,8 +217,6 @@ static struct dentry *unionfs_lookup(struct inode *parent, unionfs_postcopyup_release(dentry); } unionfs_copy_attr_times(dentry->d_inode); - /* parent times may have changed */ - unionfs_copy_attr_times(dentry->d_parent->d_inode); ...
> struct device_attribute *attr, const char *buf, size_t count) > { > struct Scsi_Host *shost = class_to_shost(cdev); > @@ -3232,7 +3232,7 @@ megasas_fw_crash_state_store(struct device *cdev, > } > > static ssize_t ...
The structure omap_mmu_dev_attr was used in the hwmod data for supplying device-specific data through the .dev_attr field and used in constructing the platform data for legacy device creation. The legacy device creation of OMAP IOMMU devices has been cleaned ...
> Subject: Re: device attr cleanup > > On 12/23/2015 04:31 PM, J. Bruce Fields wrote: > > On Thu, Dec 10, 2015 at 07:49:59PM -0500, Chuck Lever wrote: > >> > >>> On Dec 10, 2015, at 6:30 PM, Christoph Hellwig <h...@infradead.org> wrote: ...
@@ -237,8 +237,14 @@ void unionfs_copy_attr_times(struct inode *upper) int bindex; struct inode *lower; - if (!upper || ibstart(upper) < 0) + if (!upper) return; + if (ibstart(upper) < 0) { +#ifdef CONFIG_UNION_FS_DEBUG ...