Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,307 for itemout (0.52 sec)

  1. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    ginProp));Ze.start(Ve(this.$el,this.startProps),((t={opacity:1})[this.marginProp]=i,t)).then(function(){e.timeout&&(e.timer=setTimeout(e.close,e.timeout))})},events:((qr={click:function(t){Dt(t.target,'a[href="#"],a[href=""]')&&t.preventDefault(),this.close()}})[vt]=function(){this.timer&&clearTimeout(this.timer)},qr[wt]=function(){this.timeout&&(this.timer=setTimeout(this.close,this.timeout))},qr),methods:{close:function(t){function e(){Kt(i.$el,"close",[i]),ke(i.$el),Xr[i.pos].children.length|...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/timeout/Timeout.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.timeout;
    
    /**
     * Represents a timeout for some piece of work.
     */
    public interface Timeout {
        /**
         * Stops the timeout and returns whether the work did time out.
         */
        boolean stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 854 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/timeout.go

    // http.ErrHandlerTimeout. If timeoutFunc returns a nil timeout channel, no
    // timeout will be enforced. recordFn is a function that will be invoked whenever
    // a timeout happens.
    func WithTimeout(h http.Handler, timeoutFunc timeoutFunc) http.Handler {
    	return &timeoutHandler{h, timeoutFunc}
    }
    
    type timeoutHandler struct {
    	handler http.Handler
    	timeout timeoutFunc
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. tests/integration/security/testdata/requestauthn/timeout.yaml.tmpl

          app: {{ .To.ServiceName }}
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "{{ .JWTServer.JwksURI }}?delay=500ms"
        outputPayloadToHeader: "x-test-payload"
        forwardOriginalToken: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 23:24:31 UTC 2024
    - 370 bytes
    - Viewed (0)
  5. tests/integration/security/remote_jwks/testdata/requestauthn-with-se-timeout.yaml.tmpl

          app: {{ .dst }}
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "http://example.com:8000/jwks?delay={{ .delay }}"
        outputPayloadToHeader: "x-test-payload"
        forwardOriginalToken: true
        timeout: {{ .timeout }}
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: jwt-server-se
    spec:
      hosts:
      - example.com
      location: MESH_INTERNAL
      ports:
      - number: 8000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 675 bytes
    - Viewed (0)
  6. releasenotes/notes/set-tcp-idle-timeout-in-http-clusters.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 03:37:28 UTC 2024
    - 168 bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/TimeoutStepTest.groovy

            _ * work.timeout >> Optional.of(duration)
    
            then:
            timeoutHandler.start(_ as Thread, duration, work, null) >> timeout
    
            then:
            1 * delegate.execute(work, context) >> delegateResult
    
            then:
            1 * timeout.stop() >> false
            0 * _
        }
    
        def "executing over timeout fails"() {
            def duration = Duration.of(1, ChronoUnit.SECONDS)
            def timeout = Mock(Timeout)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/UtilTest.kt

          },
        ).hasMessage("timeout too small")
        assertThat(
          assertThrows<IllegalArgumentException> {
            checkDuration(
              "timeout",
              1L + Int.MAX_VALUE.toLong(),
              TimeUnit.MILLISECONDS,
            )
          },
        ).hasMessage("timeout too large")
      }
    
      @Test
      fun testDurationDuration() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. releasenotes/notes/add-idle-timeout-to-destination-rule-tcp-settings.yaml

    Jacek Ewertowski <******@****.***> 1702999098 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 15:18:18 UTC 2023
    - 189 bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/TimeoutAdapter.java

     */
    
    package org.gradle.integtests.fixtures.timeout;
    
    import spock.lang.Timeout;
    
    import java.lang.annotation.Annotation;
    import java.util.concurrent.TimeUnit;
    
    public class TimeoutAdapter implements Timeout {
    
        private int timeout;
        private TimeUnit unit;
    
        TimeoutAdapter(IntegrationTestTimeout timeout) {
            this.timeout = timeout.value();
            this.unit = timeout.unit();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top