Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 171 for Exceeded (0.27 sec)

  1. src/context/example_test.go

    			err := waitOnCond(ctx, cond, func() bool { return false })
    			fmt.Println(err)
    		}()
    	}
    	wg.Wait()
    
    	// Output:
    	// context deadline exceeded
    	// context deadline exceeded
    	// context deadline exceeded
    	// context deadline exceeded
    }
    
    // This example uses AfterFunc to define a function which reads from a net.Conn,
    // stopping the read when a context is canceled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 20:24:28 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskTimeoutIntegrationTest.groovy

            and:
            with(result.groupedOutput.task(":block")) {
                assertOutputContains("Requesting stop of task ':block' as it has exceeded its configured timeout of 500ms.")
            }
    
            and:
            taskLogging(":block") == [
                "Requesting stop of task ':block' as it has exceeded its configured timeout of 500ms."
            ]
        }
    
        def "additional logging is emitted when task is slow to stop"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/net/http/responsecontroller.go

    		}
    	}
    }
    
    // SetReadDeadline sets the deadline for reading the entire request, including the body.
    // Reads from the request body after the deadline has been exceeded will return an error.
    // A zero value means no deadline.
    //
    // Setting the read deadline after it has been exceeded will not extend it.
    func (c *ResponseController) SetReadDeadline(deadline time.Time) error {
    	rw := c.rw
    	for {
    		switch t := rw.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/timeout/TimeoutHandler.java

    import javax.annotation.Nullable;
    import java.time.Duration;
    
    /**
     * Manages timeouts for threads, interrupting them if the timeout is exceeded.
     */
    public interface TimeoutHandler extends Stoppable {
        /**
         * Starts a timeout for the given thread. The thread is interrupted if the given timeout is exceeded.
         * The returned {@link Timeout} object must be used to stop the timeout once the thread has completed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. releasenotes/notes/48562.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 02 08:39:34 UTC 2024
    - 197 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tasks/timeout/tests/taskTimeout.out

    FAILURE: Build failed with an exception.
    
    * What went wrong:
    Execution failed for task ':hangingTask'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 132 bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/testing/internal/util/RetryUtil.groovy

                    return retryCount
                } catch (Throwable e) {
                    lastException = e
                    Thread.sleep(waitMsBetweenRetries)
                }
            }
    
            // Retry count exceeded, throwing last exception
            throw lastException
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

            final long maxSearchDocSize = fessConfig.getIndexerMaxSearchDocSizeAsInteger().longValue();
            final boolean exceeded = numFound > maxSearchDocSize;
            if (exceeded) {
                logger.warn("Max document size is exceeded({}>{}): {}", numFound, fessConfig.getIndexerMaxSearchDocSize(), queryBuilder);
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/validation_test.go

    			if err != nil {
    				t.Errorf("unexpected error: %v", err)
    			}
    
    			for _, valErr := range allErrs {
    				t.Errorf("unexpected error: %v", valErr)
    			}
    
    			// cost budget exceeded for the first validation rule
    			allErrs, err, _ = validate(ctx, field.NewPath("test"), ss, ss, f, false, false, 0)
    			meet := 0
    			for _, er := range allErrs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/TimeoutStep.java

                    //noinspection ResultOfMethodCallIgnored
                    Thread.interrupted();
                    //noinspection ThrowFromFinallyBlock
                    throw new GradleException("Timeout has been exceeded");
                }
            }
        }
    
        private R executeWithoutTimeout(UnitOfWork work, C context) {
            return delegate.execute(work, context);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top