- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 1,697 for _key (0.03 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileActivationContext.java
/** * Gets the user properties to use for interpolation and profile activation. The user properties have been * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command * line. * * @return The user properties, never {@code null}. */ Map<String, String> getUserProperties(); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsCrawlingInfoParamCQ.java
} public void setKey_Equal(String key) { setKey_Term(key, null); } public void setKey_Equal(String key, ConditionOptionCall<TermQueryBuilder> opLambda) { setKey_Term(key, opLambda); } public void setKey_Term(String key) { setKey_Term(key, null); } public void setKey_Term(String key, ConditionOptionCall<TermQueryBuilder> opLambda) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 36K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt
setUp(parameters.first, parameters.second) var key = "" assertFailsWith<IllegalArgumentException> { key = "has_space " cache.edit(key) }.also { expected -> assertThat(expected.message).isEqualTo("keys must match regex [a-z0-9_-]{1,120}: \"$key\"") } assertFailsWith<IllegalArgumentException> { key = "has_CR\r" cache.edit(key) }.also { expected ->
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 14:55:09 UTC 2024 - 75.8K bytes - Viewed (0) -
cmd/data-usage_test.go
if len(want.Cache) != len(got.Cache) { t.Errorf("deserialize mismatch length\nwant: %+v\ngot: %+v", len(want.Cache), len(got.Cache)) } for wkey, wval := range want.Cache { gotv := got.Cache[wkey] if !equalAsJSON(gotv, wval) { t.Errorf("deserialize mismatch, key %v\nwant: %#v\ngot: %#v", wkey, wval, gotv) } } } // equalAsJSON returns whether the values are equal when encoded as JSON.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 22:23:33 UTC 2024 - 14.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
} /** * Gets the user properties to use for interpolation and profile activation. The user properties have been * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command * line. * * @return The user properties, never {@code null}. */ public Properties getUserProperties() { return request.getUserProperties(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.6K bytes - Viewed (0) -
internal/config/notify/legacy.go
Key: target.MySQLPort, Value: cfg.Port, }, config.KV{ Key: target.MySQLUsername, Value: cfg.User, }, config.KV{ Key: target.MySQLPassword, Value: cfg.Password, }, config.KV{ Key: target.MySQLDatabase, Value: cfg.Database, }, config.KV{ Key: target.MySQLQueueDir, Value: cfg.QueueDir, }, config.KV{
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Mar 19 04:37:54 UTC 2024 - 13.1K bytes - Viewed (0) -
cmd/kms-handlers_test.go
asRoot: false, policy: `{"Effect": "Allow", "Action": ["kms:KeyStatus"], "Resource": ["arn:minio:kms:::abc-test-*"] }`, wantStatusCode: http.StatusOK, wantResp: []string{"abc-test-key"}, }, { name: "key status as user set policy to allow non-matching key", method: http.MethodGet, path: kmsKeyStatusPath,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Aug 18 06:43:03 UTC 2024 - 22.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/searchOptions.jsp
<h3 id="searchOptionsLabel"> <la:message key="labels.search_options" /> </h3> <div> <fieldset class="form-group"> <legend><la:message key="labels.index_num" /></legend> <label for="contentNum"><la:message key="labels.index_num" /></label> <la:select property="num" styleId="numSearchOption" styleClass="form-control"> <option value="10"> <la:message key="labels.search_result_select_num" /> </option>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 17 08:19:53 UTC 2019 - 3.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/searchOptions.jsp
<h3 id="searchOptionsLabel"> <la:message key="labels.search_options" /> </h3> <div> <fieldset class="form-group"> <legend><la:message key="labels.index_num" /></legend> <label for="contentNum"><la:message key="labels.index_num" /></label> <la:select property="num" styleId="numSearchOption" styleClass="form-control"> <option value="10"> <la:message key="labels.search_result_select_num" /> </option>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 17 08:19:53 UTC 2019 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/util/Crypto.java
} /** * @param key * 7-byte "raw" DES key * @return 8-byte DES key with parity */ static byte[] des7to8 ( byte[] key ) { byte key8[] = new byte[8]; key8[ 0 ] = (byte) ( key[ 0 ] & 0xFE ); key8[ 1 ] = (byte) ( ( key[ 0 ] << 7 ) | ( ( key[ 1 ] & 0xFF ) >>> 1 ) ); key8[ 2 ] = (byte) ( ( key[ 1 ] << 6 ) | ( ( key[ 2 ] & 0xFF ) >>> 2 ) );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Aug 17 17:34:29 UTC 2021 - 5.2K bytes - Viewed (0)