- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 136 for getMode (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
internal/bucket/object/lock/lock.go
// Enabled indicates object locking is enabled const Enabled = "Enabled" // RetMode - object retention mode. type RetMode string const ( // RetGovernance - governance mode. RetGovernance RetMode = "GOVERNANCE" // RetCompliance - compliance mode. RetCompliance RetMode = "COMPLIANCE" ) // Valid - returns if retention mode is valid func (r RetMode) Valid() bool { switch r { case RetGovernance, RetCompliance:
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 17.9K bytes - Click Count (0) -
docs/de/docs/learn/index.md
# Lernen { #learn } Hier sind die einführenden Abschnitte und Tutorials, um **FastAPI** zu lernen.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Sep 20 15:10:09 GMT 2025 - 232 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java
saveToken(); return asHtml(path_AdminRole_AdminRoleDetailsJsp).useForm(EditForm.class, op -> { op.setup(form -> { roleService.getRole(id).ifPresent(entity -> { copyBeanToBean(entity, form, copyOp -> { copyOp.excludeNull(); }); form.crudMode = crudMode;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 12.8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java
public Class<ModelData> getType() { return ModelData.class; } @Override public ModelData intoCache(ModelData data) { Model model = (data.getModel() != null) ? data.getModel().clone() : null; return new ModelData(data.getSource(), model, data.getGroupId(), data.getArtifactId(), data.getVersion()); } @Override
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 3.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractAbstractFutureTest.java
* limitations under the License. */ package com.google.common.util.concurrent; import static com.google.common.truth.Truth.assertThat; import static com.google.common.util.concurrent.Futures.getDone; import static com.google.common.util.concurrent.Futures.immediateFuture; import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 16.3K bytes - Click Count (0) -
internal/rest/client.go
case *bytes.Buffer: req.ContentLength = int64(v.Len()) buf := v.Bytes() req.GetBody = func() (io.ReadCloser, error) { r := bytes.NewReader(buf) return io.NopCloser(r), nil } case *bytes.Reader: req.ContentLength = int64(v.Len()) snapshot := *v req.GetBody = func() (io.ReadCloser, error) { r := snapshot return io.NopCloser(&r), nil }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 14.7K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/Hc5FormScheme.java
} httpRequest = new HttpGet(buf.toString()); } executor.accept(httpRequest, (response, entity) -> { final int httpStatusCode = response.getCode(); if (httpStatusCode < 400 || httpStatusCode == 401) { parseTokenPage(tokenPattern, responseParams, entity); } else { String content;Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sun Jan 04 13:09:59 GMT 2026 - 15.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/chat/ChatClientTest.java
assertEquals("user", history.get(0).getRole()); assertEquals("Q1", history.get(0).getContent()); assertEquals("assistant", history.get(1).getRole()); assertEquals("A1", history.get(1).getContent()); assertEquals("user", history.get(2).getRole()); assertEquals("Q2", history.get(2).getContent()); assertEquals("assistant", history.get(3).getRole());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 40.6K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
List<ModelData> lineage, ModelBuildingRequest request, ModelProblemCollector problems) { for (int i = lineage.size() - 2; i >= 0; i--) { Model parent = lineage.get(i + 1).getModel(); Model child = lineage.get(i).getModel(); inheritanceAssembler.assembleModelInheritance(child, parent, request, problems); } } private List<Profile> getProfiles(Model model) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Mar 30 23:08:08 GMT 2025 - 55.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/dfs/Referral.java
*/ public final String getRpath() { return this.rpath; } /** * Gets the node name for this referral. * * @return the node */ public final String getNode() { return this.node; } /** * Gets the special name for this referral. * * @return the specialName */ public final String getSpecialName() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 7.1K bytes - Click Count (0)