Displaying 9 results from an estimated 9 matches for "longfield".
Did you mean:
linkfield
2017 Sep 16
9
KeePassX replacement
I have been using the KeePassX password manager on CentOS 6 and 7 for some time and it works pretty well. On my Windows machine I use KeePass which offers a number of features missing from KeePassX, I also sync the database between several machines, including Android units where I use keepass2android. Database compatibility is thus required.
KeePassX, however, does not seem to be maintained any
2017 Sep 16
0
KeePassX replacement
...n any other standard repository, only through an unofficial repository at https://copr.fedorainfracloud.org/coprs/bugzy/keepassxc/,
>
>_______________________________________________
>CentOS mailing list
>CentOS at centos.org
>https://lists.centos.org/mailman/listinfo/centos
--
Tom Longfield
e: tomlongfield at gmail.com | t: 07507916719
PGP: 374C 705A 0CB4 783A 2692 A978 88A0 D5FC 5301 63FA
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 801 bytes
Desc: not available
URL: <http://lists.centos.or...
2017 Sep 16
2
KeePassX replacement
On 16/09/17 11:55, Tom Longfield wrote:
> I have been using KeePassXC (though mostly on Debian) for quite a while
> now and am happy to report it works well.? Nothing springs to mind that
> annoys me and it's a decent drop in replacement.
> My setup sounds pretty similar to your own (also use keepass2android,
&g...
2015 Jan 03
2
Help with installing Apache Solr with Dovecot 2.2
...t; stored="false"/>
<types>
<!-- IMAP has 32bit unsigned ints but java ints are signed, so use longs -->
<fieldType name="string" class="solr.StrField" omitNorms="true"/>
<fieldType name="long" class="solr.LongField" omitNorms="true"/>
<fieldType name="slong" class="solr.SortableLongField" omitNorms="true"/>
<fieldType name="float" class="solr.FloatField" omitNorms="true"/>
<fieldType name="boolean&quo...
2015 Mar 05
2
Dovecot Full Text Search: HTTP 500 : Unknown fieldType 'text_general' specified on field text. [SERIOUS]
...<!-- IMAP has 32bit unsigned ints but java ints are signed, so use
>> >> longs -->
>> >> <fieldType name="string" class="solr.StrField" omitNorms="true"/>
>> >> <fieldType name="long" class="solr.LongField" omitNorms="true"/>
>> >> <fieldType name="slong" class="solr.SortableLongField"
>> >> omitNorms="true"/>
>> >> <fieldType name="float" class="solr.FloatField" omitNorms="tr...
2015 Mar 05
3
Dovecot Full Text Search results in SolrException: undefined field text [SERIOUS]
Hello,
My dovecot constantly runs into this error.
I want to fix this one last time, I am tired of troubleshooting so
please someone give me a lasting and proper solution for this error. I
think its a problem with the dovecot-solr module.
Please tell me how do I find the root of this problem with Dovecot.
There is a problem with the body search text field. It always
fails(with no result), other
2016 Jul 12
2
RFC: Strong GC References in LLVM
...?
>
> I think this has to do with type checks. You could have a valid
object, but the GCRef field may only be valid under some type check.
Yes, in practice the "is_reference" check will be a type check. You
can end up with this from Java code that looks like:
class A {
long longField; // Offset 16, say
}
class B {
Object objField; // Offset 16 also
}
void f(A a) {
Object o = a;
// Since a is of type A, we know that it is dereferenceable up to
// 16+8 == 24 bytes, but it does not mean that we can speculate
// the load of objField.
// This is kind of silly...
2013 Feb 05
1
"Header is huge" in fts-solr
...chema.IndexSchema readSchema
INFO: Schema name=dovecot
01.02.2013 18:03:54 org.apache.solr.util.plugin.AbstractPluginLoader load
INFO: created string: org.apache.solr.schema.StrField
01.02.2013 18:03:54 org.apache.solr.util.plugin.AbstractPluginLoader load
INFO: created long: org.apache.solr.schema.LongField
01.02.2013 18:03:54 org.apache.solr.util.plugin.AbstractPluginLoader load
INFO: created slong: org.apache.solr.schema.SortableLongField
01.02.2013 18:03:54 org.apache.solr.util.plugin.AbstractPluginLoader load
INFO: created float: org.apache.solr.schema.FloatField
01.02.2013 18:03:54 org.apache.sol...
2016 Jun 24
6
RFC: Strong GC References in LLVM
This is a proposal to add strong GC reference types to LLVM.
We have some local (downstream) patches that are needed to prevent
LLVM's optimizer from making transforms that are problematic in the
presence of a precise relocating GC. Adding a notion of a strong GC
reference to LLVM will let us upstream these patches in a principled
manner, and will act as a measure to avoid new problematic