Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 182 for Gleason (0.12 sec)

  1. src/runtime/mgc.go

    	mp := acquirem()
    	mp.preemptoff = "gcing"
    	mp.traceback = 2
    	curgp := mp.curg
    	// N.B. The execution tracer is not aware of this status
    	// transition and handles it specially based on the
    	// wait reason.
    	casGToWaitingForGC(curgp, _Grunning, waitReasonGarbageCollection)
    
    	// Run gc on the g0 stack. We do this so that the g stack
    	// we're currently running on will no longer change. Cuts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers_test.go

    	pod := newNamedPod("test", "ns", "test", false)
    	gracePeriodOverride := int64(0)
    	err := killPodFunc(pod, false, &gracePeriodOverride, func(status *v1.PodStatus) {
    		status.Phase = v1.PodFailed
    		status.Reason = "reason"
    		status.Message = "message"
    	})
    	if err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    	drainAllWorkers(podWorkers)
    	if len(processed) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		cacher.clock.Sleep(1 * time.Second)
    	}()
    
    	// Watch hangs waiting on watchcache being initialized.
    	// Ensure that it terminates when its context is cancelled
    	// (e.g. the request is terminated for whatever reason).
    	_, err = cacher.Watch(ctx, "pods/ns", storage.ListOptions{ResourceVersion: "0"})
    	if !utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

         * Also, since configurations can have multiple parents, it would be very easy to face a situation
         * where ordering of the "extendsFrom" clauses trigger different resolution results.
         *
         * There's another reason for not allowing inheritance: it allows more precise selection, while still
         * allowing the build author/plugin writer to decide what attributes should be copied to child configurations.
         *
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Sets.java

      /**
       * An unmodifiable view of a set which may be backed by other sets; this view will change as the
       * backing sets do. Contains methods to copy the data into a new set which will then remain
       * stable. There is usually no reason to retain a reference of type {@code SetView}; typically,
       * you either use it as a plain {@link Set}, or immediately invoke {@link #immutableCopy} or
       * {@link #copyInto} and forget the {@code SetView} itself.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  6. src/runtime/asm_amd64.s

    	CALL	runtimeĀ·debugCallCheck(SB)
    	MOVQ	8(SP), AX
    	TESTQ	AX, AX
    	JZ	good
    	// The safety check failed. Put the reason string at the top
    	// of the stack.
    	MOVQ	AX, 0(SP)
    	MOVQ	16(SP), AX
    	MOVQ	AX, 8(SP)
    	// Set R12 to 8 and invoke INT3. The debugger should get the
    	// reason a call can't be injected from the top of the stack
    	// and resume execution.
    	MOVQ	$8, R12
    	BYTE	$0xcc
    	JMP	restore
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	GetShellWindow() (shellWindow HWND) = user32.GetShellWindow
    //sys	MessageBox(hwnd HWND, text *uint16, caption *uint16, boxtype uint32) (ret int32, err error) [failretval==0] = user32.MessageBoxW
    //sys	ExitWindowsEx(flags uint32, reason uint32) (err error) = user32.ExitWindowsEx
    //sys	shGetKnownFolderPath(id *KNOWNFOLDERID, flags uint32, token Token, path **uint16) (ret error) = shell32.SHGetKnownFolderPath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Don't stop at the first build failure and <<configuration_cache#config_cache:usage:ignore_problems, turn problems into warnings>> to discover how your build and plugins behave.
    If a build fails, use the HTML report to reason about the reported problems related to the failure.
    Continue running more useful tasks.
    +
    This will give you a good overview of the nature of the problems your build and plugins are facing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            failureDescriptionContains("- Type 'Consumer' property 'counter' doesn't have a configured value.")
            failureDescriptionContains("Reason: This property isn't marked as optional and no value has been configured.")
        }
    
        def "injection by name does not fail validation if service is not found but property marked as @Optional"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    }
    
    func verifyActions(t *testing.T, expected, actual *podActions, desc string) {
    	if actual.ContainersToKill != nil {
    		// Clear the message and reason fields since we don't need to verify them.
    		for k, info := range actual.ContainersToKill {
    			info.message = ""
    			info.reason = ""
    			actual.ContainersToKill[k] = info
    		}
    	}
    	assert.Equal(t, expected, actual, desc)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top