Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,828 for longp (1.51 sec)

  1. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

            // When - Calculate delays for increasing attempts
            long delay1 = policy.getDelayMs(1);
            long delay2 = policy.getDelayMs(2);
            long delay3 = policy.getDelayMs(3);
            long delay4 = policy.getDelayMs(4);
            long delay10 = policy.getDelayMs(10);
    
            // Then
            assertEquals(1000, delay1);
            assertEquals(2000, delay2);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/HashCode.java

       * {@code long} value in little-endian order.
       *
       * @throws IllegalStateException if {@code bits() < 64}
       */
      public abstract long asLong();
    
      /**
       * If this hashcode has enough bits, returns {@code asLong()}, otherwise returns a {@code long}
       * value with {@code asBytes()} as the least-significant bytes and {@code 0x00} as the remaining
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/elevateword/EditForm.java

        public String updatedBy;
    
        /**
         * The timestamp when this elevate word configuration was last updated.
         * Stored as a long value representing milliseconds since epoch.
         * Used for audit trail and concurrency control.
         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
         * The version number of the elevate word configuration for optimistic locking.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/SmbFileHandleTest.java

        }
    
        /**
         * Test close(long) successfully.
         *
         * @throws CIFSException
         */
        @Test
        void testCloseWithLastWriteTime_success() throws CIFSException {
            long lastWriteTime = System.currentTimeMillis();
            smbFileHandle.close(lastWriteTime);
            verify(smbFileHandle, times(1)).close(lastWriteTime);
        }
    
        /**
         * Test close(long) when a CIFSException is thrown.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AtomicLongMapBasherTest.java

        ArrayList<Future<Long>> futures = new ArrayList<>();
        for (int i = 0; i < nTasks; i++) {
          futures.add(
              threadPool.submit(
                  new Callable<Long>() {
                    @Override
                    public Long call() {
                      long threadSum = 0;
                      for (int j = 0; j < getsPerTask; j++) {
                        long delta = random.nextInt(deltaRange);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java

            virtualHostHelper = new VirtualHostHelper();
        }
    
        public void test_getVirtualHostPath() {
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
                public Tuple3<String, String, String>[] getVirtualHosts() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java

         */
        private final long timeout;
    
        /**
         * The timestamp when this handle was created
         */
        private final long createTime;
    
        /**
         * The timestamp of the last access to this handle
         */
        private volatile long lastAccessTime;
    
        /**
         * The associated lease key if this handle has an SMB2 lease
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

        }
    
        public void test_edgeCases() {
            // Test with maximum values
            searchRenderData.setAllRecordCount(Long.MAX_VALUE);
            searchRenderData.setCurrentStartRecordNumber(Long.MAX_VALUE - 10);
            searchRenderData.setCurrentEndRecordNumber(Long.MAX_VALUE);
            searchRenderData.setPageSize(Integer.MAX_VALUE);
            searchRenderData.setAllPageCount(Integer.MAX_VALUE);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  9. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

      public val onResponseBody: SocketEffect?
      public val onResponseEnd: SocketEffect?
      public val shutdownServer: Boolean
    
      public val headersDelayNanos: Long
      public val bodyDelayNanos: Long
      public val trailersDelayNanos: Long
    
      /** The streams the server will push with this response. */
      public val pushPromises: List<PushPromise>
    
      public val settings: Settings
    
      public constructor(
        code: Int = 200,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  10. samples/guide/src/main/java/okhttp3/recipes/kt/UploadProgress.kt

      @Throws(Exception::class)
      fun run() {
        val progressListener =
          object : ProgressListener {
            private var firstUpdate = true
    
            override fun update(
              bytesWritten: Long,
              contentLength: Long,
              done: Boolean,
            ) {
              if (done) {
                println("completed")
              } else {
                if (firstUpdate) {
                  firstUpdate = false
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top