Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,030 for doPing (0.09 sec)

  1. src/runtime/time.go

    // The timer set t.ts must be non-nil and locked, t must be t.ts.heap[0], and updateHeap
    // takes care of moving t within the timers heap to preserve the heap invariants.
    // If ts == nil, then t must not be in a heap (or is in a heap that is
    // temporarily not maintaining its invariant, such as during timers.adjust).
    func (t *timer) updateHeap() (updated bool) {
    	assertWorldStoppedOrLockHeld(&t.mu)
    	t.trace("updateHeap")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/cache.go

    		// v0.0.0-, as was the case for all pseudo-versions during vgo development,
    		// since a v0.0.0- pseudo-version has lower precedence than pretty much any
    		// tagged version.
    		//
    		// In practice, we're only looking up by hash during initial conversion of a
    		// legacy config and during an explicit 'go get', and a little extra latency
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

        // being selected in phase 1
        Preconditions.checkState(boxedBoolean, "", (Object) boxedLong);
    
        // ternaries introduce their own problems. because of the ternary (which requires a boxing
        // operation) no overload can be selected in phase 1.  and in phase 2 it is ambiguous since it
        // matches with the second parameter being boxed and without it being boxed.  The cast to Object
        // avoids this.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/testx.go

    // issue 6907
    
    extern int CheckIssue6907C(_GoString_);
    
    // issue 7665
    
    extern void f7665(void);
    
    // issue 7978
    // Stack tracing didn't work during cgo code after calling a Go
    // callback.  Make sure GC works and the stack trace is correct.
    
    #include <stdint.h>
    
    // use ugly atomic variable sync since that doesn't require calling back into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //   - Add "InitConfiguration.SkipPhases", "JoinConfiguration.SkipPhases" to allow skipping
    //     a list of phases during kubeadm init/join command execution.
    //   - Add "InitConfiguration.NodeRegistration.ImagePullPolicy" and "JoinConfiguration.NodeRegistration.ImagePullPolicy"
    //     to allow specifying the images pull policy during kubeadm "init" and "join". The value must be one of "Always", "Never" or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. src/runtime/arena_test.go

    	t.Run("Finalizer", func(t *testing.T) {
    		testUserArenaLiveness(t, true)
    	})
    }
    
    func testUserArenaLiveness(t *testing.T, useArenaFinalizer bool) {
    	// Disable the GC so that there's zero chance we try doing anything arena related *during*
    	// a mark phase, since otherwise a bunch of arenas could end up on the fault list.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/go/types/object.go

    	// 1) client-supplied (via NewFunc with no signature), or
    	// 2) internally created but not yet type-checked.
    	// For case 1) we can't do anything; the client must know what they are doing.
    	// For case 2) we can use the information gathered by the resolver.
    	return obj.hasPtrRecv_
    }
    
    func (*Func) isDependency() {} // a function may be a dependency of an initialization expression
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. tests/integration/README.md

    1. Run one suite per command (e.g. `go test ./tests/integration/mysuite/...`)
    1. Disable parallelism with `-p 1` (e.g. `go test -p 1 ./...`). A major disadvantage to doing this is that it will also disable
    parallelism within the suite, even when explicitly specified via [RunParallel](#parallel-tests).
    
    ### Test Selection
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. src/runtime/mfinal.go

    	if gcphase != _GCoff {
    		// Currently we assume that the finalizer queue won't
    		// grow during marking so we don't have to rescan it
    		// during mark termination. If we ever need to lift
    		// this assumption, we can do it by adding the
    		// necessary barriers to queuefinalizer (which it may
    		// have automatically).
    		throw("queuefinalizer during GC")
    	}
    
    	lock(&finlock)
    	if finq == nil || finq.cnt == uint32(len(finq.fin)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

    class DynamicObjectIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            file('settings.gradle') << "rootProject.name = 'test'"
        }
    
        @ToBeFixedForConfigurationCache(because = "Task.getProject() during execution")
        def canAddDynamicPropertiesToProject() {
            createDirs("child")
            file("settings.gradle").writelns("include 'child'")
            file("build.gradle").writelns(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top