- Sort Score
- Result 10 results
- Languages All
Results 561 - 570 of 4,785 for New (0.04 sec)
-
android/guava-tests/test/com/google/common/io/CharStreamsTest.java
StringBuilder builder2 = new StringBuilder(); copied = CharStreams.copy(new StringReader(I18N), builder2); assertEquals(I18N, builder2.toString()); assertEquals(I18N.length(), copied); } public void testCopy_toStringBuilder_fromReadable() throws IOException { StringBuilder builder = new StringBuilder(); long copied = CharStreams.copy(wrapAsGenericReadable(new StringReader(ASCII)), builder);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 11.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/CharStreamsTest.java
StringBuilder builder2 = new StringBuilder(); copied = CharStreams.copy(new StringReader(I18N), builder2); assertEquals(I18N, builder2.toString()); assertEquals(I18N.length(), copied); } public void testCopy_toStringBuilder_fromReadable() throws IOException { StringBuilder builder = new StringBuilder(); long copied = CharStreams.copy(wrapAsGenericReadable(new StringReader(ASCII)), builder);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 11.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableListMultimapTest.java
public static Test suite() { TestSuite suite = new TestSuite(); suite.addTest( ListMultimapTestSuiteBuilder.using(new ImmutableListMultimapGenerator()) .named("ImmutableListMultimap") .withFeatures(ALLOWS_ANY_NULL_QUERIES, SERIALIZABLE, KNOWN_ORDER, CollectionSize.ANY) .createTestSuite()); suite.addTest( ListMultimapTestSuiteBuilder.using(new ImmutableListMultimapCopyOfEntriesGenerator())
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 23.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
throw new IllegalBlockSizeRuntimeException(e); } catch (final BadPaddingException e) { throw new BadPaddingRuntimeException(e); } finally { offerDecryptoCipher(cipher); } return decrypted; } public String decryptoText(final String text) { try { return new String(decrypto(Base64Util.decode(text)), charsetName);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.1K bytes - Viewed (0) -
compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/MojoDescriptorTest.java
import static org.junit.jupiter.api.Assertions.assertEquals; class MojoDescriptorTest { @Test void getParameterMap() throws DuplicateParameterException { MojoDescriptor mojoDescriptor = new MojoDescriptor(); Parameter param1 = new Parameter(); param1.setName("param1"); param1.setDefaultValue("value1"); mojoDescriptor.addParameter(param1); assertEquals(1, mojoDescriptor.getParameters().size());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
manifests/addons/dashboards/istio-mesh.libsonnet
local queries = (import './queries.libsonnet').queries({ container: '', pod: '', component: '', app: '', }); dashboard.new('Istio Mesh Dashboard') + g.dashboard.withPanels( grid.makeGrid([ row.new('Global Traffic') + row.withPanels([ panels.timeSeries.statRps('Traffic Volume', queries.globalRequest, 'Total requests in the cluster'),
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jul 26 23:54:32 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestBulkFileWriter.java
final boolean update) { throw new UnsupportedOperationException("not yet."); } @Override public SuggestWriterResult delete(final Client client, final SuggestSettings settings, final String index, final String id) { throw new UnsupportedOperationException("not yet."); } @Override
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/ApiAdminFileconfigAction.java
throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); }); return asJson(new ApiResponse().status(Status.OK).result()); } protected EditBody createEditBody(final FileConfig entity) { final EditBody body = new EditBody(); copyBeanToBean(entity, body, copyOp -> { copyOp.excludeNull();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java
server = startFtpServer(FTP_PORT, username, password); Map<String, Object> params = new HashMap<String, Object>(); FtpAuthentication auth = new FtpAuthentication(); auth.setUsername(username); auth.setPassword(password); params.put(FtpClient.FTP_AUTHENTICATIONS_PROPERTY, new FtpAuthentication[] { auth }); ftpClient.setInitParameterMap(params);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 16.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractListeningExecutorServiceTest.java
*/ TestListeningExecutorService e = new TestListeningExecutorService(); TestRunnable runnable = new TestRunnable(); ListenableFuture<?> runnableFuture = e.submit(runnable); assertThat(runnableFuture).isInstanceOf(TrustedListenableFutureTask.class); assertTrue(runnableFuture.isDone()); assertTrue(runnable.run); ListenableFuture<String> callableFuture = e.submit(new TestCallable());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 3.2K bytes - Viewed (0)