Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 338 for initVal (0.03 sec)

  1. android/guava/src/com/google/common/collect/Lists.java

        return Ints.saturatedCast(5L + arraySize + (arraySize / 10));
      }
    
      /**
       * Creates an {@code ArrayList} instance backed by an array with the specified initial size;
       * simply delegates to {@link ArrayList#ArrayList(int)}.
       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 42.2K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/path-params.md

    Así que, puedes usarlo con:
    
    {* ../../docs_src/path_params/tutorial004.py hl[6] *}
    
    /// tip | Consejo
    
    Podrías necesitar que el parámetro contenga `/home/johndoe/myfile.txt`, con una barra inclinada (`/`) inicial.
    
    En ese caso, la URL sería: `/files//home/johndoe/myfile.txt`, con una doble barra inclinada (`//`) entre `files` y `home`.
    
    ///
    
    ## Resumen
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java

            }
    
            @Test
            @DisplayName("Should handle multiple parameter updates")
            void testMultipleParameterUpdates() {
                // Initial setup
                request.setData(new byte[100], 0, 100);
                request.setOffset(1000L);
                request.setRemainingBytes(500);
                request.setWriteFlags(0x01);
    
                // Update parameters
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                    iterator--;
                }
            }
    
            var start, end, range;
    
            //if no start/end dates set, check if an input element contains initial values
            if (typeof options.startDate === 'undefined' && typeof options.endDate === 'undefined') {
                if ($(this.element).is(':text')) {
                    var val = $(this.element).val(),
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

        return new Builder(initialCapacity);
      }
    
      /**
       * Returns a new, empty builder for {@link ImmutableLongArray} instances, with a default initial
       * capacity. The returned builder is not thread-safe.
       *
       * <p><b>Performance note:</b> The {@link ImmutableLongArray} that is built will very likely
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 22K bytes
    - Viewed (0)
  6. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

      /**
       * Returns the number of additional elements that this queue can ideally (in the absence of memory
       * or resource constraints) accept without blocking. This is always equal to the initial capacity
       * of this queue less the current {@code size} of this queue.
       *
       * <p>Note that you cannot always tell if an attempt to insert an element will succeed by
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/ImmutableIntArray.java

        return new Builder(initialCapacity);
      }
    
      /**
       * Returns a new, empty builder for {@link ImmutableIntArray} instances, with a default initial
       * capacity. The returned builder is not thread-safe.
       *
       * <p><b>Performance note:</b> The {@link ImmutableIntArray} that is built will very likely occupy
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 21.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

        }
    
        public void test_constructor() {
            // Test that constructor creates a valid instance
            QueryFieldConfig config = new QueryFieldConfig();
            assertNotNull(config);
    
            // Verify initial state (fields should be null before init)
            assertNull(config.responseFields);
            assertNull(config.scrollResponseFields);
            assertNull(config.cacheResponseFields);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            }
            if (originalJobHelper != null) {
                ComponentUtil.register(originalJobHelper, "jobHelper");
            }
    
            super.tearDown();
        }
    
        // Test constructor and initial state
        public void test_constructor() {
            assertNotNull(execJob);
            assertNull(execJob.jobExecutor);
            assertNull(execJob.sessionId);
            assertTrue(execJob.useLocalFesen);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Reader.kt

          source = continuation,
          headerTableSizeSetting = 4096,
        )
    
      @Throws(IOException::class)
      fun readConnectionPreface(handler: Handler) {
        if (client) {
          // The client reads the initial SETTINGS frame.
          if (!nextFrame(true, handler)) {
            throw IOException("Required SETTINGS preface not received")
          }
        } else {
          // The server reads the CONNECTION_PREFACE byte string.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top