Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,159 for reason2 (0.4 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    		// Call Handle in a separate goroutine.
    		// The reason for it is that from APF point of view, the request processing
    		// finishes as soon as watch is initialized (which is generally orders of
    		// magnitude faster then the watch request itself). This means that Handle()
    		// call finishes much faster and for performance reasons we want to reduce
    		// the number of running goroutines - so we run the shorter thing in a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    				}
    				if policyDecision.Reason != validateResult.Decisions[i].Reason {
    					t.Errorf("Expected policy decision reason '%v' but got '%v'", policyDecision.Reason, validateResult.Decisions[i].Reason)
    				}
    			}
    			require.Equal(t, len(tc.auditEvaluations), len(validateResult.AuditAnnotations))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/events_test.go

    				EventTime:           someTime,
    				ReportingController: "k8s.io/my-controller",
    				ReportingInstance:   "node-xyz",
    				Action:              "Do",
    				Reason:              "Yeees",
    				Type:                "Normal",
    			},
    			valid: false,
    			msg:   "forbidden updates to reason",
    		},
    		{
    			newEvent: &core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "test",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  4. istioctl/pkg/checkinject/checkinject_test.go

    					Reason:   "Namespace label istio-injection=enabled matches",
    				},
    				{
    					Name:     "istio-sidecar-injector-1-16",
    					Revision: "1-16",
    					Reason:   "No matching namespace labels (istio.io/rev=1-16) or pod labels (istio.io/rev=1-16)",
    				},
    				{
    					Name:     "istio-sidecar-injector-deactivated",
    					Revision: "default",
    					Reason:   "The injection webhook is deactivated, and will never match labels.",
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

                type 'Foo'
                property 'bar'
                description 'with some description'
                reason 'some reason'
            }
    
            then:
            outputEquals """
    In plugin 'com.foo.bar' type 'Foo' property 'bar' with some description.
    
    Reason: Some reason.
    """
        }
    
        private File dummyLocation(String path = '/tmp/foo') {
            Stub(File) {
                getAbsolutePath() >> path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/helpers_test.go

    					Status:             ConditionTrue,
    					Reason:             "Accepted",
    					Message:            "the initial names have been accepted",
    					LastTransitionTime: metav1.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC),
    				},
    			},
    			newCondition: CustomResourceDefinitionCondition{
    				Type:               Established,
    				Status:             ConditionFalse,
    				Reason:             "NotAccepted",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 17 19:08:05 UTC 2019
    - 15.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/errors/errors.go

    	if status.ErrStatus.Details == nil {
    		status.ErrStatus.Details = &metav1.StatusDetails{}
    	}
    	reason := r.reason
    	if len(reason) == 0 {
    		reason = "ClientError"
    	}
    	status.ErrStatus.Details.Causes = append(status.ErrStatus.Details.Causes, metav1.StatusCause{
    		Type:    metav1.CauseType(reason),
    		Message: err.Error(),
    	})
    	return &status.ErrStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 21 03:41:32 UTC 2022
    - 30.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

                because 'also check dependency reasons'
            }
        }
        task jar(type: Jar) { archiveBaseName = 'a' }
        artifacts { api jar }
    }
    project(":b") {
        configurations {
            compile
        }
        dependencies {
            compile(project(path: ':a', configuration: 'runtime')) {
                because 'can provide a dependency reason for project dependencies too'
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. pkg/controller/resourceclaim/controller.go

    			case claimName != nil:
    				key := claimKeyPrefix + pod.Namespace + "/" + *claimName
    				logger.V(6).Info("Process claim", "pod", klog.KObj(pod), "key", key, "reason", reason)
    				ec.queue.Add(key)
    			default:
    				// Nothing to do, claim wasn't generated.
    				logger.V(6).Info("Nothing to do for skipped claim during pod change", "reason", reason)
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apihelpers/helpers_test.go

    				Reason:             "NotAccepted",
    				Message:            "Not accepted",
    				LastTransitionTime: metav1.Date(2018, 1, 2, 0, 0, 0, 0, time.UTC),
    			},
    			expectedcrdCondition: []apiextensionsv1.CustomResourceDefinitionCondition{
    				{
    					Type:               apiextensionsv1.Established,
    					Status:             apiextensionsv1.ConditionFalse,
    					Reason:             "NotAccepted",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 20.3K bytes
    - Viewed (0)
Back to top