Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,040 for Review (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. .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)
  5. .github/actions/people/app/main.py

                commenters[author_name] += 1
            for review in pr.reviews.nodes:
                if review.author:
                    authors[review.author.login] = review.author
                    pr_reviewers.add(review.author.login)
                    for label in pr.labels.nodes:
                        if label.name == "lang-all":
                            translation_reviewers[review.author.login] += 1
                            break
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview.go

    // VerifyAdmissionResponse checks the validity of the provided admission review object, and returns the
    // audit annotations, whether the response allowed the request, any provided patch/patchType/status,
    // or an error if the provided admission review was not valid.
    func VerifyAdmissionResponse(uid types.UID, mutating bool, review runtime.Object) (*AdmissionResponse, error) {
    	switch r := review.(type) {
    	case *admissionv1.AdmissionReview:
    		if r.Response == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/conversion_test.go

    }
    
    func emptyV1ResponseConverter(review *apiextensionsv1.ConversionReview) (*apiextensionsv1.ConversionReview, error) {
    	review.Response = &apiextensionsv1.ConversionResponse{
    		UID:              review.Request.UID,
    		ConvertedObjects: []runtime.RawExtension{},
    		Result:           metav1.Status{Status: "Success"},
    	}
    	return review, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 47.1K bytes
    - Viewed (0)
  8. .github/workflows/label-approved.yml

          with:
            token: ${{ secrets.FASTAPI_LABEL_APPROVED }}
            config: >
              {
                "approved-1":
                  {
                    "number": 1,
                    "await_label": "awaiting-review"
                  }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 18:43:10 UTC 2024
    - 610 bytes
    - Viewed (0)
  9. plugin/pkg/admission/imagepolicy/admission_test.go

    		var review v1alpha1.ImageReview
    		if err := json.NewDecoder(r.Body).Decode(&review); err != nil {
    			http.Error(w, fmt.Sprintf("failed to decode body: %v", err), http.StatusBadRequest)
    			return
    		}
    		if s.HTTPStatusCode() < 200 || s.HTTPStatusCode() >= 300 {
    			http.Error(w, "HTTP Error", s.HTTPStatusCode())
    			return
    		}
    		s.Review(&review)
    		type status struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 32.9K bytes
    - Viewed (0)
  10. testing/architecture-test/src/test/resources/archunit.properties

    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    # Changes the line number in all sources to 0, so line numbers are ignored and changes are easier to review
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 794 bytes
    - Viewed (0)
Back to top