Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 329 for vers (0.25 sec)

  1. src/fmt/errors.go

    //
    // If the format specifier includes a %w verb with an error operand,
    // the returned error will implement an Unwrap method returning the operand.
    // If there is more than one %w verb, the returned error will implement an
    // Unwrap method returning a []error containing all the %w operands in the
    // order they appear in the arguments.
    // It is invalid to supply the %w verb with an operand that does not implement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. 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)
  3. cmd/bucket-listobjects-handlers.go

    	ctx := newContext(r, w, "ListObjectVersions")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    	vars := mux.Vars(r)
    	bucket := vars["bucket"]
    
    	objectAPI := api.ObjectAPI()
    	if objectAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. cmd/admin-bucket-handlers.go

    // for a particular ARN type
    func (a adminAPIHandlers) ListRemoteTargetsHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	vars := mux.Vars(r)
    	bucket := pathClean(vars["bucket"])
    	arnType := vars["type"]
    
    	// Get current object layer instance.
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.GetBucketTargetAction)
    	if objectAPI == nil {
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    func (lv *liveness) emitStackObjects() *obj.LSym {
    	var vars []*ir.Name
    	for _, n := range lv.fn.Dcl {
    		if shouldTrack(n) && n.Addrtaken() && n.Esc() != ir.EscHeap {
    			vars = append(vars, n)
    		}
    	}
    	if len(vars) == 0 {
    		return nil
    	}
    
    	// Sort variables from lowest to highest address.
    	sort.Slice(vars, func(i, j int) bool { return vars[i].FrameOffset() < vars[j].FrameOffset() })
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. 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)
  7. cmd/bucket-handlers.go

    func (api objectAPIHandlers) GetBucketLocationHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "GetBucketLocation")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    	vars := mux.Vars(r)
    	bucket := vars["bucket"]
    
    	objectAPI := api.ObjectAPI()
    	if objectAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  8. cluster/gce/upgrade-aliases.sh

      echo -n "${k8s_node_routes_count}"
    }
    
    # Detect the subnetwork where the K8s cluster resides.
    #
    # Assumed vars:
    #  KUBE_MASTER
    #  PROJECT
    #  ZONE
    # Vars set:
    #  IP_ALIAS_SUBNETWORK
    function detect-k8s-subnetwork() {
      local subnetwork_url
      subnetwork_url=$(gcloud compute instances describe \
        "${KUBE_MASTER}" --project="${PROJECT}" --zone="${ZONE}" \
        --format='value(networkInterfaces[0].subnetwork)')
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/authorization.k8s.io.v1.SubjectAccessReview.yaml

      extra:
        extraKey:
        - extraValue
      groups:
      - groupsValue
      nonResourceAttributes:
        path: pathValue
        verb: verbValue
      resourceAttributes:
        group: groupValue
        name: nameValue
        namespace: namespaceValue
        resource: resourceValue
        subresource: subresourceValue
        verb: verbValue
        version: versionValue
      uid: uidValue
      user: userValue
    status:
      allowed: true
      denied: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top