Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 265 for 0L (0.01 sec)

  1. samples/guide/src/main/java/okhttp3/recipes/UploadProgress.java

          delegate.writeTo(bufferedSink);
          bufferedSink.flush();
        }
    
        public Sink sink(Sink sink) {
          return new ForwardingSink(sink) {
            private long totalBytesWritten = 0L;
            private boolean completed = false;
    
            @Override
            public void write(Buffer source, long byteCount) throws IOException {
              super.write(source, byteCount);
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 4.2K bytes
    - Viewed (1)
  2. src/test/java/jcifs/smb1/smb1/InfoTest.java

            assertNotNull(info);
            assertEquals(attributes, info.getAttributes());
            assertEquals(create, info.getCreateTime());
            assertEquals(lastWrite, info.getLastWriteTime());
            assertEquals(0L, info.getSize());
        }
    
        @Test
        void testTrans2QueryPathUnsupportedLevel() throws Exception {
            Trans2QueryPathInformationResponse trans = new Trans2QueryPathInformationResponse(9999) {
            };
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/ChecksumHashFunction.java

          }
        }
    
        private static LinkageError newLinkageError(Throwable cause) {
          return new LinkageError(cause.toString(), cause);
        }
      }
    
      private static final long serialVersionUID = 0L;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/fscc/FileBasicInfo.java

            return this.lastWriteTime;
        }
    
        @Override
        public long getLastAccessTime() {
            return this.lastAccessTime;
        }
    
        @Override
        public long getSize() {
            return 0L;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Decodable#decode(byte[], int, int)
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java

        }
    
        public void test_constructor_withIdZero() {
            // Test when id is 0 (create mode)
            String[] inputs = { "x", "y" };
            CharMappingItem item = new CharMappingItem(0L, inputs, "result");
    
            assertEquals(0L, item.getId());
            assertNotNull(item.getNewInputs());
            assertEquals("result", item.getNewOutput());
            // NewInputs should be same as inputs for id=0
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/AtomicDouble.java

     * @since 11.0
     */
    @GwtIncompatible
    @J2ktIncompatible
    @ReflectionSupport(value = ReflectionSupport.Level.FULL)
    public class AtomicDouble extends Number {
      private static final long serialVersionUID = 0L;
    
      private transient volatile long value;
    
      private static final AtomicLongFieldUpdater<AtomicDouble> updater =
          AtomicLongFieldUpdater.newUpdater(AtomicDouble.class, "value");
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/SmbWatchHandleImplTest.java

        // close() should close underlying handle with 0L when valid
        @Test
        @DisplayName("close() closes underlying handle when valid")
        void close_validHandle_invokesClose() throws Exception {
            when(handle.isValid()).thenReturn(true);
            SmbWatchHandleImpl sut = new SmbWatchHandleImpl(handle, 0, false);
    
            sut.close();
    
            verify(handle, times(1)).close(0L);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java

            when(mockFile1.lastAccess()).thenReturn(System.currentTimeMillis() - 1800000);
    
            when(mockFile2.getName()).thenReturn("subfolder");
            when(mockFile2.length()).thenReturn(0L);
            when(mockFile2.lastModified()).thenReturn(System.currentTimeMillis() - 1800000);
            when(mockFile2.isDirectory()).thenReturn(true);
            when(mockFile2.getAttributes()).thenReturn(0x10); // FILE_ATTRIBUTE_DIRECTORY
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java

                assertEquals(chunkCount, SMBUtil.readInt4(buffer, SOURCE_KEY_SIZE));
    
                // Verify some chunks
                int offset = HEADER_SIZE;
                assertEquals(0L, SMBUtil.readInt8(buffer, offset));
                assertEquals(0L, SMBUtil.readInt8(buffer, offset + 8));
                assertEquals(0, SMBUtil.readInt4(buffer, offset + 16));
    
                offset = HEADER_SIZE + ((chunkCount - 1) * CHUNK_SIZE);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/base/SuppliersTest.java

        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0L;
      }
    
      static class SerializableThrowingSupplier extends ThrowingSupplier implements Serializable {
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0L;
      }
    
      static void checkMemoize(CountingSupplier countingSupplier, Supplier<Integer> memoizedSupplier) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.9K bytes
    - Viewed (0)
Back to top