Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for verb (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/apis/flowcontrol/validation/validation_test.go

    			}},
    			ResourceRules: []flowcontrol.ResourcePolicyRule{{
    				Verbs:        []string{flowcontrol.VerbAll},
    				APIGroups:    []string{flowcontrol.APIGroupAll},
    				Resources:    []string{flowcontrol.ResourceAll},
    				ClusterScope: true,
    				Namespaces:   []string{flowcontrol.NamespaceEvery},
    			}},
    			NonResourceRules: []flowcontrol.NonResourcePolicyRule{{
    				Verbs:           []string{flowcontrol.VerbAll},
    				NonResourceURLs: []string{"/"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set_test.go

    		informers.Core().V1().Pods(),
    		client,
    		burstReplicas,
    	)
    
    	ret.podListerSynced = alwaysReady
    	ret.rsListerSynced = alwaysReady
    
    	return ret, informers
    }
    
    func skipListerFunc(verb string, url url.URL) bool {
    	if verb != "GET" {
    		return false
    	}
    	if strings.HasSuffix(url.Path, "/pods") || strings.Contains(url.Path, "/replicasets") {
    		return true
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	longRunningFunc := func(_ *http.Request, _ *apirequest.RequestInfo) bool { return false }
    	fakeFilter := &fakeFilterRequestDigest{}
    
    	reqDigestExpected := &utilflowcontrol.RequestDigest{
    		RequestInfo: &apirequest.RequestInfo{Verb: "get"},
    		User:        &user.DefaultInfo{Name: "foo"},
    	}
    	workExpected := fcrequest.WorkEstimate{
    		InitialSeats:      5,
    		FinalSeats:        7,
    		AdditionalLatency: 3 * time.Second,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// Using the rest.ValidateAllObjectFunc because the request is an UPDATE request and has already passed the admission for the UPDATE verb.
    	if err := e.Storage.Delete(ctx, key, out, preconditions, rest.ValidateAllObjectFunc, dryrun.IsDryRun(options.DryRun), nil); err != nil {
    		// Deletion is racy, i.e., there could be multiple update
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	OpenProcess(desiredAccess uint32, inheritHandle bool, processId uint32) (handle Handle, err error)
    //sys	ShellExecute(hwnd Handle, verb *uint16, file *uint16, args *uint16, cwd *uint16, showCmd int32) (err error) [failretval<=32] = shell32.ShellExecuteW
    //sys	GetWindowThreadProcessId(hwnd HWND, pid *uint32) (tid uint32, err error) = user32.GetWindowThreadProcessId
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top