Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 283 for wall (0.42 sec)

  1. src/runtime/mgcpacer.go

    	// gcGoalUtilization and gcBackgroundUtilization will be made up by
    	// mark assists. The scheduler will aim to use within 50% of this
    	// goal.
    	//
    	// As a general rule, there's little reason to set gcBackgroundUtilization
    	// < gcGoalUtilization. One reason might be in mostly idle applications,
    	// where goroutines are unlikely to assist at all, so the actual
    	// utilization will be lower than the goal. But this is moot point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    	for {
    		w := q.peekFront()
    		if w == nil || w.cancelCtx != nil {
    			return
    		}
    		q.popFront()
    	}
    }
    
    // all iterates over all wantConns in the queue.
    // The caller must not modify the queue while iterating.
    func (q *wantConnQueue) all(f func(*wantConn)) {
    	for _, w := range q.head[q.headPos:] {
    		f(w)
    	}
    	for _, w := range q.tail {
    		f(w)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * cancelled, cancellation will be propagated to {@code delegate}. Additionally, any call to
       * {@code setFuture} after any cancellation will propagate cancellation to the supplied {@code
       * Future}.
       *
       * <p>Note that, even if the supplied future is cancelled and it causes this future to complete,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * cancelled, cancellation will be propagated to {@code delegate}. Additionally, any call to
       * {@code setFuture} after any cancellation will propagate cancellation to the supplied {@code
       * Future}.
       *
       * <p>Note that, even if the supplied future is cancelled and it causes this future to complete,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    			// Nothing was saved; we will fall back into the same
    			// condition in the next call to this method
    			return err
    		}
    		return nil
    	} else /* pv.Spec.ClaimRef != nil */ {
    		// Volume is bound to a claim.
    		if volume.Spec.ClaimRef.UID == "" {
    			// The PV is reserved for a PVC; that PVC has not yet been
    			// bound to this PV; the PVC sync will handle it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. src/runtime/zcallback_windows.s

    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:29:51 UTC 2023
    - 63.1K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/EventListenerTest.kt

            .build(),
        )
        val call =
          client.newCall(
            Request.Builder()
              .url(server.url("/"))
              .build(),
          )
        call.enqueue(
          object : Callback {
            override fun onFailure(
              call: Call,
              e: IOException,
            ) {
            }
    
            override fun onResponse(
              call: Call,
              response: Response,
            ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

              call: Call,
              e: IOException,
            ) {
              latch.countDown()
            }
    
            override fun onResponse(
              call: Call,
              response: Response,
            ) {
              fail("")
            }
          },
        )
        assertThat(server.takeRequest().sequenceNumber)
          .isEqualTo(expectedSequenceNumber)
        responseDequeuedLatch!!.await()
        call.cancel()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/sidecar_simulation_test.go

    	} {
    		calls = append(calls, simulation.Expect{
    			Name: fmt.Sprintf("%s-%d", call.call.Protocol, call.call.Port),
    			Call: call.call,
    			Result: simulation.Result{
    				ClusterMatched: fmt.Sprintf("outbound|%d||%s.default.svc.cluster.local", call.call.Port, call.expected),
    			},
    		})
    	}
    	service := `apiVersion: v1
    kind: Service
    metadata:
      name: alias
      namespace: default
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            call("{ it.conventionProperty = 'value' }", bean);
            assertThat(conventionObject.getConventionProperty(), equalTo("value"));
            assertThat(call("{ it.hasProperty('conventionProperty') }", bean), notNullValue());
            assertThat(call("{ it.conventionProperty }", bean), equalTo((Object) "value"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
Back to top