- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 117 for Evaluate (0.07 sec)
-
android/guava-tests/benchmark/com/google/common/util/concurrent/FuturesGetCheckedBenchmark.java
@Param ExceptionType exceptionType; /** * The number of other exception types in the cache of known-good exceptions and the number of * other {@code ClassValue} entries for the exception type to be tested. This lets us evaluate * whether our solution scales to use with multiple exception types and to whether it is affected * by other {@code ClassValue} users. Some of the benchmarked implementations don't use one or
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Mar 22 03:01:34 UTC 2022 - 6.5K bytes - Viewed (0) -
internal/s3select/select.go
return nil } panic(fmt.Errorf("unknown output format '%v'", s3Select.Output.format)) } // Evaluate - filters and sends records read from opened reader as per select statement to http response writer. func (s3Select *S3Select) Evaluate(w http.ResponseWriter) { getProgressFunc := s3Select.getProgress if !s3Select.Progress.Enabled { getProgressFunc = nil }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 22 00:33:43 UTC 2024 - 21.2K bytes - Viewed (0) -
docs/compression/README.md
Therefore, compression is disabled when encrypting by default, and must be enabled separately. Consult our security experts on [SUBNET](https://min.io/pricing) to help you evaluate if your setup can use this feature combination safely. To enable compression+encryption use: ```bash ~ mc admin config set myminio compression allow_encryption=on ```
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Mar 11 11:55:34 UTC 2024 - 5.1K bytes - Viewed (0) -
cmd/iam.go
} // 3. If an inline session-policy is present, evaluate it. hasSessionPolicy, isAllowedSP := isAllowedBySessionPolicyForServiceAccount(args) if hasSessionPolicy { return isAllowedSP && (isOwnerDerived || combinedPolicy.IsAllowed(parentArgs)) } // Sub policy not set. Evaluate only the parent policies. return (isOwnerDerived || combinedPolicy.IsAllowed(parentArgs)) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 29 16:01:48 UTC 2024 - 74.6K bytes - Viewed (0) -
mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt
val statement = server.apply( object : Statement() { override fun evaluate() { called.set(true) server.url("/").toUrl().openConnection().connect() } }, Description.EMPTY, ) statement.evaluate() assertThat(called.get()).isTrue() try { server.url("/").toUrl().openConnection().connect()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 21.9K bytes - Viewed (0) -
SECURITY.md
when doing so. Write an attack scenario that demonstrates how your issue violates the use cases and security assumptions defined in the threat model. This will help us evaluate your report quickly, especially if the issue is complex. - Whether this vulnerability is public or known to third parties. If it is, please provide details.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 16 16:10:43 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
boostFunctionList.add(new FilterFunctionBuilder(filter, scoreFunction)); } public RescorerBuilder<?>[] getRescorers(final Map<String, Object> params) { return queryRescorerList.stream().map(r -> r.evaluate(params)).filter(b -> b != null).toArray(n -> new RescorerBuilder<?>[n]); } public void addQueryRescorer(final QueryRescorer rescorer) { queryRescorerList.add(rescorer); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 11.9K bytes - Viewed (0) -
internal/s3select/sql/aggregation.go
if e.Count.StarArg { // Handle COUNT(*) e.aggregate.runningCount++ return nil } val, err = e.Count.ExprArg.evalNode(r, tableAlias) if err != nil { return err } } else { // Evaluate the (only) argument val, err = e.SFunc.ArgsList[0].evalNode(r, tableAlias) if err != nil { return err } } if val.IsNull() { // E.g. the column or field does not exist in the
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Dec 23 07:19:11 UTC 2023 - 7.9K bytes - Viewed (0) -
internal/s3select/sql/parser.go
// (i.e. enclosed in parentheses like `IN (1,2,4)`) or it could be a JSON path // expression (as in `8.5 IN s.nested[*][*]`). Specifically, it cannot be an // `Expression` as an expression can never evaluate to a list. type In struct { JPathExpr *JSONPath `parser:"@@"` ListExpr *ListExpr `parser:"| @@"` } // Grammar for Operand: // // operand → multOp ( ("-" | "+") multOp )*
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 12.9K bytes - Viewed (0) -
docs/bucket/versioning/README.md
**PLEASE READ: This feature is meant for advanced usecases only where the setup is using bucket versioning or with replicated buckets, use this feature to optimize versioning behavior for some specific applications. MinIO experts will evaluate and guide on the benefits for your application, please reach out to us on <https://subnet.min.io>.**
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu May 04 21:43:52 UTC 2023 - 11.9K bytes - Viewed (0)