Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 811 for Review (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. .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)
  6. 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)
  7. plugin/pkg/admission/imagepolicy/admission.go

    		}
    
    		a.responseCache.Add(string(cacheKey), review.Status, a.statusTTL(review.Status))
    	}
    
    	for k, v := range review.Status.AuditAnnotations {
    		if err := attributes.AddAnnotation(AuditKeyPrefix+k, v); err != nil {
    			klog.Warningf("failed to set admission audit annotation %s to %s: %v", AuditKeyPrefix+k, v, err)
    		}
    	}
    	if !review.Status.Allowed {
    		if len(review.Status.Reason) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    			return
    		}
    
    		var review authorizationv1.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/v1" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. security/pkg/k8s/tokenreview/k8sauthn.go

    	}
    
    	return security.KubernetesInfo{
    		PodName:           extractExtra(tokenReview, PodNameKey),
    		PodNamespace:      subStrings[2],
    		PodUID:            extractExtra(tokenReview, PodUIDKey),
    		PodServiceAccount: subStrings[3],
    	}, nil
    }
    
    func extractExtra(review *k8sauth.TokenReview, s string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 13 17:12:41 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. .github/pull_request_template.md

    **Please provide a description of this PR:**
    
    
    
    **To help us figure out who should review this PR, please put an X in all the areas that this PR affects.**
    
    - [ ] Ambient
    - [ ] Configuration Infrastructure
    - [ ] Docs
    - [ ] Dual Stack
    - [ ] Installation
    - [ ] Networking
    - [ ] Performance and Scalability
    - [ ] Policies and Telemetry
    - [ ] Security
    - [ ] Test and Release
    - [ ] User Experience
    - [ ] Developer Infrastructure
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 14:29:43 UTC 2023
    - 718 bytes
    - Viewed (0)
Back to top