Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for tcCall (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Timeout for the list/watch call.
    	// This limits the duration of the call, regardless of any activity or inactivity.
    	// +optional
    	TimeoutSeconds *int64 `json:"timeoutSeconds,omitempty" protobuf:"varint,5,opt,name=timeoutSeconds"`
    
    	// limit is a maximum number of responses to return for a list call. If more items exist, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  2. src/runtime/pprof/pprof_test.go

    // containsInlinedCall reports whether the function body for the function f is
    // known to contain an inlined function call within the first maxBytes bytes.
    func containsInlinedCall(f any, maxBytes int) bool {
    	_, found := findInlinedCall(f, maxBytes)
    	return found
    }
    
    // findInlinedCall returns the PC of an inlined function call within
    // the function body for the function f if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    //	policyFunc    - function to return bucketPolicy statement which would permit the anonymous request to be served.
    //
    // The test works in 2 steps, here is the description of the steps.
    //
    //	STEP 1: Call the handler with the unsigned HTTP request (anonReq), assert for the `ErrAccessDenied` error response.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// next: Holds information to be used in the next GC cycle.
    	// current: Information being used during this GC cycle.
    	// previous: Information being used during the last GC cycle.
    	// A new GC cycle starts with the call to finishsweep_m.
    	// finishsweep_m moves the previous arena to the free arena,
    	// the current arena to the previous arena, and
    	// the next arena to the current arena.
    	// The next arena is populated as the spans request
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/asm0.go

    	case 18: /* jmp [r1],0(r2) */
    		r := p.Reg
    		if r == obj.REG_NONE {
    			r = o.param
    		}
    		o1 = OP_RRR(c.oprrr(p.As), obj.REG_NONE, p.To.Reg, r)
    		if p.As == obj.ACALL {
    			rel := obj.Addrel(c.cursym)
    			rel.Off = int32(c.pc)
    			rel.Siz = 0
    			rel.Type = objabi.R_CALLIND
    		}
    
    	case 19: /* mov $lcon,r ==> lu+or */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  6. src/time/time.go

    	nsecMask     = 1<<30 - 1
    	nsecShift    = 30
    )
    
    // These helpers for manipulating the wall and monotonic clock readings
    // take pointer receivers, even when they don't modify the time,
    // to make them cheaper to call.
    
    // nsec returns the time's nanoseconds.
    func (t *Time) nsec() int32 {
    	return int32(t.wall & nsecMask)
    }
    
    // sec returns the time's seconds since Jan 1 year 1.
    func (t *Time) sec() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	}
    	if validation != nil {
    		validation(t, 2, 3)
    	}
    
    	// the rest of the test does not make sense if the previous call failed
    	if t.Failed() {
    		return
    	}
    
    	cont := out.Continue
    
    	// the second list call should try to get 2 more items from etcd
    	// but since there is only one item left, that is all we should get with no continueValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    			// is not a concern because name <- x is a statement and
    			// not an expression.
    			var x Expr = p.name()
    			if p.tok != _Lbrack {
    				// To parse the expression starting with name, expand
    				// the call sequence we would get by passing in name
    				// to parser.expr, and pass in name to parser.pexpr.
    				p.xnest++
    				x = p.binaryExpr(p.pexpr(x, false), 0)
    				p.xnest--
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/asm.go

    	case 18: // jmp [r1],0(r2)
    		r := int(p.Reg)
    		if r == 0 {
    			r = int(o.param)
    		}
    		o1 = OP_RRR(c.oprrr(p.As), uint32(0), uint32(p.To.Reg), uint32(r))
    		if p.As == obj.ACALL {
    			rel := obj.Addrel(c.cursym)
    			rel.Off = int32(c.pc)
    			rel.Siz = 0
    			rel.Type = objabi.R_CALLIND
    		}
    
    	case 19: // mov $lcon,r
    		// NOTE: this case does not use REGTMP. If it ever does,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    	outPath := filepath.Join(*flagTmpdir, "a.out")
    	flags = append(flags, "-o", outPath, flag, trivialPath)
    
    	cmd := exec.Command(linker, flags...)
    	cmd.Env = append([]string{"LC_ALL=C"}, os.Environ()...)
    	out, err := cmd.CombinedOutput()
    	// GCC says "unrecognized command line option ‘-no-pie’"
    	// clang says "unknown argument: '-no-pie'"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top