Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 119 for reasons (0.13 sec)

  1. android/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: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/test/test.go

    			return err
    		}
    		cmd.WaitDelay = testWaitDelay
    
    		base.StartSigHandlers()
    		t0 = time.Now()
    		err = cmd.Run()
    
    		if !isETXTBSY(err) {
    			// We didn't hit the race in #22315, so there is no reason to retry the
    			// command.
    			break
    		}
    	}
    
    	out := buf.Bytes()
    	a.TestOutput = &buf
    	t := fmt.Sprintf("%.3fs", time.Since(t0).Seconds())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. src/testing/testing.go

    			break
    		}
    	}
    
    	if c.raceErrorLogged.CompareAndSwap(false, true) {
    		// This is the first race we've encountered for this test.
    		// Mark the test as failed, and log the reason why only once.
    		// (Note that the race detector itself will still write a goroutine
    		// dump for any further races it detects.)
    		c.Errorf("race detected during execution of test")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

    ) : ElementToShorten() {
        override val nameToImport: FqName? = null
        override val importAllInParent: Boolean = false
    }
    
    /**
     * N.B. Does not subclass [ElementToShorten] because currently
     * there's no reason to do that.
     */
    private class ShortenKDocQualifier(
        val element: KDocName,
    )
    
    private class CollectingVisitor(private val collector: ElementsToShortenCollector) : FirVisitorVoid() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top