Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 102 for reasons (0.4 sec)

  1. pkg/controller/job/job_controller_test.go

    			}
    		})
    	}
    }
    
    func getCondition(job *batch.Job, condition batch.JobConditionType, status v1.ConditionStatus, reason string) bool {
    	for _, v := range job.Status.Conditions {
    		if v.Type == condition && v.Status == status && v.Reason == reason {
    			return true
    		}
    	}
    	return false
    }
    
    func hasTrueCondition(job *batch.Job) *batch.JobConditionType {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        @Requires(value = IntegTestPreconditions.NotParallelExecutor, reason = """
    Don't run in parallel mode, as the expectation for the setup build are incorrect and running in parallel
    does not really make any difference to the coverage
    """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirTypeErrorType.kt

        @KaAnalysisNonPublicApi
        override val errorMessage: String
            get() = withValidityAssertion { coneType.diagnostic.reason }
    
        @KaAnalysisNonPublicApi
        override val presentableText: String?
            get() = withValidityAssertion {
                when (val diagnostic = coneType.diagnostic) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    	if condition := findConditionByType(list, cType); condition != nil {
    		if condition.Status != status || condition.Reason != reason || condition.Message != message {
    			*condition = *newCondition(cType, status, reason, message, now)
    			return list, true
    		}
    		return list, false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation:type-validation:invalid-use-of-type-annotation' : 'Incorrect use of type annotation',
            'validation:type-validation:not-cacheable-without-reason' : 'Not cacheable without reason',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - Added a "reason" field to the "image_garbage_collected_total" metric, allowing administrators to differentiate between images that were collected for reasons "age" vs "space".
       ([#123345](https://github.com/kubernetes/kubernetes/pull/123345), [@haircommander](https://github.com/haircommander))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirClassErrorType.kt

                qualifiers.joinToString(separator = ".") { it.name.asString() }
            }
    
        @KaAnalysisNonPublicApi
        override val errorMessage: String get() = withValidityAssertion { coneDiagnostic.reason }
    
        override val annotations: KaAnnotationList by cached {
            KaFirAnnotationListForType.create(coneType, builder)
        }
    
        override val candidateSymbols: Collection<KaClassLikeSymbol> by cached {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    func waitingState(cName string) v1.ContainerStatus {
    	return waitingStateWithReason(cName, "")
    }
    func waitingStateWithReason(cName, reason string) v1.ContainerStatus {
    	return v1.ContainerStatus{
    		Name: cName,
    		State: v1.ContainerState{
    			Waiting: &v1.ContainerStateWaiting{Reason: reason},
    		},
    	}
    }
    func waitingStateWithLastTermination(cName string) v1.ContainerStatus {
    	return v1.ContainerStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                    )
                ),
                equalTo("init script 'removed.init.gradle.kts' and 1 more have been removed")
            )
        }
    
        @Test
        fun `build script invalidation reason`() {
            val scriptFile = File("build.gradle.kts")
            assertThat(
                checkFingerprintGiven(
                    mock {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. pkg/kubelet/container/runtime.go

    	Status bool
    	// Reason is brief reason for the condition's last transition.
    	Reason string
    	// Message is human readable message indicating details about last transition.
    	Message string
    }
    
    // String formats the runtime condition into human readable string.
    func (c *RuntimeCondition) String() string {
    	return fmt.Sprintf("%s=%t reason:%s message:%s", c.Type, c.Status, c.Reason, c.Message)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top