- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for punt (0.05 sec)
-
src/main/java/org/codelibs/fess/ldap/LdapManager.java
protected void addUserAttributes(final BasicAttributes entry, final User user) { entry.put(new BasicAttribute("cn", user.getName())); entry.put(new BasicAttribute("userPassword", user.getOriginalPassword())); OptionalUtil.ofNullable(user.getSurname()).filter(StringUtil::isNotBlank) .ifPresent(s -> entry.put(new BasicAttribute(fessConfig.getLdapAttrSurname(), s)));
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 65.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
}).filter(o -> o != null && keySet.add(o.getFirst())).collect(HashMap<String, List<String>>::new, (m, d) -> m.put(d.getFirst(), Arrays.asList(d.getSecond().split(","))), HashMap::putAll)); } propMap.put(DEFAULT_LABEL_VALUES, map); } return map.entrySet().stream().flatMap(e -> { final String key = e.getKey();
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 87.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
params.put("query", query); params.put("responseFields", responseFields); params.put("offset", offset); params.put("size", size); // TODO support rescorer(convert to map) // params.put("geoInfo", geoInfo); // params.put("facetInfo", facetInfo); params.put("similarDocHash", similarDocHash);
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K bytes - Viewed (0) -
docs/bucket/notifications/README.md
``` Use `mc admin config set` command to update the configuration for the deployment.Restart the MinIO server to put the changes into effect. The server will print a line like `SQS ARNs: arn:minio:sqs::1:amqp` at start-up if there were no errors. An example configuration for RabbitMQ is shown below: ```sh
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 84K bytes - Viewed (0) -
cmd/bucket-handlers.go
for _, os := range oss { if os == nil { // skip objects that weren't deleted due to invalid versionID etc. continue } os.Sweep() } } // PutBucketHandler - PUT Bucket // ---------- // This implementation of the PUT operation creates a new bucket for authenticated request func (api objectAPIHandlers) PutBucketHandler(w http.ResponseWriter, r *http.Request) { ctx := newContext(r, w, "PutBucket")
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Sep 12 12:24:04 UTC 2024 - 63.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
builder.setScript(script); final Map<String, Object> upsertMap = new HashMap<>(); upsertMap.put(fessConfig.getIndexFieldFavoriteCount(), 1); builder.setUpsert(upsertMap); builder.setRefreshPolicy(Constants.TRUE); });
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 50.3K bytes - Viewed (0) -
internal/bucket/lifecycle/lifecycle_test.go
Name: "obj-1", }, hasRules: false, }, { // PUT version with no matching tags lc: Lifecycle{ Rules: []Rule{ rules[0], }, }, opts: ObjectOpts{ IsLatest: true, Name: "obj-1", Size: 1 * humanize.MiByte, }, hasRules: false, }, { // PUT version with matching tags lc: Lifecycle{ Rules: []Rule{
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu May 23 01:12:48 UTC 2024 - 55.1K bytes - Viewed (0) -
cmd/admin-handlers-users.go
data, err := json.Marshal(userInfo) if err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } writeSuccessResponseJSON(w, data) } // UpdateGroupMembers - PUT /minio/admin/v3/update-group-members func (a adminAPIHandlers) UpdateGroupMembers(w http.ResponseWriter, r *http.Request) { ctx := r.Context() objectAPI, _ := validateAdminReq(ctx, w, r, policy.AddUserToGroupAdminAction)
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Oct 03 23:11:02 UTC 2024 - 85.1K bytes - Viewed (0) -
docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json
"interval": "1m", "intervalFactor": 2, "legendFormat": "{{instance}}", "range": true, "refId": "A" } ], "title": "Total Proxied Put Tag Requests", "type": "timeseries" }, { "datasource": { "type": "prometheus", "uid": "${DS_PROMETHEUS}" }, "fieldConfig": {
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Mar 28 17:15:39 UTC 2024 - 71.1K bytes - Viewed (0) -
tensorflow/c/c_api_function_test.cc
} // Run the host graph, which now contains a function and check that // outputs are as expected. // 'T' stands for 'tensor' since the outputs are tensors, not scalars. void RunT(const std::vector<std::pair<TF_Operation*, TF_Tensor*>>& inputs, std::initializer_list<TF_Output> outputs, const std::vector<std::vector<int32_t>>& expected_results) { // Create a session for this graph
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Thu Jul 20 22:08:54 UTC 2023 - 63.6K bytes - Viewed (0)