- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 332 for converted (0.06 sec)
-
src/main/java/org/codelibs/fess/suggest/converter/ReadingConverter.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.suggest.converter; import java.io.IOException; import java.util.List; public interface ReadingConverter { default int getMaxReadingNum() { return 10; } void init() throws IOException; List<String> convert(String text, final String field, String... langs) throws IOException;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 952 bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RangeMap.java
* connect to the given range and value. * * <p>Even if the input range is empty, if it is connected on both sides by ranges mapped to the * same value those two ranges will be coalesced. * * <p><b>Note:</b> coalescing requires calling {@code .equals()} on any connected values, which * may be expensive depending on the value type. Using this method on range maps with large values
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 21:19:52 UTC 2024 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/SmbTransport.java
* {@inheritDoc} * * @see java.lang.AutoCloseable#close() */ @Override public void close (); /** * @return the connected address */ Address getRemoteAddress (); /** * @return the connected host name */ String getRemoteHostName ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
import org.apache.lucene.search.TermQuery; import org.codelibs.core.CoreLibConstants; import org.codelibs.fess.suggest.converter.AnalyzerConverter; import org.codelibs.fess.suggest.converter.KatakanaToAlphabetConverter; import org.codelibs.fess.suggest.converter.ReadingConverter; import org.codelibs.fess.suggest.converter.ReadingConverterChain; import org.codelibs.fess.suggest.entity.SuggestItem;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 11.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.21.md
- The `EndpointSlice` API is now GA. The `EndpointSlice` topology field has been removed from the GA API and will be replaced by a new per Endpoint Zone field. If the topology field was previously used, it will be converted into an annotation in the v1 Resource. The `discovery.k8s.io/v1alpha1` API is removed. ([#99662](https://github.com/kubernetes/kubernetes/pull/99662), [@swetharepakula](https://github.com/swetharepakula))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Fri Oct 14 07:03:14 UTC 2022 - 367.3K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
break; } i += n; } return i; } /* * state values * 0 - not connected * 1 - connecting * 2 - run connected * 3 - connected * 4 - error * 5 - disconnecting * 6 - disconnected/invalid */ protected volatile int state = 0; protected String name = "Transport" + id++;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 01 18:12:21 UTC 2020 - 24.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterChainTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.suggest.converter; import junit.framework.TestCase; public class ReadingConverterChainTest extends TestCase { public void test_convert() throws Exception { /*
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1.2K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/JdkFutureAdapters.java
* ListenableFuture} directly. * * <p>For interoperability between {@code ListenableFuture} and <b>{@code CompletableFuture}</b>, * consider <a href="https://github.com/lukas-krecan/future-converter">Future Converter</a>. * * @author Sven Mawson * @since 10.0 (replacing {@code Futures.makeListenable}, which existed in 1.0) */ @J2ktIncompatible @GwtIncompatible @ElementTypesAreNonnullByDefault
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 14 20:35:03 UTC 2023 - 7.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java
@Experimental public interface DependencyResolver extends Service { /** * Collects the transitive dependencies of some artifacts and builds a dependency graph for the given path scope. * Note that this operation is only concerned about determining the coordinates of the transitive dependencies and * does not actually resolve the artifact files. * * @param session the {@link Session}, must not be {@code null}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 16 14:15:37 UTC 2024 - 9.4K bytes - Viewed (0) -
docs/es/docs/advanced/response-change-status-code.md
Por ejemplo, imagina que quieres retornar un HTTP status code de "OK" `200` por defecto. Pero si los datos no existen, quieres crearlos y retornar un HTTP status code de "CREATED" `201`. Pero aún quieres poder filtrar y convertir los datos que retornas con un `response_model`. Para esos casos, puedes usar un parámetro `Response`. ## Usar un parámetro `Response`
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 1.6K bytes - Viewed (0)