Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for Printer (0.14 sec)

  1. src/runtime/mprof.go

    				// We skip one fewer frame than the provided value for frame
    				// pointer unwinding because the skip value includes the current
    				// frame, whereas the saved frame pointer will give us the
    				// caller's return address first (so, not including
    				// saveblockevent)
    				mp.profStack[0] -= 1
    			}
    			nstk += fpTracebackPCs(unsafe.Pointer(getfp()), mp.profStack[1:])
    		} else {
    			mp.profStack[1] = gp.m.curg.sched.pc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    									CacheSize: pointer.Int32(1000),
    								},
    							},
    							{
    								KMS: &apiserver.KMSConfiguration{
    									Name:       "another-kms",
    									APIVersion: "v2",
    									Timeout: &metav1.Duration{
    										Duration: 1 * time.Second,
    									},
    									Endpoint:  "unix:///tmp/anothertestprovider.sock",
    									CacheSize: pointer.Int32(1000),
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			opts:                         listOptions(true, pointer.Bool(true), ""),
    			expectedWatchResourceVersion: 100,
    		},
    		{
    			name:                         "RV=unset, allowWatchBookmarks=true, sendInitialEvents=false",
    			opts:                         listOptions(true, pointer.Bool(false), ""),
    			expectedWatchResourceVersion: 100,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			in: api.ClaimMappings{
    				Username: api.PrefixedClaimOrExpression{
    					Claim:  "claim",
    					Prefix: pointer.String("prefix"),
    				},
    				Groups: api.PrefixedClaimOrExpression{
    					Expression: "claims.groups",
    					Prefix:     pointer.String("prefix"),
    				},
    			},
    			structuredAuthnFeatureEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	// is also restored to support frame pointer unwinding.
    	MOVQ	SP, BX	// hide (SP) reads from vet
    	MOVQ	8(BX), BX	// caller's PC
    	MOVQ	BX, (g_sched+gobuf_pc)(R14)
    	LEAQ	fn+0(FP), BX	// caller's SP
    	MOVQ	BX, (g_sched+gobuf_sp)(R14)
    	// Get the caller's frame pointer by dereferencing BP. Storing BP as it is
    	// can cause a frame pointer cycle, see CL 476235.
    	MOVQ	(BP), BX // caller's BP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    }
    
    func (x *Address) Reset() {
    	*x = Address{}
    	if protoimpl.UnsafeEnabled {
    		mi := &file_workloadapi_workload_proto_msgTypes[0]
    		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    		ms.StoreMessageInfo(mi)
    	}
    }
    
    func (x *Address) String() string {
    	return protoimpl.X.MessageStringOf(x)
    }
    
    func (*Address) ProtoMessage() {}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. plugin/pkg/admission/noderestriction/admission_test.go

    				HolderIdentity:       pointer.String("mynode"),
    				LeaseDurationSeconds: pointer.Int32(40),
    				RenewTime:            &metav1.MicroTime{Time: time.Now()},
    			},
    		}
    		leaseWrongNS = &coordination.Lease{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "mynode",
    				Namespace: "foo",
    			},
    			Spec: coordination.LeaseSpec{
    				HolderIdentity:       pointer.String("mynode"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  8. src/text/template/exec_test.go

    			"{{.X}}",
    			(*T)(nil),
    			"nil pointer evaluating *template.T.X",
    		},
    		{
    			"MissingKeyOnNilMap",
    			"{{.MissingKey}}",
    			(*map[string]string)(nil),
    			"nil pointer evaluating *map[string]string.MissingKey",
    		},
    		{
    			"MissingKeyOnNilMapPtr",
    			"{{.MissingKey}}",
    			(*map[string]string)(nil),
    			"nil pointer evaluating *map[string]string.MissingKey",
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    //    b. Start the world. From this point, GC work is done by mark
    //    workers started by the scheduler and by assists performed as
    //    part of allocation. The write barrier shades both the
    //    overwritten pointer and the new pointer value for any pointer
    //    writes (see mbarrier.go for details). Newly allocated objects
    //    are immediately marked black.
    //
    //    c. GC performs root marking jobs. This includes scanning all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. src/time/format.go

    //
    // A comma or decimal point followed by one or more zeros represents
    // a fractional second, printed to the given number of decimal places.
    // A comma or decimal point followed by one or more nines represents
    // a fractional second, printed to the given number of decimal places, with
    // trailing zeros removed.
    // For example "15:04:05,000" or "15:04:05.000" formats or parses with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top