- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 130 for suggest_ (0.12 sec)
-
src/main/resources/fess_label_fr.properties
labels.access_token_token = Token labels.access_token_expires = Expiré labels.access_token_parameter_name = Nom du paramètre labels.access_token_updated_time = Création labels.suggest_word_configuration = Suggest Word labels.suggest_word_title_details = Suggest Word labels.suggest_word_type = Type de mots labels.suggest_word_number = Nombre de mots labels.suggest_word_type_all = Tous labels.suggest_word_type_document = Document
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 46.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Futures.java
} } /** * Returns the result of the input {@code Future}, which must have already completed. * * <p>The benefits of this method are twofold. First, the name "getDone" suggests to readers that * the {@code Future} is already done. Second, if buggy code calls {@code getDone} on a {@code * Future} that is still pending, the program will throw instead of block. This can be important
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 13:13:32 UTC 2024 - 64.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp
</la:select> </div> </div> <%-- Suggest --%> <h4><la:message key="labels.general_menu_suggest"/></h4> <div class="form-group row">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jan 16 12:54:35 UTC 2023 - 39.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/advance.jsp
<script type="text/javascript" src="${fe:url('/js/jquery-3.7.1.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/bootstrap.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script> <script type="text/javascript" src="${fe:url('/js/advance.js')}"></script> </body>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0) -
guava/src/com/google/common/math/LongMath.java
return x > 0 & (x & (x - 1)) == 0; } /** * Returns 1 if {@code x < y} as unsigned longs, and 0 otherwise. Assumes that x - y fits into a * signed long. The implementation is branch-free, and benchmarks suggest it is measurably faster * than the straightforward ternary expression. */ @VisibleForTesting static int lessThanBranchFree(long x, long y) { // Returns the sign bit of x - y.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 09 16:39:37 UTC 2024 - 45.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
*/ @Override public boolean verifySignature ( byte[] buffer, int i, int size ) { /* * Verification fails (w/ W2K3 server at least) if status is not 0. This * suggests MS doesn't compute the signature (correctly) for error responses * (perhaps for DOS reasons). */ /* * Looks like the failure case also is just reflecting back the signature we sent
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 32.7K bytes - Viewed (0) -
android/guava/src/com/google/common/math/LongMath.java
return x > 0 & (x & (x - 1)) == 0; } /** * Returns 1 if {@code x < y} as unsigned longs, and 0 otherwise. Assumes that x - y fits into a * signed long. The implementation is branch-free, and benchmarks suggest it is measurably faster * than the straightforward ternary expression. */ @VisibleForTesting static int lessThanBranchFree(long x, long y) { // Returns the sign bit of x - y.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 09 16:39:37 UTC 2024 - 45.2K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
Once you are ready and want to use a tool to **manage the entire project**, packages dependencies, virtual environments, etc. I would suggest you try <a href="https://github.com/astral-sh/uv" class="external-link" target="_blank">uv</a>. `uv` can do a lot of things, it can: * **Install Python** for you, including different versions
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 24 03:16:23 UTC 2024 - 21.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/SplitterTest.java
String leading = ",a,b,c"; Iterable<String> letters = Splitter.onPattern(",").split(leading); assertThat(letters).containsExactly("", "a", "b", "c").inOrder(); } // TODO(kevinb): the name of this method suggests it might not actually be testing what it // intends to be testing? @GwtIncompatible // Splitter.onPattern public void testPatternSplitWithMultipleLetters() { Iterable<String> testPatterningMotto =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Sep 17 18:14:12 UTC 2024 - 29.6K bytes - Viewed (0)