Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 112 for timeEnd (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/plan9/errors_plan9.go

    	EINTR        = syscall.NewError("interrupted")
    	EPERM        = syscall.NewError("permission denied")
    	EBUSY        = syscall.NewError("no free devices")
    	ETIMEDOUT    = syscall.NewError("connection timed out")
    	EPLAN9       = syscall.NewError("not supported by plan 9")
    
    	// The following errors do not correspond to any
    	// Plan 9 system messages. Invented to support
    	// what package os and others expect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. src/syscall/errors_plan9.go

    	ENAMETOOLONG = NewError("file name too long")
    	EINTR        = NewError("interrupted")
    	EPERM        = NewError("permission denied")
    	EBUSY        = NewError("no free devices")
    	ETIMEDOUT    = NewError("connection timed out")
    	EPLAN9       = NewError("not supported by plan 9")
    
    	// The following errors do not correspond to any
    	// Plan 9 system messages. Invented to support
    	// what package os and others expect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 22 13:31:24 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/invocation/BuildInvocationDetails.java

         * The wall-clock time in millis that the build was started.
         *
         * The build is considered to have started as soon as the user, or some tool, initiated the build.
         * During continuous build, subsequent builds are timed from when changes are noticed.
         */
        long getBuildStartedTime();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 14 15:39:23 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. pkg/config/mesh/watcher_test_utils.go

    func (t *TestWatcher) Update(meshConfig *meshconfig.MeshConfig, timeout time.Duration) error {
    	t.HandleMeshConfig(meshConfig)
    	select {
    	case <-t.doneCh:
    		return nil
    	case <-time.After(timeout):
    		return errors.New("timed out waiting for mesh.Watcher handler to trigger")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 03 00:26:45 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpClientHelperTimeoutTest.groovy

            client.performRequest(new HttpGet("${httpServer.uri}/"), false)
    
            then:
            def e = thrown(HttpRequestException)
            e.cause instanceof SocketTimeoutException
            e.cause.message == 'Read timed out'
        }
    
        private HttpSettings getHttpSettings() {
            Stub(HttpSettings) {
                getProxySettings() >> Mock(HttpProxySettings)
                getSecureProxySettings() >> Mock(HttpProxySettings)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

            """
            openJpmsModulesForConfigurationCache()
            def waitForExpirationResult = executer.withArgument('waitForExpiration').runWithFailure()
    
            then:
            waitForExpirationResult.assertHasCause("Timed out waiting for expiration event")
    
            and:
            !file(EXPIRATION_EVENT).exists()
        }
    
        def "a daemon expiration listener receives expiration reasons when daemons run in the foreground"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. cluster/gce/gci/flexvolume_node_setup.sh

      until [[ $timeout -eq 0 ]]; do
        printf "."
        if [[ $( curl -s http://localhost:${healthz_port}/healthz ) == "ok" ]]; then
          return 0
        fi
        sleep 1
        timeout=$(( timeout-1 ))
      done
    
      # Timed out waiting for kubelet to become healthy.
      return 1
    }
    
    flex_clean() {
      echo
      echo "An error has occurred. Cleaning up..."
      echo
    
      umount_silent ${VOLUME_PLUGIN_DIR}
      rm -rf ${VOLUME_PLUGIN_DIR}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/RecordingCallback.kt

          }
          val nowMillis = TimeUnit.NANOSECONDS.toMillis(System.nanoTime())
          if (nowMillis >= timeoutMillis) break
          (this as Object).wait(timeoutMillis - nowMillis)
        }
    
        throw AssertionError("Timed out waiting for response to $url")
      }
    
      companion object {
        val TIMEOUT_MILLIS = TimeUnit.SECONDS.toMillis(10)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/RemovalListener.java

    /**
     * An object that can receive a notification when an entry is removed from a cache. The removal
     * resulting in notification could have occurred to an entry being manually removed or replaced, or
     * due to eviction resulting from timed expiration, exceeding a maximum size, or garbage collection.
     *
     * <p>An instance may be called concurrently by multiple threads to process different entries.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/TestLogHandler.kt

      fun takeAll(): List<String> {
        val list = mutableListOf<String>()
        logs.drainTo(list)
        return list
      }
    
      fun take(): String {
        return logs.poll(10, TimeUnit.SECONDS)
          ?: throw AssertionError("Timed out waiting for log message.")
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top