Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 583 for timeout (0.05 seconds)

  1. buildscripts/test-timeout.sh

    			exit 1
    		fi
    
    		(cd "${MC_BUILD_DIR}" && go build -o "$C_PWD/mc")
    
    		# remove mc source.
    		purge "${MC_BUILD_DIR}"
    	fi
    
    	"${MINIO[@]}" --address ":$start_port" --read-header-timeout ${srv_hdr_timeout}s --idle-timeout ${srv_idle_timeout}s "${WORK_DIR}/disk/" >"${WORK_DIR}/server1.log" 2>&1 &
    	pid=$!
    	disown $pid
    	sleep 1
    
    	if ! ps -p ${pid} 1>&2 >/dev/null; then
    		echo "server1 log:"
    Created: 2026-04-05 19:28
    - Last Modified: 2024-12-02 13:21
    - 2.9K bytes
    - Click Count (0)
  2. cmd/dynamic-timeouts.go

    		// so decrease the timeout towards 25 % of maximum time spent.
    		maxDur = maxDur * 125 / 100
    
    		timeout := atomic.LoadInt64(&dt.timeout)
    		if maxDur < time.Duration(timeout) {
    			// Move 50% toward the max.
    			timeout = (int64(maxDur) + timeout) / 2
    		}
    		if timeout < dt.minimum {
    			timeout = dt.minimum
    		}
    		atomic.StoreInt64(&dt.timeout, timeout)
    	}
    Created: 2026-04-05 19:28
    - Last Modified: 2025-08-29 02:39
    - 4.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/suggest/settings/TimeoutSettings.java

         * Sets the index timeout.
         * @param timeout The index timeout.
         */
        public void setIndexTimeout(final String timeout) {
            this.indexTimeout = timeout;
        }
    
        /**
         * Gets the bulk timeout.
         * @return The bulk timeout.
         */
        public String getBulkTimeout() {
            return bulkTimeout;
        }
    
        /**
         * Sets the bulk timeout.
         * @param timeout The bulk timeout.
         */
    Created: 2026-04-17 09:08
    - Last Modified: 2026-02-01 12:48
    - 3.5K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/util/concurrent/Uninterruptibles.java

       * uninterruptibly.
       */
      @J2ktIncompatible
      @GwtIncompatible // concurrency
      @SuppressWarnings("GoodTime") // should accept a java.time.Duration
      public static boolean awaitUninterruptibly(CountDownLatch latch, long timeout, TimeUnit unit) {
        boolean interrupted = false;
        try {
          long remainingNanos = unit.toNanos(timeout);
    Created: 2026-04-03 12:43
    - Last Modified: 2026-01-29 23:24
    - 22.5K bytes
    - Click Count (0)
  5. src/test/java/jcifs/netbios/NameServiceClientImplTest.java

        }
    
        @Test
        @DisplayName("Should handle broadcast resolution timeout")
        @Timeout(value = 1, unit = TimeUnit.SECONDS) // Very short timeout
        void testBroadcastTimeout() {
            // Configure for broadcast-only resolution with very short timeout
            when(mockConfig.getResolveOrder()).thenReturn(Arrays.asList(ResolverType.RESOLVER_BCAST));
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-30 05:58
    - 11K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilder.java

        }
    
        /**
         * Sets the scroll timeout.
         * @param timeout The scroll timeout.
         * @return This builder instance.
         */
        public SuggestSettingsBuilder scrollTimeout(final String timeout) {
            timeoutSettings.setScrollTimeout(timeout);
            return this;
        }
    
        /**
         * Sets the search timeout.
         * @param timeout The search timeout.
         * @return This builder instance.
         */
    Created: 2026-04-17 09:08
    - Last Modified: 2026-02-01 12:48
    - 3.9K bytes
    - Click Count (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        FUTURE(Timeout.SMALL, Timeout.MAX),
        SMALL(Timeout.SMALL),
        FINITE(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO, Timeout.SMALL),
        INFINITE(Timeout.LARGE, Timeout.MAX);
    
        final ImmutableList<Timeout> timeouts;
    
        TimeoutsToUse(Timeout... timeouts) {
          this.timeouts = ImmutableList.copyOf(timeouts);
        }
      }
    
      /** Possible outcomes of calling any of the methods under test. */
    Created: 2026-04-03 12:43
    - Last Modified: 2026-03-16 22:45
    - 26.7K bytes
    - Click Count (0)
  8. src/main/java/jcifs/smb1/util/transport/Transport.java

                doSend(request);
                response.expiration = System.currentTimeMillis() + timeout;
                while (!response.isReceived) {
                    wait(timeout);
                    timeout = response.expiration - System.currentTimeMillis();
                    if (timeout <= 0) {
                        throw new TransportException(name + " timedout waiting for response to " + request);
                    }
                }
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-16 01:32
    - 11.3K bytes
    - Click Count (0)
  9. cmd/dynamic-timeouts_test.go

    	timeout := newDynamicTimeout(time.Minute, time.Second)
    
    	initial := timeout.Timeout()
    
    	for range dynamicTimeoutLogSize {
    		timeout.LogFailure()
    	}
    
    	adjusted := timeout.Timeout()
    
    	for range dynamicTimeoutLogSize {
    		timeout.LogFailure()
    	}
    
    	adjustedAgain := timeout.Timeout()
    
    	if initial >= adjusted || adjusted >= adjustedAgain {
    		t.Errorf("Failure to increase timeout multiple times")
    	}
    Created: 2026-04-05 19:28
    - Last Modified: 2025-08-29 02:39
    - 5.2K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilderTest.java

        }
    
        @Test
        public void testScrollTimeout() {
            // Test setting scroll timeout
            SuggestSettingsBuilder result = builder.scrollTimeout("10s");
            assertEquals(builder, result); // Test method chaining
            assertEquals("10s", builder.timeoutSettings.scrollTimeout);
    
            // Test updating scroll timeout
            builder.scrollTimeout("30s");
    Created: 2026-04-17 09:08
    - Last Modified: 2025-09-01 13:33
    - 14.4K bytes
    - Click Count (0)
Back to Top