Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for Printer (0.19 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    		//
    		//   v33 = ArgIntReg <uintptr> {foo+0} [0] : AX (foo)
    		//   v34 = ArgIntReg <uintptr> {bar+0} [0] : BX (bar)
    		//   ...
    		//   v77 = StoreReg <unsafe.Pointer> v67 : ctx+8[unsafe.Pointer]
    		//   v78 = StoreReg <unsafe.Pointer> v68 : ctx[unsafe.Pointer]
    		//   v79 = Arg <*uint8> {args} : args[*uint8] (args[*uint8])
    		//   v80 = Arg <int> {args} [8] : args+8[int] (args+8[int])
    		//   ...
    		//   v1 = InitMem <mem>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    func (check *Checker) kindString(typ Type) string {
    	switch under(typ).(type) {
    	case *Array:
    		return "array"
    	case *Slice:
    		return "slice"
    	case *Struct:
    		return "struct"
    	case *Pointer:
    		return "pointer"
    	case *Signature:
    		return "func"
    	case *Interface:
    		if isTypeParam(typ) {
    			return check.sprintf("type parameter %s", typ)
    		}
    		return "interface"
    	case *Map:
    		return "map"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/cronjob_controllerv2_test.go

    					},
    					Status: batchv1.JobStatus{StartTime: &metav1.Time{Time: justBeforeThePriorHour()}},
    				},
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Namespace:       "foo-ns",
    						Name:            "finished-job-started-minute-ago",
    						OwnerReferences: []metav1.OwnerReference{{Name: "fooer", Controller: pointer.Bool(true)}},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    	"R16",
    	"R17",
    	"R18", // platform register, not used
    	"R19",
    	"R20",
    	"R21",
    	"R22",
    	"R23",
    	"R24",
    	"R25",
    	"R26",
    	// R27 = REGTMP not used in regalloc
    	"g",   // aka R28
    	"R29", // frame pointer, not used
    	"R30", // aka REGLINK
    	"SP",  // aka R31
    
    	"F0",
    	"F1",
    	"F2",
    	"F3",
    	"F4",
    	"F5",
    	"F6",
    	"F7",
    	"F8",
    	"F9",
    	"F10",
    	"F11",
    	"F12",
    	"F13",
    	"F14",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    button,
    html input[type="button"],
    input[type="reset"],
    input[type="submit"] {
    	-webkit-appearance: button;
    	/* 2 */
    	cursor: pointer;
    	/* 3 */
    }
    
    /** Re-set default cursor for disabled elements. */
    button[disabled],
    html input[disabled] {
    	cursor: default;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    			if e.Op == syntax.Mul {
    				// pointer indirection
    				check.exprOrType(x, e.X, false)
    				switch x.mode {
    				case invalid:
    					goto Error
    				case typexpr:
    					check.validVarType(e.X, x.typ)
    					x.typ = &Pointer{base: x.typ}
    				default:
    					var base Type
    					if !underIs(x.typ, func(u Type) bool {
    						p, _ := u.(*Pointer)
    						if p == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_test.go

    		{`package n5a; var _ interface{} = (*int)(nil)`, `nil`, `*int`},
    		{`package n5b; var _ interface{m()} = nil`, `nil`, `interface{m()}`},
    		{`package n6; import "unsafe"; var _ unsafe.Pointer = nil`, `nil`, `unsafe.Pointer`},
    
    		{`package n10; var (x *int; _ = x == nil)`, `nil`, `*int`},
    		{`package n11; var (x func(); _ = x == nil)`, `nil`, `func()`},
    		{`package n12; var (x []byte; _ = x == nil)`, `nil`, `[]byte`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            def controlNewBringer = mavenRepo.module("org", "control-1.2-bringer", "1.0").dependsOn(controlNew).publish()
    
            mavenRepo.module("org", "one", "1.0").dependsOn(controlOld).publish()
    
            def depOldBringer = mavenRepo.module("org", "dep-2.0-bringer", "1.0").dependsOn(depOld).publish()
            // Note: changing the order of the following dependencies makes the test pass
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    // DeploymentSpec is the specification of the desired behavior of the Deployment.
    type DeploymentSpec struct {
    	// Number of desired pods. This is a pointer to distinguish between explicit
    	// zero and not specified. Defaults to 1.
    	// +optional
    	Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. pkg/controller/disruption/disruption_test.go

    	"k8s.io/client-go/util/workqueue"
    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    	"k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/test/utils/ktesting"
    	clocktesting "k8s.io/utils/clock/testing"
    	"k8s.io/utils/pointer"
    )
    
    type pdbStates map[string]policy.PodDisruptionBudget
    
    var alwaysReady = func() bool { return true }
    
    func (ps *pdbStates) Set(ctx context.Context, pdb *policy.PodDisruptionBudget) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top