- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 6,235 for String (0.08 sec)
-
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
return storage.put(key, property[1]); } public String put(String key, List<String> commentLines, String value) { commentLines = new ArrayList<>(commentLines); this.layout.put(key, new Layout(commentLines, null)); return storage.put(key, value); } public String put(String key, String comment, String value) { return put(key, Collections.singletonList(comment), value);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/ToStringHelperTest.java
Map<String, Integer> map = ImmutableMap.<String, Integer>builder().put("abc", 1).put("def", 2).put("ghi", 3).build(); String toTest = MoreObjects.toStringHelper(new TestClass()) .add("field1", "This is string.") .add("field2", Arrays.asList("abc", "def", "ghi")) .add("field3", map) .toString(); final String expectedRegex = ".*\\{"
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 09 21:19:18 UTC 2024 - 21.3K bytes - Viewed (0) -
istioctl/pkg/multicluster/remote_secret_test.go
tokenWaitBackoff = 10 * time.Millisecond cases := []struct { testName string objs []runtime.Object name string secType SecretType secretName string // inject errors badStartingConfig bool outputWriterError error want string wantErrStr string k8sMinorVersion string }{ { testName: "fail to create remote secret token",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 20.7K bytes - Viewed (0) -
istioctl/pkg/tag/tag_test.go
} }) } } func TestSetTagErrors(t *testing.T) { tcs := []struct { name string tag string revision string webhookBefore *admitv1.MutatingWebhookConfiguration outputMatches []string error string }{ { name: "TestErrorWhenRevisionWithNameCollision", tag: "revision", revision: "revision",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 8.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/TestStringQueueGenerator.java
String[] array = new String[elements.length]; int i = 0; for (Object e : elements) { array[i++] = (String) e; } return create(array); } protected abstract Queue<String> create(String[] elements); @Override public String[] createArray(int length) { return new String[length]; } /** Returns the original element list, unchanged. */ @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 21 16:49:06 UTC 2024 - 1.6K bytes - Viewed (0) -
istioctl/pkg/describe/describe_test.go
istioConfigs []runtime.Object // Canned Istio configuration configDumps map[string][]byte namespace string istioNamespace string args []string // Typically use one of the three expectedOutput string // Expected constant output expectedString string // String output is expected to contain wantException bool } // Tests Pilot /debug func TestDescribe(t *testing.T) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 20:04:20 UTC 2024 - 30.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/FarmHashFingerprint64Test.java
} } String stringA = new String(charsA); String stringB = new String(charsB); assertThat(stringA).isNotEqualTo(stringB); assertThat(HASH_FN.hashUnencodedChars(stringA)) .isNotEqualTo(HASH_FN.hashUnencodedChars(stringB)); assertThat(fingerprint(stringA.getBytes(UTF_8))) .isNotEqualTo(fingerprint(stringB.getBytes(UTF_8)));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 6.2K bytes - Viewed (0) -
schema/constraint.go
package schema import ( "regexp" "strings" "gorm.io/gorm/clause" ) // reg match english letters and midline var regEnLetterAndMidline = regexp.MustCompile(`^[\w-]+$`) type CheckConstraint struct { Name string Constraint string // length(phone) >= 10 *Field } func (chk *CheckConstraint) GetName() string { return chk.Name } func (chk *CheckConstraint) Build() (sql string, vars []interface{}) {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Mar 18 07:33:54 UTC 2024 - 1.9K bytes - Viewed (0) -
android/guava/src/com/google/common/base/CaseFormat.java
} @Override public String toString() { return sourceFormat + ".converterTo(" + targetFormat + ")"; } private static final long serialVersionUID = 0L; } abstract String normalizeWord(String word); String normalizeFirstWord(String word) { return normalizeWord(word); } private static String firstCharOnlyToUpper(String word) { return word.isEmpty()
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 19 20:20:14 UTC 2022 - 6.3K bytes - Viewed (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java
*/ String DEFAULT_SELF_COMBINATION_MODE = SELF_COMBINATION_MERGE; @Nonnull String getName(); @Nonnull String getNamespaceUri(); @Nonnull String getPrefix(); @Nullable String getValue(); @Nonnull Map<String, String> getAttributes(); @Nullable String getAttribute(@Nonnull String name); @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Nov 27 23:11:34 UTC 2023 - 4.3K bytes - Viewed (0)