Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,201 for verb (0.08 sec)

  1. pkg/registry/core/pod/rest/log.go

    	// Given that underlying store is shared with REST,
    	// we don't destroy it here explicitly.
    }
    
    // ProducesMIMETypes returns a list of the MIME types the specified HTTP verb (GET, POST, DELETE,
    // PATCH) can respond with.
    func (r *LogREST) ProducesMIMETypes(verb string) []string {
    	// Since the default list does not include "plain/text", we need to
    	// explicitly override ProducesMIMETypes, so that it gets added to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 24 10:50:43 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/VfsRelativePathTest.groovy

            "a/b"        | "a/b".length() | "c"       | true
            "a/b"        | "a/".length()  | "b"       | true
            "b"          | 0              | "b/c/d"   | true
            verb = result ? "is" : "is not"
        }
    
        def "'#relativePath / #offset' #verb '#prefix' as a prefix"() {
            expect:
            VfsRelativePath.of(relativePath, offset).hasPrefix(prefix, CASE_SENSITIVE) == result
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. pkg/registry/authorization/util/helpers.go

    func ResourceAttributesFrom(user user.Info, in authorizationapi.ResourceAttributes) authorizer.AttributesRecord {
    	return authorizer.AttributesRecord{
    		User:            user,
    		Verb:            in.Verb,
    		Namespace:       in.Namespace,
    		APIGroup:        in.Group,
    		APIVersion:      matchAllVersionIfEmpty(in.Version),
    		Resource:        in.Resource,
    		Subresource:     in.Subresource,
    		Name:            in.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. build/pause/CHANGELOG.md

    # 3.1
    
    * The pause container gains a signal handler to clean up orphaned zombie processes. ([#36853](https://prs.k8s.io/36853), [@verb](https://github.com/verb))
    * `pause -v` will return build information for the pause binary. ([#56762](https://prs.k8s.io/56762), [@verb](https://github.com/verb))
    
    # 3.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/authorization.k8s.io.v1beta1.SelfSubjectAccessReview.yaml

      selfLink: selfLinkValue
      uid: uidValue
    spec:
      nonResourceAttributes:
        path: pathValue
        verb: verbValue
      resourceAttributes:
        group: groupValue
        name: nameValue
        namespace: namespaceValue
        resource: resourceValue
        subresource: subresourceValue
        verb: verbValue
        version: versionValue
    status:
      allowed: true
      denied: true
      evaluationError: evaluationErrorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SelfSubjectAccessReview.yaml

      selfLink: selfLinkValue
      uid: uidValue
    spec:
      nonResourceAttributes:
        path: pathValue
        verb: verbValue
      resourceAttributes:
        group: groupValue
        name: nameValue
        namespace: namespaceValue
        resource: resourceValue
        subresource: subresourceValue
        verb: verbValue
        version: versionValue
    status:
      allowed: true
      denied: true
      evaluationError: evaluationErrorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. pkg/controlplane/controller/defaultservicecidr/default_servicecidr_controller_test.go

    		t.Fatalf("Expected at least %d actions, got %d \ndiff: %v", len(expected), len(actions), cmp.Diff(expected, actions))
    	}
    
    	for i, action := range actions {
    		verb := expected[i][0]
    		if action.GetVerb() != verb {
    			t.Errorf("Expected action %d verb to be %s, got %s", i, verb, action.GetVerb())
    		}
    		resource := expected[i][1]
    		if action.GetResource().Resource != resource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 14 23:31:58 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/systemnamespaces/system_namespaces_controller_test.go

    	if len(actions) != len(expected) {
    		t.Fatalf("Expected at least %d actions, got %d", len(expected), len(actions))
    	}
    
    	for i, action := range actions {
    		verb := expected[i][0]
    		if action.GetVerb() != verb {
    			t.Errorf("Expected action %d verb to be %s, got %s", i, verb, action.GetVerb())
    		}
    		resource := expected[i][1]
    		if action.GetResource().Resource != resource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // +optional
      optional string path = 1;
    
      // Verb is the standard HTTP verb
      // +optional
      optional string verb = 2;
    }
    
    // NonResourceRule holds information that describes a rule for the non-resource
    message NonResourceRule {
      // Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options.  "*" means all.
      repeated string verbs = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top