Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,040 for Review (0.17 sec)

  1. samples/bookinfo/swagger.yaml

        type: "object"
        description: "Object containing reviews for a product"
        properties:
          id:
            type: "integer"
            format: "int32"
            description: "Product id"
          reviews:
            type: "array"
            description: "List of reviews"
            items:
              $ref: "#/definitions/Review"
        required:
        - "id"
        - "reviews"
      Review:
        type: "object"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 6.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/webhook.go

    		}
    
    		review.Response = &apiextensionsv1beta1.ConversionResponse{
    			UID:              review.Request.UID,
    			ConvertedObjects: converted,
    		}
    		if len(errMsgs) == 0 {
    			review.Response.Result = metav1.Status{Status: "Success"}
    		} else {
    			review.Response.Result = metav1.Status{Status: "Failure", Message: strings.Join(errMsgs, ", ")}
    		}
    		return review, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 01:38:09 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/templates/productpage.html

          </div>
      </div>
    </div>
    
    <!-- Book reviews section -->
    <div class="bg-blue-600/5 py-12 mx-auto" >
      <div class="container mx-auto px-4 sm:px-6 lg:px-8>
        <div class="max-w-2xl">
          {% if reviewsStatus == 200: %}
          <h4 class="text-3xl font-semibold">Book Reviews</h4>
          <div class="flex flex-col md:flex-row">
            {% for review in reviews.reviews %}
            <section class="px-6 py-12 sm:py-8 lg:px-8">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1_test.go

    			Kind:       "TokenReview",
    			APIVersion: authenticationv1.SchemeGroupVersion.String(),
    			Status: status{
    				review.Status.Authenticated,
    				userInfo{
    					Username: review.Status.User.Username,
    					UID:      review.Status.User.UID,
    					Groups:   review.Status.User.Groups,
    					Extra:    extra,
    				},
    				review.Status.Audiences,
    			},
    		}
    		w.Header().Set("Content-Type", "application/json")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    			APIVersion: authenticationv1beta1.SchemeGroupVersion.String(),
    			Status: status{
    				review.Status.Authenticated,
    				userInfo{
    					Username: review.Status.User.Username,
    					UID:      review.Status.User.UID,
    					Groups:   review.Status.User.Groups,
    					Extra:    extra,
    				},
    				review.Status.Audiences,
    			},
    		}
    		w.Header().Set("Content-Type", "application/json")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    			return
    		}
    
    		var review authorizationv1beta1.SubjectAccessReview
    		bodyData, _ := ioutil.ReadAll(r.Body)
    		if err := json.Unmarshal(bodyData, &review); err != nil {
    			http.Error(w, fmt.Sprintf("failed to decode body: %v", err), http.StatusBadRequest)
    			return
    		}
    
    		// ensure we received the serialized review as expected
    		if review.APIVersion != "authorization.k8s.io/v1beta1" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. architecture/standards/0001-use-architectural-decision-records.md

    * They are rarely updated after creation and initial review, and then become hard to follow, especially after important decisions are made
    * They are not synced with the code to reflect the eventual solution that is committed
    * Google Docs is not a "code-oriented" tool, like asciidoc can be
    * Review in Google Docs is not as simple as a PR code review in GitHub
    
    ## Decision
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 02 21:54:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. .github/workflows/depsreview.yaml

    name: 'Dependency Review'
    on: [pull_request]
    
    permissions:
      contents: read
    
    jobs:
      dependency-review:
        runs-on: ubuntu-latest
        steps:
          - name: 'Checkout Repository'
            uses: actions/checkout@v4
          - name: 'Dependency Review'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 23:44:49 UTC 2024
    - 296 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview_test.go

    		uid      types.UID
    		mutating bool
    		review   runtime.Object
    
    		expectAuditAnnotations map[string]string
    		expectAllowed          bool
    		expectPatch            []byte
    		expectPatchType        admissionv1.PatchType
    		expectResult           *metav1.Status
    		expectErr              string
    	}{
    		// Allowed validating
    		{
    			name: "v1beta1 allowed validating",
    			uid:  "123",
    			review: &admissionv1beta1.AdmissionReview{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. pilot/pkg/security/trustdomain/util.go

    // 1. Exact match.
    // 2. Wild character match. "*" matches any string.
    // 3. Prefix match. For example, "book*" matches "bookstore", "bookshop", etc.
    // 4. Suffix match. For example, "*/review" matches "/bookstore/review", "/products/review", etc.
    // This is an extensive version of model.stringMatch(). The pattern can be in the string or the list.
    func stringMatch(a string, list []string) bool {
    	for _, s := range list {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 13 15:27:59 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top