Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,159 for reason2 (0.14 sec)

  1. pilot/pkg/xds/discovery.go

    	case 2:
    		return fmt.Sprintf("%s:%d and %s:%d", reason0, reason0Cnt, reason1, reason1Cnt)
    	default:
    		return fmt.Sprintf("%s:%d and %d(%d) more reasons", reason0, reason0Cnt, len(req.Reason)-1,
    			req.Reason.Count()-reason0Cnt)
    	}
    }
    
    func doSendPushes(stopCh <-chan struct{}, semaphore chan struct{}, queue *PushQueue) {
    	for {
    		select {
    		case <-stopCh:
    			return
    		default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation.go

    	}
    
    	if len(condition.Reason) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("reason"), "must be set"))
    	} else {
    		for _, currErr := range isValidConditionReason(condition.Reason) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("reason"), condition.Reason, currErr))
    		}
    		if len(condition.Reason) > maxReasonLen {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  3. pkg/kubelet/lifecycle/predicate.go

    	podWithoutMissingExtendedResources := removeMissingExtendedResources(admitPod, nodeInfo)
    
    	reasons := generalFilter(podWithoutMissingExtendedResources, nodeInfo)
    	fit := len(reasons) == 0
    	if !fit {
    		reasons, err = w.admissionFailureHandler.HandleAdmissionFailure(admitPod, reasons)
    		fit = len(reasons) == 0 && err == nil
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation_test.go

    			Reason: "valid,val:",
    		}},
    		validateErrs: func(t *testing.T, errs field.ErrorList) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

            NodeBuilder maybeByReason(String reason) {
                ignoreReasons.add(reason)
                this
            }
    
            NodeBuilder byConstraint(String reason = null) {
                if (reason == null) {
                    reasons << ComponentSelectionCause.CONSTRAINT.defaultReason
                } else {
                    reasons << "${ComponentSelectionCause.CONSTRAINT.defaultReason}: $reason".toString()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

        def "resolution result API gives access to dependency reasons in case of conflict"() {
            given:
            mavenRepo.with {
                def leaf1 = module('org.test', 'leaf', '1.0').publish()
                def leaf2 = module('org.test', 'leaf', '1.1').publish()
                module('org.test', 'a', '1.0')
                    .dependsOn(leaf1, reason: 'first reason')
                    .withModuleMetadata()
                    .publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    				}
    				t.Logf("expecting the following differences from the example encoding on re-encode:\n%s", diff)
    				t.Logf("reasons for encoding differences:")
    				for _, reason := range tc.reasons {
    					t.Logf("- %s", reason)
    				}
    
    			}
    
    			if diff := cmp.Diff(expected, actual); diff != "" {
    				t.Errorf("re-encoded object differs from expected:\n%s", diff)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

            def reasons = []
            invalidationDetails.changedFiles.each { file ->
                reasons.add("file '${file.replace('/', File.separator)}'")
            }
            if (invalidationDetails.changedGradleProperty) {
                reasons.add("the set of Gradle properties")
            }
            if (invalidationDetails.changedSystemProperty != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. pkg/kubelet/preemption/preemption.go

    		return failureReasons, nil
    	}
    	// InsufficientResourceError is not a reason to reject a critical pod.
    	// Instead of rejecting, we free up resources to admit it, if no other reasons for rejection exist.
    	nonResourceReasons := []lifecycle.PredicateFailureReason{}
    	resourceReasons := []*admissionRequirement{}
    	for _, reason := range failureReasons {
    		if r, ok := reason.(*lifecycle.InsufficientResourceError); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    ==== Selection Reasons
    
    The "Selection reasons" section of the dependency insight report lists the reasons why a dependency was selected.
    Have a look at the table below to understand the meaning of the different terms used:
    
    .Terminology
    [%header%autowidth,compact]
    |===
    | Reason    | Meaning
    
    | (Absent)
    | No reason other than a reference, direct or transitive, was present.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top