- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 778 for queryId (0.04 sec)
-
cmd/signature-v2_test.go
for i, testCase := range testCases { // Turn the map[string]string into map[string][]string, because Go. query := url.Values{} for key, value := range testCase.queryParams { query.Set(key, value) } // Create a request to use. req, err := http.NewRequest(http.MethodGet, "http://host/a/b?"+query.Encode(), nil) if err != nil { t.Errorf("(%d) failed to create http.Request, got %v", i, err) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryEnumIterator2Test.java
lenient().when(fe3.getName()).thenReturn("file3"); when(fe3.getFileIndex()).thenReturn(3); // Track query count to handle multiple queries properly final int[] queryCount = { 0 }; // Mock send(create) to wire a query response with fe1, fe2 doAnswer(inv -> { Object arg = inv.getArgument(0); if (arg instanceof Smb2CreateRequest) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTester.kt
) { builder.query("a${value}z") } override operator fun get(url: HttpUrl): String { val query = url.query return query!!.substring(1, query.length - 1) } }, QUERY_VALUE { override fun urlString(value: String): String = "http://example.com/?q=a${value}z" override fun encodedValue(url: HttpUrl): String { val query = url.encodedQuery
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/querylog/QueryLog.java
/** * The QueryLog class represents a log entry containing a query string and an optional filter query string. */ public class QueryLog { private final String q; private final String fq; /** * Constructor for QueryLog. * @param queryString The query string. * @param filterQueryString The filter query string (can be null). */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
cb.query().setDescription_Wildcard(dataConfigPager.description); } else if (dataConfigPager.description.endsWith("*")) { cb.query().setDescription_Prefix(dataConfigPager.description.replaceAll("\\*$", StringUtil.EMPTY)); } else { cb.query().setDescription_MatchPhrase(dataConfigPager.description); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionRequest.java
ArtifactMetadata query, ArtifactRepository localRepository, List<ArtifactRepository> remoteRepositories) { this.query = query; this.localRepository = localRepository; this.remoteRepositories = remoteRepositories; } // -------------------------------------------------------------------- public ArtifactMetadata getQuery() { return query; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsCrawlingInfoCB.java
// Query // ===== public BsCrawlingInfoCQ query() { assertQueryPurpose(); return doGetConditionQuery(); } protected BsCrawlingInfoCQ doGetConditionQuery() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsRoleTypeCB.java
// =================================================================================== // Query // ===== public BsRoleTypeCQ query() { assertQueryPurpose(); return doGetConditionQuery(); } protected BsRoleTypeCQ doGetConditionQuery() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
import org.codelibs.fess.util.DocumentUtil; import org.opensearch.index.query.BoolQueryBuilder; import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder.FilterFunctionBuilder; import org.opensearch.index.query.functionscore.ScoreFunctionBuilder; import org.opensearch.index.query.functionscore.ScoreFunctionBuilders;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
docs/uk/docs/tutorial/path-params-numeric-validations.md
{* ../../docs_src/path_params_numeric_validations/tutorial006_an_py39.py hl[13] *} ## Підсумок За допомогою `Query`, `Path` (і інших параметрів, які Ви ще не бачили) можна оголошувати метадані та перевірки рядків, так само як у [Query параметри та валідація рядків](query-params-str-validations.md){.internal-link target=_blank}. Також можна оголошувати числові перевірки: * `gt`: `g`reater `t`han (більше ніж)
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:35:49 UTC 2025 - 9.9K bytes - Viewed (0)