Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 182 for Gleason (0.13 sec)

  1. pkg/apis/admissionregistration/v1beta1/zz_generated.conversion.go

    	out.Expression = in.Expression
    	out.Message = in.Message
    	out.Reason = (*v1.StatusReason)(unsafe.Pointer(in.Reason))
    	out.MessageExpression = in.MessageExpression
    	return nil
    }
    
    // Convert_v1beta1_Validation_To_admissionregistration_Validation is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 73K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        return true;
      }
    
      string EdgeContractionFailureMsg(Cluster* from, Cluster* to,
                                       absl::string_view reason) {
        return absl::StrCat("Could not contract ", from->DebugString(*graph_),
                            " -> ", to->DebugString(*graph_), " because ", reason,
                            ".");
      }
    
      DebugOptions debug_options_;
      Graph* graph_;
      uint64 graph_fingerprint_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		default:
    			varNames = append(varNames, string(reason))
    		}
    	}
    	return fmt.Sprintf("%v", varNames)
    }
    
    func checkReasons(t *testing.T, actual, expected ConflictReasons) {
    	equal := len(actual) == len(expected)
    	sort.Sort(actual)
    	sort.Sort(expected)
    	if equal {
    		for i, reason := range actual {
    			if reason != expected[i] {
    				equal = false
    				break
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/v1/zz_generated.conversion.go

    	out.Expression = in.Expression
    	out.Message = in.Message
    	out.Reason = (*metav1.StatusReason)(unsafe.Pointer(in.Reason))
    	out.MessageExpression = in.MessageExpression
    	return nil
    }
    
    // Convert_v1_Validation_To_admissionregistration_Validation is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:30 UTC 2024
    - 73.6K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils_test.go

    type noopRecorder struct{}
    
    func (r *noopRecorder) Event(object runtime.Object, eventtype, reason, message string) {}
    func (r *noopRecorder) Eventf(object runtime.Object, eventtype, reason, messageFmt string, args ...interface{}) {
    }
    func (r *noopRecorder) AnnotatedEventf(object runtime.Object, annotations map[string]string, eventtype, reason, messageFmt string, args ...interface{}) {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// If not set, StatusReasonInvalid is used in the response to the client.
    	// +optional
    	Reason *metav1.StatusReason `json:"reason,omitempty" protobuf:"bytes,3,opt,name=reason"`
    	// messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails.
    	// Since messageExpression is used as a failure message, it must evaluate to a string.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "type": "string"
              },
              "reason": {
                "description": "Reason is optional.  It indicates why a request was allowed or denied.",
                "type": "string"
              }
            },
            "required": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  8. cmd/object-api-multipart_test.go

    			t.Errorf("Test %d: %s: Expected to fail with <ERROR> \"%s\", but passed instead.", i+1, instanceType, testCase.expectedError.Error())
    		}
    		// Failed as expected, but does it fail for the expected reason.
    		if actualErr != nil && !testCase.shouldPass {
    			if testCase.expectedError.Error() != actualErr.Error() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  9. src/crypto/x509/x509.go

    	RevocationTime time.Time
    	// ReasonCode represents the reason for revocation, using the integer enum
    	// values specified in RFC 5280 Section 5.3.1. When creating a CRL, the zero
    	// value will result in the reasonCode extension being omitted. When parsing a
    	// CRL, the zero value may represent either the reasonCode extension being
    	// absent (which implies the default revocation reason of 0/Unspecified), or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    			}
    
    			// check that the condition looks good
    			if cond.Reason != "Violations" {
    				t.Errorf("expected reason Violations, got: %v", cond.Reason)
    			}
    			if cond.Status != apiextensionsv1.ConditionTrue {
    				t.Errorf("expected reason True, got: %v", cond.Status)
    			}
    
    			// check that we got all violations
    			t.Logf("Got violations: %q", cond.Message)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
Back to top