Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for vers (0.7 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    const minIovec = 8
    
    // appendBytes converts bs to Iovecs and appends them to vecs.
    func appendBytes(vecs []Iovec, bs [][]byte) []Iovec {
    	for _, b := range bs {
    		var v Iovec
    		v.SetLen(len(b))
    		if len(b) > 0 {
    			v.Base = &b[0]
    		} else {
    			v.Base = (*byte)(unsafe.Pointer(&_zero))
    		}
    		vecs = append(vecs, v)
    	}
    	return vecs
    }
    
    // offs2lohi splits offs into its low and high order bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K 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. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"kind":               "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
    	"verbs":              "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
    	"shortNames":         "shortNames is a list of suggested short names of the resource.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    			t.Error(err)
    		}
    	}
    
    	// check InitOrder is [x y]
    	var vars []string
    	for _, init := range info.InitOrder {
    		for _, v := range init.Lhs {
    			vars = append(vars, v.Name())
    		}
    	}
    	if got, want := fmt.Sprint(vars), "[x y]"; got != want {
    		t.Errorf("InitOrder == %s, want %s", got, want)
    	}
    }
    
    type testImporter map[string]*Package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. 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)
  8. src/go/types/api_test.go

    			t.Error(err)
    		}
    	}
    
    	// check InitOrder is [x y]
    	var vars []string
    	for _, init := range info.InitOrder {
    		for _, v := range init.Lhs {
    			vars = append(vars, v.Name())
    		}
    	}
    	if got, want := fmt.Sprint(vars), "[x y]"; got != want {
    		t.Errorf("InitOrder == %s, want %s", got, want)
    	}
    }
    
    type testImporter map[string]*Package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    	errOp := x  // operand for which error is reported, if any
    	cause := "" // specific error cause, if any
    
    	// spec: "In any comparison, the first operand must be assignable
    	// to the type of the second operand, or vice versa."
    	code := MismatchedTypes
    	ok, _ := x.assignableTo(check, y.typ, nil)
    	if !ok {
    		ok, _ = y.assignableTo(check, x.typ, nil)
    	}
    	if !ok {
    		// Report the error on the 2nd operand since we only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K 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