- Sort Score
- Result 10 results
- Languages All
Results 561 - 570 of 4,706 for asString (0.07 sec)
-
cmd/object-api-errors.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 09 02:05:14 UTC 2024 - 22.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/SetViewTest.java
new TestStringSetGenerator() { @Override protected Set<String> create(String[] elements) { Set<String> difference = newHashSet(elements); Set<String> set = newHashSet(samples()); set.addAll(difference); Set<String> subset = newHashSet(samples()); subset.removeAll(difference);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java
@Override protected List<String> create(String[] elements) { return ImmutableList.copyOf(elements); } } public static class BuilderAddListGenerator extends TestStringListGenerator { @Override protected List<String> create(String[] elements) { ImmutableList.Builder<String> builder = ImmutableList.<String>builder(); for (String element : elements) { builder.add(element);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingSortedMapTest.java
private final Comparator<String> comparator = NullsBeforeTwo.INSTANCE; @Override protected SortedMap<String, String> create(Entry<String, String>[] entries) { SortedMap<String, String> map = new SafeTreeMap<>(comparator); for (Entry<String, String> entry : entries) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 20:34:52 UTC 2025 - 7.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactFactory.java
@Nonnull Session session, String groupId, String artifactId, String version, String extension) { return create(ArtifactFactoryRequest.build(session, groupId, artifactId, version, extension)); } @Nonnull default Artifact create( @Nonnull Session session, String groupId, String artifactId, String version, String classifier,
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
// Test that getType returns the same value consistently String type = "ApiKey"; String message = "API key expired"; InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message); String firstCall = exception.getType(); String secondCall = exception.getType(); assertSame(firstCall, secondCall);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0) -
tests/create_test.go
} } func TestCreateOnConflictWithDefaultNull(t *testing.T) { type OnConflictUser struct { ID string Name string `gorm:"default:null"` Email string Mobile string `gorm:"default:'133xxxx'"` } err := DB.Migrator().DropTable(&OnConflictUser{}) AssertEqual(t, err, nil) err = DB.AutoMigrate(&OnConflictUser{})
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 09:55:20 UTC 2025 - 26.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
* * @param key the property key to look up * @param defaultValue the default value if the property is not found * @return the string value or default value */ protected String getDefaultString(final String key, final String defaultValue) { final String value = systemProperties.getProperty(key); if (value != null) { return value; } return defaultValue; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.8K bytes - Viewed (0) -
cmd/storage-datatypes.go
type RenameFileHandlerParams struct { DiskID string `msg:"id"` SrcVolume string `msg:"sv"` SrcFilePath string `msg:"sp"` DstVolume string `msg:"dv"` DstFilePath string `msg:"dp"` } // RenamePartHandlerParams are parameters for RenamePartHandler. type RenamePartHandlerParams struct { DiskID string `msg:"id"` SrcVolume string `msg:"sv"` SrcFilePath string `msg:"sp"` DstVolume string `msg:"dv"`
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 25 05:41:04 UTC 2025 - 17.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/MapsTransformValuesTest.java
@NullMarked public class MapsTransformValuesTest extends AbstractMapsTransformValuesTest { @Override protected Map<String, String> makeEmptyMap() { return transformValues(new HashMap<String, String>(), Functions.<String>identity()); } @Override protected Map<String, String> makePopulatedMap() { Map<String, Integer> underlying = new HashMap<>(); underlying.put("a", 1); underlying.put("b", 2);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 1.5K bytes - Viewed (0)