- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 129 for Token (0.03 sec)
-
src/main/java/org/codelibs/fess/util/ComponentUtil.java
*/ public static VirtualHostHelper getVirtualHostHelper() { return getComponent(VIRTUAL_HOST_HELPER); } /** * Gets the access token helper component. * @return The access token helper. */ public static AccessTokenHelper getAccessTokenHelper() { return getComponent(ACCESS_TOKEN_HELPER); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.29.md
`kube-controller-manager`: The `LegacyServiceAccountTokenCleanUp` feature gate is now `beta` and enabled by default. When enabled, legacy auto-generated service account token secrets are auto-labeled with a `kubernetes.io/legacy-token-invalid-since` label if the credentials have not been used in the time specified by `--legacy-service-account-token-clean-up-period` (defaulting to one year), **and** are referenced from the `.secrets` list of a ServiceAccount object, **and** are not referenced from pods. This...
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Mar 12 00:36:01 UTC 2025 - 429.6K bytes - Viewed (1) -
samples/slack/src/main/java/okhttp3/slack/SlackApi.java
} } /** See https://api.slack.com/methods/rtm.start. */ public RtmStartResponse rtmStart(String accessToken) throws IOException { HttpUrl url = baseUrl.newBuilder("rtm.start") .addQueryParameter("token", accessToken) .build(); Request request = new Request.Builder() .url(url) .build(); Call call = httpClient.newCall(request); try (Response response = call.execute()) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jul 06 19:30:55 UTC 2018 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. 60 */ String API_ACCESS_TOKEN_LENGTH = "api.access.token.length"; /** The key of the configuration. e.g. false */ String API_ACCESS_TOKEN_REQUIRED = "api.access.token.required"; /** The key of the configuration. e.g. */ String API_ACCESS_TOKEN_REQUEST_PARAMETER = "api.access.token.request.parameter"; /** The key of the configuration. e.g. Radmin-api */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1) -
README.md
String unescaped = JsonUtil.unescape(escaped); // Text tokenization Tokenizer tokenizer = new Tokenizer("field1,field2,field3", ","); while (tokenizer.hasMoreTokens()) { String token = tokenizer.nextToken(); // Process each token } // Decimal formatting DecimalFormat format = DecimalFormatUtil.getDecimalFormat("###,###.00"); ``` ### Exception Handling ```java import org.codelibs.core.exception.*;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dict/kuromoji/admin_dict_kuromoji.jsp
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Mar 27 06:24:23 UTC 2020 - 10.1K bytes - Viewed (0) -
src/main/resources/fess_message_de.properties
errors.failed_to_download_mapping_file = Fehler beim Herunterladen einer Mapping-Datei. errors.failed_to_upload_mapping_file = Fehler beim Hochladen einer Mapping-Datei. errors.invalid_kuromoji_token={0} ist als Token ungültig. errors.invalid_kuromoji_segmentation=Die Anzahl der Segmentierungen für {0} und {1} ist unterschiedlich. errors.invalid_str_is_included = {1} ist für {0} ungültig. errors.blank_password = Passwort ist erforderlich.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 12.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.21.md
- This changes the tokens provided to containers at `/var/run/secrets/kubernetes.io/serviceaccount/token` to be time-limited, auto-refreshed, and invalidated when the containing pod is deleted. - Clients should reload the token from disk periodically (once per minute is recommended) to ensure they continue to use a valid token. `k8s.io/client-go` version v11.0.0+ and v0.15.0+ reload tokens automatically.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Fri Oct 14 07:03:14 UTC 2022 - 367.3K bytes - Viewed (0) -
src/main/resources/fess_message_es.properties
errors.failed_to_download_mapping_file = No se pudo descargar el archivo de mapeo. errors.failed_to_upload_mapping_file = No se pudo cargar el archivo de mapeo. errors.invalid_kuromoji_token={0} no es un token válido. errors.invalid_kuromoji_segmentation=El número de divisiones de {0} no coincide con el número de divisiones de {1}. errors.invalid_str_is_included = {1} no es válido en {0}. errors.blank_password = Se requiere contraseña.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java
final PagingList<KuromojiItem> itemList = kuromojiFile.selectList(0, 5); for (int i = 0; i < itemList.size(); i++) { final KuromojiItem kuromojiItem = itemList.get(i); assertEquals("token" + (i + 1), kuromojiItem.getToken()); assertEquals("seg" + (i + 1), kuromojiItem.getSegmentation()); assertEquals("reading" + (i + 1), kuromojiItem.getReading());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.3K bytes - Viewed (0)