- Sort Score
- Result 10 results
- Languages All
Results 1011 - 1020 of 1,327 for updated (0.12 sec)
-
android/guava-tests/test/com/google/common/graph/ImmutableValueGraphTest.java
.<String>nodeOrder(ElementOrder.<String>natural()); ImmutableValueGraph.Builder<String, Integer> immutableValueGraphBuilder = graphBuilder.<String, Integer>immutable(); // Update ValueGraphBuilder, but this shouldn't impact immutableValueGraphBuilder graphBuilder.allowsSelfLoops(false).nodeOrder(ElementOrder.<String>unordered());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jan 09 20:24:43 UTC 2020 - 6.4K bytes - Viewed (0) -
docs/security/tls_configuration_history.md
[OkHttp314]: https://square.github.io/okhttp/changelog_3x/#version-310 [OkHttp35]: https://square.github.io/okhttp/changelog_3x/#version-350 [chromium_change]: https://developers.google.com/web/updates/2016/12/chrome-56-deprecations#remove_cbc-mode_ecdsa_ciphers_in_tls [googlecloud_ssl_policy]: https://cloud.google.com/load-balancing/docs/ssl-policies-concepts [http2_denylist]: https://tools.ietf.org/html/rfc7540#appendix-A
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 16:35:36 UTC 2022 - 9K bytes - Viewed (0) -
common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto
// Package-wide variables from generator "generated". option go_package = "k8s.io/apimachinery/pkg/apis/testapigroup/v1"; // Carp is a collection of containers, used as either input (create, update) or as output (list, get). message Carp { // Standard object's metadata. // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata // +optional
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java
verifyToken(() -> uploadpage(form.dictId)); return synonymService.getSynonymFile(form.dictId).map(file -> { try (InputStream inputStream = form.synonymFile.getInputStream()) { file.update(inputStream); } catch (final IOException e) { logger.warn("Failed to process a request.", e); throwValidationError(messages -> messages.addErrorsFailedToUploadSynonymFile(GLOBAL),
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
import org.codelibs.fess.util.QueryResponseList; import org.dbflute.optional.OptionalEntity; import org.dbflute.optional.OptionalThing; import org.lastaflute.web.util.LaRequestUtil; import org.opensearch.action.update.UpdateRequest; import org.opensearch.script.Script; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import com.google.common.base.CaseFormat;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 22 02:07:37 UTC 2024 - 21.7K bytes - Viewed (0) -
association.go
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed Jun 12 10:49:45 UTC 2024 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
final String objectName = getObjectName(form.path, form.name); try { updateObjectTags(objectName, form.tags); } catch (final StorageException e) { logger.warn("Failed to update tags in {}", form.path, e); throwValidationError(messages -> messages.addErrorsStorageTagsUpdateFailure(GLOBAL, objectName), () -> asEditTagsHtml(form.path, form.name)); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
// ============ public static void main(final String[] args) { // update java.io.tmpdir final String tempPath = System.getProperty(FESS_TEMP_PATH); if (tempPath != null) { System.setProperty(JAVA_IO_TMPDIR, tempPath); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
public abstract PagingList<T> selectList(int offset, int size); public abstract OptionalEntity<T> get(long id); public abstract void insert(T item); public abstract void update(T item); public abstract void delete(T item); public static class PagingList<E> implements List<E> { private final List<E> parent; protected int allPageCount;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 6.8K bytes - Viewed (0) -
guava/src/com/google/common/hash/Murmur3_128HashFunction.java
static final HashFunction GOOD_FAST_HASH_128 = new Murmur3_128HashFunction(Hashing.GOOD_FAST_HASH_SEED); // TODO(user): when the shortcuts are implemented, update BloomFilterStrategies private final int seed; Murmur3_128HashFunction(int seed) { this.seed = seed; } @Override public int bits() { return 128; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 20 18:43:59 UTC 2021 - 5.6K bytes - Viewed (0)