Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 136 for clocks (0.2 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/ApplicationServiceRegistration.kt

     * kept unique by remembering which service registrars have been applied already.
     *
     * This whole object is a workaround for improper application sharing, see [KT-64167](https://youtrack.jetbrains.com/issue/KT-64167).
     */
    object ApplicationServiceRegistration {
        private val lock = ReentrantReadWriteLock()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 16 11:53:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/cmd/trace/testdata/testprog/main.go

    	}()
    	c, err := net.Dial("tcp", ln.Addr().String())
    	if err != nil {
    		log.Fatalf("dial failed: %v", err)
    	}
    	var tmp [1]byte
    	c.Read(tmp[:])
    	c.Close()
    
    	trace.Stop()
    }
    
    // blockingSyscall blocks the current goroutine for duration d in a syscall and
    // sends a message to done when it is done or if the syscall failed.
    func blockingSyscall(d time.Duration, done chan<- error) {
    	r, w, err := os.Pipe()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. tests/integration/helm/install_test.go

    				if !strings.Contains(err.Error(), msg) {
    					t.Errorf("Expected error %q to contain %q", err.Error(), msg)
    				}
    			}
    
    			// Now test field-level blocks with Telemetry
    			err = t.ConfigIstio().Eval("default", nil, extendedTelemetry).Apply()
    			if err == nil {
    				t.Error("Did not receive an error while applying extended Telemetry resource with stable admission policy")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

        /**
         * `true` if there are any control-flow statements that jump outside given statements.
         * Jumps include both loop jumps (`break` and `continue`) and `return`s.
         * Conditional blocks (`if`) and `throw`s are not considered as jumps.
         */
        public val hasJumps: Boolean,
    
        /**
         * `true` if next-executed instructions for the potential default expression and jump expressions are different.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    A `{ }` block is called a _lambda_ in Kotlin or a _closure_ in Groovy.
    
    Simply put, the `plugins{ }` block is a method invocation in which a Kotlin _lambda_ object or Groovy _closure_ object is passed as the argument.
    It is the short form for:
    
    [source,kotlin]
    ----
    plugins(function() {
        id("plugin")
    })
    ----
    
    Blocks are mapped to Gradle API methods.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

    import java.util.concurrent.SynchronousQueue
    import java.util.concurrent.ThreadPoolExecutor
    import java.util.concurrent.TimeUnit
    import java.util.concurrent.locks.ReentrantLock
    import okhttp3.internal.assertNotHeld
    import okhttp3.internal.connection.Locks.withLock
    import okhttp3.internal.connection.RealCall
    import okhttp3.internal.connection.RealCall.AsyncCall
    import okhttp3.internal.okHttpName
    import okhttp3.internal.threadFactory
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlocksCheck.kt

    import org.gradle.internal.declarativedsl.evaluator.checks.DocumentCheck
    import org.gradle.internal.declarativedsl.evaluator.checks.DocumentCheckFailure
    import org.gradle.internal.declarativedsl.evaluator.checks.DocumentCheckFailureLocation.FailedAtNode
    import org.gradle.internal.declarativedsl.evaluator.checks.DocumentCheckFailureReason
    import org.gradle.internal.declarativedsl.plugins.PluginsCollectingPluginsBlock
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

    import java.util.function.Consumer;
    
    /**
     * A simple persistent List implementation.
     * <p>
     * The main use-case is to create new lists with added elements creating the minimal amount of garbage.
     * Uses Cons/Nil as building blocks.
     */
    public abstract class PersistentList<T> implements Iterable<T> {
        @SuppressWarnings("unchecked")
        public static <T> PersistentList<T> of() {
            return (PersistentList<T>) NIL;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/DefaultGeneratedGradleJarCacheIntegrationTest.groovy

        def defaultGeneratedGradleJarCache = new DefaultGeneratedGradleJarCache(globalScopedCache, currentGradleVersion.getVersion())
    
        def cleanup() {
            defaultGeneratedGradleJarCache.close()
        }
    
        def "locks cache upon JAR creation"() {
            given:
            def startSecondInvocation = new CountDownLatch(1)
            def jarFile1
            def jarFile2
    
            when:
            concurrent.start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonStateControl.java

         * Requests that a running build be canceled.  Note that this method does NOT block until the operation has been cancelled.
         */
        void requestCancel();
    
        /**
         * Communicates a request for build cancellation. Note that this method blocks until the operation has been cancelled.
         *
         * <p>If any long running command is currently running, this method does block for certain time to give chance to perform cancellation, and if the command
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top