Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,000 for pending_ (0.57 sec)

  1. src/runtime/profbuf.go

    // that the output buffer is empty but that there is a pending overflow
    // entry, the reader will return a synthesized record for the pending
    // overflow entry.
    //
    // Only the writer can create or add to a pending overflow entry, but
    // either the reader or the writer can clear the pending overflow entry.
    // A pending overflow entry is indicated by the low 32 bits of 'overflow'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/concurrent/BuildServices.kt

            private
            val failure = AtomicReference<Throwable?>(null)
    
            private
            var pending: Future<*>? = null
    
            override fun io(action: () -> Unit) {
                // Fail fast
                checkForFailure()
                pending = submit(action)
            }
    
            override fun close() {
                pending?.get(settings.ioActionTimeoutMs, TimeUnit.MILLISECONDS)
                checkForFailure()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/PendingSourceSpec.groovy

    import spock.lang.Specification
    
    abstract class PendingSourceSpec extends Specification {
    
        abstract PendingSource<CharSequence> getSource()
    
        def "does not run side effects of pending providers when realizing pending elements"() {
            given:
            def sideEffect1 = Mock(ValueSupplier.SideEffect)
            def sideEffect2 = Mock(ValueSupplier.SideEffect)
            def sideEffect3 = Mock(ValueSupplier.SideEffect)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 12:24:17 UTC 2022
    - 3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/printer.go

    	sawParen := next == _Rparen || next == _Rbrace
    	for i := len(p.pending) - 1; i >= 0; i-- {
    		switch p.pending[i].kind {
    		case semi:
    			k := semi
    			if sawParen {
    				sawParen = false
    				k = none // eliminate semi
    			} else if sawNewline && impliesSemi(p.pending[i].last) {
    				sawNewline = false
    				k = none // eliminate semi
    			}
    			p.pending[i].kind = k
    		case newline:
    			sawNewline = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. src/time/tick_test.go

    	if synctimerchan {
    		tim.Reset(1)
    		Sleep(10 * Millisecond)
    		if pending := tim.Stop(); pending != true {
    			t.Errorf("tim.Stop() = %v, want true", pending)
    		}
    		noTick()
    
    		tim.Reset(Hour)
    		noTick()
    		if pending := tim.Reset(1); pending != true {
    			t.Errorf("tim.Stop() = %v, want true", pending)
    		}
    		assertTick()
    		Sleep(10 * Millisecond)
    		if isTicker {
    			assertTick()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileInjector.java

                            master.put(key, existing);
                            if (!pending.isEmpty()) {
                                predecessors.put(key, pending);
                                pending = new ArrayList<>();
                            }
                        } else {
                            pending.add(element);
                        }
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. pkg/probe/dialer_windows.go

    // The dialer reduces the TIME-WAIT period to 1 seconds instead of the OS default of 60 seconds.
    // Using 1 second instead of 0 because SO_LINGER socket option to 0 causes pending data to be
    // discarded and the connection to be aborted with an RST rather than for the pending data to be
    // transmitted and the connection closed cleanly with a FIN.
    // Ref: https://issues.k8s.io/89898
    func ProbeDialer() *net.Dialer {
    	dialer := &net.Dialer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 16:57:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java

                            master.put(key, existing);
                            if (!pending.isEmpty()) {
                                predecessors.put(key, pending);
                                pending = new ArrayList<>();
                            }
                        } else {
                            pending.add(element);
                        }
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. pkg/controller/certificates/cleaner/cleaner.go

    }
    
    // isPendingPastDeadline checks if the certificate has a Pending status and the
    // creation time of the CSR is passed the deadline that pending requests are
    // maintained for.
    func isPendingPastDeadline(logger klog.Logger, csr *capi.CertificateSigningRequest) bool {
    	// If there are no Conditions on the status, the CSR will appear via
    	// `kubectl` as `Pending`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/SortedSetElementSourceTest.groovy

        }
    
        def "realizes pending elements on flush"() {
            when:
            source.addPending(provider1)
            source.addPending(provider2)
            source.addPending(provider3)
            source.realizePending()
    
            then:
            source.iteratorNoFlush().collect() == ["provider1", "provider2", "provider3"]
        }
    
        def "realizes only pending elements with a given type"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:12:14 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top