- Sort Score
- Num 10 results
- Language All
Results 211 - 220 of 5,478 for newE (0.02 seconds)
-
android/guava-tests/test/com/google/common/collect/MultimapsCollectionTest.java
@Override public String[] createKeyArray(int length) { return new String[length]; } @Override public String[] createValueArray(int length) { return new String[length]; } @Override public SampleElements<String> sampleKeys() { return new SampleElements<>("one", "two", "three", "four", "five"); } @OverrideCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Sep 24 22:52:18 GMT 2025 - 28.4K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AbstractService.java
switch (previous) { case NEW: snapshot = new StateSnapshot(TERMINATED); enqueueTerminatedEvent(NEW); break; case STARTING: snapshot = new StateSnapshot(STARTING, true, null); enqueueStoppingEvent(STARTING); doCancelStart(); break; case RUNNING: snapshot = new StateSnapshot(STOPPING);
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Feb 19 21:24:11 GMT 2025 - 20.3K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java
// Multiple write calls should accumulate ContentOutputStream cos = new ContentOutputStream(10, Curl.tmpDir); cos.write(new byte[] { 0, 1, 2 }); assertTrue(cos.isInMemory()); cos.write(new byte[] { 3, 4 }); assertTrue(cos.isInMemory()); cos.write(new byte[] { 5 }); assertTrue(cos.isInMemory()); assertFalse(cos.done); cos.close();Created: Sat Dec 20 09:13:53 GMT 2025 - Last Modified: Wed Nov 12 14:01:04 GMT 2025 - 9.9K bytes - Click Count (0) -
src/main/java/jcifs/context/BaseContext.java
this.config = config; this.dfs = new DfsImpl(this); this.sidResolver = new SIDCacheImpl(this); this.urlHandler = new Handler(this); this.nameServiceClient = new NameServiceClientImpl(this); this.bufferCache = new BufferCacheImpl(this.config); this.transportPool = new SmbTransportPoolImpl(); final String defUser = config.getDefaultUsername();Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.5K bytes - Click Count (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
private final AtomicLong totalFailures = new AtomicLong(0); private final AtomicLong totalSuccesses = new AtomicLong(0); private final AtomicLong totalCircuitOpenRejections = new AtomicLong(0); private final AtomicLong totalTimeInOpen = new AtomicLong(0); private final AtomicLong openStateStartTime = new AtomicLong(0); // Event listeners
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 33.4K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java
Server server = new Server(); server.setId("repository"); server.setUsername("jason"); server.setPassword("abc123"); Xpp3Dom httpConfiguration = new Xpp3Dom("httpConfiguration"); Xpp3Dom httpHeaders = new Xpp3Dom("httpHeaders"); Xpp3Dom property = new Xpp3Dom("property"); Xpp3Dom headerName = new Xpp3Dom("name"); headerName.setValue("header");
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 19.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/io/Smb2FlushResponseTest.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.3K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java
Xpp3Dom reportPlugins = configuration.getChild("reportPlugins"); if (reportPlugins != null) { // new-style report configuration already present: warn since this new style has been deprecated // in favor of classical reporting section MSITE-647 / MSITE-684 problems.add(new ModelProblemCollectorRequest(Severity.WARNING, Version.BASE)
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 9.4K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java
final File contentFile = createContentFile(".txt", content.getBytes()); final CommandExtractor extractor = new CommandExtractor(); extractor.command = getCommand(scriptFile); final Map<String, String> params = new HashMap<String, String>(); final ExtractData text = extractor.getText(new FileInputStream(contentFile), params); assertEquals(content, text.getContent()); }
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Mar 15 06:52:00 GMT 2025 - 9.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/WrappingExecutorServiceTest.java
public void testExecute() { MockExecutor mock = new MockExecutor(); TestExecutor testExecutor = new TestExecutor(mock); testExecutor.execute(doNothing()); mock.assertLastMethodCalled("execute"); } public void testSubmit() throws InterruptedException, ExecutionException { { MockExecutor mock = new MockExecutor(); TestExecutor testExecutor = new TestExecutor(mock);
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Jul 14 14:44:08 GMT 2025 - 9.9K bytes - Click Count (0)