Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 684 for Gleason (0.19 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1alpha1.ValidatingAdmissionPolicy.yaml

      - expression: expressionValue
        message: messageValue
        messageExpression: messageExpressionValue
        reason: reasonValue
      variables:
      - expression: expressionValue
        name: nameValue
    status:
      conditions:
      - lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        observedGeneration: 3
        reason: reasonValue
        status: statusValue
        type: typeValue
      observedGeneration: 1
      typeChecking:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.yaml

      - expression: expressionValue
        message: messageValue
        messageExpression: messageExpressionValue
        reason: reasonValue
      variables:
      - expression: expressionValue
        name: nameValue
    status:
      conditions:
      - lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        observedGeneration: 3
        reason: reasonValue
        status: statusValue
        type: typeValue
      observedGeneration: 1
      typeChecking:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. pkg/controller/deployment/progress_test.go

    					t.Errorf("%s: expected deployment condition: %s", test.name, test.conditionType)
    				}
    			case newCond.Status != test.conditionStatus || newCond.Reason != test.conditionReason:
    				t.Errorf("%s: DeploymentProgressing has status %s with reason %s. Expected %s with %s.", test.name, newCond.Status, newCond.Reason, test.conditionStatus, test.conditionReason)
    			case !test.lastUpdate.IsZero() && test.lastUpdate != testTime:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    		namesAcceptedCondition.Reason = "PluralConflict"
    		namesAcceptedCondition.Message = err.Error()
    	} else {
    		newNames.Plural = requestedNames.Plural
    	}
    	if err := equalToAcceptedOrFresh(requestedNames.Singular, acceptedNames.Singular, allResources); err != nil {
    		namesAcceptedCondition.Status = apiextensionsv1.ConditionFalse
    		namesAcceptedCondition.Reason = "SingularConflict"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. src/cmd/trace/pprof.go

    	return makeComputePprofFunc(trace.GoWaiting, func(reason string) bool {
    		return reason == "network"
    	})
    }
    
    // computePprofBlock returns a computePprofFunc that generates blocking pprof-like profile
    // (time spent blocked on synchronization primitives).
    func computePprofBlock() computePprofFunc {
    	return makeComputePprofFunc(trace.GoWaiting, func(reason string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperSupportedBuildJvmIntegrationTest.groovy

    import org.gradle.util.GradleVersion
    
    @Requires(
        value = [IntegTestPreconditions.UnsupportedJavaHomeAvailable, IntegTestPreconditions.NotEmbeddedExecutor],
        reason = NOT_EMBEDDED_REASON)
    @DoesNotSupportNonAsciiPaths(reason = "Java 6 seems to have issues with non-ascii paths")
    class WrapperSupportedBuildJvmIntegrationTest extends AbstractWrapperIntegrationSpec {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.yaml

      - expression: expressionValue
        message: messageValue
        messageExpression: messageExpressionValue
        reason: reasonValue
      variables:
      - expression: expressionValue
        name: nameValue
    status:
      conditions:
      - lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        observedGeneration: 3
        reason: reasonValue
        status: statusValue
        type: typeValue
      observedGeneration: 1
      typeChecking:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    			found = true
    			break
    		}
    	}
    	if !found {
    		var reason string
    		if len(returnTypes) == 1 {
    			reason = fmt.Sprintf("must evaluate to %v", returnTypes[0].String())
    		} else {
    			reason = fmt.Sprintf("must evaluate to one of %v", returnTypes)
    		}
    
    		return resultError(reason, apiservercel.ErrorTypeInvalid)
    	}
    
    	_, err = cel.AstToCheckedExpr(ast)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top