Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for verb2 (0.14 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')
      optional string kind = 3;
    
      // verbs is a list of supported kube verbs (this includes get, list, watch, create,
      // update, patch, delete, deletecollection, and proxy)
      optional Verbs verbs = 4;
    
      // shortNames is a list of suggested short names of the resource.
      repeated string shortNames = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')
      optional string kind = 3;
    
      // verbs is a list of supported kube verbs (this includes get, list, watch, create,
      // update, patch, delete, deletecollection, and proxy)
      optional Verbs verbs = 4;
    
      // shortNames is a list of suggested short names of the resource.
      // +listType=atomic
      repeated string shortNames = 5;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// +optional
    	Status ScaleStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // +genclient
    // +genclient:method=GetScale,verb=get,subresource=scale,result=Scale
    // +genclient:method=UpdateScale,verb=update,subresource=scale,input=Scale,result=Scale
    // +genclient:method=ApplyScale,verb=apply,subresource=scale,input=Scale,result=Scale
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    }
    
    func removeBranch(b *Block, branch branch) {
    	c := b.Controls[0]
    	if b.Func.pass.debug > 0 {
    		verb := "Proved"
    		if branch == positive {
    			verb = "Disproved"
    		}
    		if b.Func.pass.debug > 1 {
    			b.Func.Warnl(b.Pos, "%s %s (%s)", verb, c.Op, c)
    		} else {
    			b.Func.Warnl(b.Pos, "%s %s", verb, c.Op)
    		}
    	}
    	if c != nil && c.Pos.IsStmt() == src.PosIsStmt && c.Pos.SameFileAndLine(b.Pos) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    	verb := "lists"
    	if wf == nil || wf.Go == nil {
    		// A go.work file implicitly requires go1.18
    		// even when it doesn't list any version.
    		verb = "implicitly requires"
    	}
    	return fmt.Errorf("module %s listed in go.work file requires go >= %s, but go.work %s go %s; to update it:\n\tgo work use",
    		base.ShortPath(filepath.Dir(gomod)), goVers, verb, gover.FromGoWork(wf))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. src/go/build/build.go

    				return fmt.Errorf("%s: malformed #cgo argument: %s", filename, arg)
    			}
    			args[i] = arg
    		}
    
    		switch verb {
    		case "CFLAGS", "CPPFLAGS", "CXXFLAGS", "FFLAGS", "LDFLAGS":
    			// Change relative paths to absolute.
    			ctxt.makePathsAbsolute(args, di.Dir)
    		}
    
    		switch verb {
    		case "CFLAGS":
    			di.CgoCFLAGS = append(di.CgoCFLAGS, args...)
    		case "CPPFLAGS":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// +optional
    	Status ScaleStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // +genclient
    // +genclient:method=GetScale,verb=get,subresource=scale,result=Scale
    // +genclient:method=UpdateScale,verb=update,subresource=scale,input=Scale,result=Scale
    // +genclient:method=ApplyScale,verb=apply,subresource=scale,input=Scale,result=Scale
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  8. pkg/kubelet/status/status_manager_test.go

    		}
    	}
    }
    
    func getAction() core.GetAction {
    	return core.GetActionImpl{ActionImpl: core.ActionImpl{Verb: "get", Resource: schema.GroupVersionResource{Resource: "pods"}}}
    }
    
    func patchAction() core.PatchAction {
    	return core.PatchActionImpl{ActionImpl: core.ActionImpl{Verb: "patch", Resource: schema.GroupVersionResource{Resource: "pods"}, Subresource: "status"}}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    							User: &flowcontrol.UserSubject{
    								Name: user,
    							},
    						},
    					},
    					NonResourceRules: []flowcontrol.NonResourcePolicyRule{
    						{
    							Verbs:           []string{flowcontrol.VerbAll},
    							NonResourceURLs: []string{flowcontrol.NonResourceAll},
    						},
    					},
    				},
    			},
    		},
    	}
    
    	var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    			if _, err := modfetch.DownloadZip(ctx, mActual); err != nil {
    				verb := "upgraded"
    				if gover.ModCompare(m.Path, m.Version, old.Version) < 0 {
    					verb = "downgraded"
    				}
    				replaced := ""
    				if mActual != m {
    					replaced = fmt.Sprintf(" (replaced by %s)", mActual)
    				}
    				err = fmt.Errorf("%s %s %s => %s%s: error finding sum for %s: %v", verb, m.Path, old.Version, m.Version, replaced, mActual, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top