Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for flts (0.06 sec)

  1. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/tracers/opentelemetry/samplers/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/alts/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/http_11_proxy/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/internal_upstream/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    			break
    		}
    	}
    	if !minSizeForMallocHeaderIsSizeClass {
    		throw("min size of malloc header is not a size class boundary")
    	}
    	// Check that the pointer bitmap for all small sizes without a malloc header
    	// fits in a word.
    	if minSizeForMallocHeader/goarch.PtrSize > 8*goarch.PtrSize {
    		throw("max pointer/scan bitmap size for headerless objects is too large")
    	}
    
    	if minTagBits > taggedPointerBits {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/interface.go

    // running the pod.
    type FilterPlugin interface {
    	Plugin
    	// Filter is called by the scheduling framework.
    	// All FilterPlugins should return "Success" to declare that
    	// the given node fits the pod. If Filter doesn't return "Success",
    	// it will return "Unschedulable", "UnschedulableAndUnresolvable" or "Error".
    	// For the node being evaluated, Filter plugins should look at the passed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	// Sort all the claims by increasing size request to get the smallest fits
    	sort.Sort(byPVCSize(claimsToBind))
    
    	chosenPVs := map[string]*v1.PersistentVolume{}
    
    	foundMatches = true
    
    	for _, pvc := range claimsToBind {
    		// Get storage class name from each PVC
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// of a Result-typed output, with memory last, and any memory-resident outputs have been
    	// stored to ABI-defined locations.  Each non-memory input or output fits in a register.
    	//
    	// Subsequent architecture-specific lowering only changes the opcode.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    			outputs: []outputInfo{
    				{0, 1006632944}, // X5 X6 X7 X8 X9 X10 X11 X12 X13 X14 X15 X16 X17 X18 X19 X20 X21 X22 X23 X24 X25 X26 X28 X29 X30
    			},
    		},
    	},
    	{
    		name:   "FLTS",
    		argLen: 2,
    		asm:    riscv.AFLTS,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 9223372034707292160}, // F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26 F27 F28 F29 F30 F31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    				o1 |= 1 << 16 // FMOV Rx, Fy
    			}
    		} else {
    			o1 = c.oprrr(p, p.As)
    		}
    		o1 |= uint32(p.From.Reg&31)<<5 | uint32(p.To.Reg&31)
    
    	case 30: /* movT R,L(R) -> strT */
    		// If offset L fits in a 12 bit unsigned immediate:
    		//	add $L, R, Rtmp  or  sub $L, R, Rtmp
    		//	str R, (Rtmp)
    		// Otherwise, if offset L can be split into hi+lo, and both fit into instructions:
    		//	add $hi, R, Rtmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. src/time/time_test.go

    		bt.Mul(bsec, b1e9)
    		bt.Add(bt, bnsec)
    
    		// Compute quotient and remainder mod d.
    		bd.SetInt64(int64(d))
    		bq.DivMod(bt, bd, br)
    
    		// To truncate, subtract remainder.
    		// br is < d, so it fits in an int64.
    		r := br.Int64()
    		t1 := t0.Add(-Duration(r))
    
    		// Check that time.Truncate works.
    		if trunc := t0.Truncate(d); trunc != t1 {
    			t.Errorf("Time.Truncate(%s, %s) = %s, want %s\n"+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    // That is, s.heapBits()[0] holds the goarch.PtrSize*8 bits for the first
    // goarch.PtrSize*8 words from "start" through "start+63*ptrSize" in the span.
    // On a related note, small objects are always small enough that their bitmap
    // fits in goarch.PtrSize*8 bits, so writing out bitmap data takes two bitmap
    // writes at most (because object boundaries don't generally lie on
    // s.heapBits()[i] boundaries).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

              (ZeroExt32to64 x)))
          (Const64 <typ.UInt64> [32+umagic32(c).s-1])))
    
    // For unsigned 64-bit divides on 32-bit machines,
    // if the constant fits in 16 bits (so that the last term
    // fits in 32 bits), convert to three 32-bit divides by a constant.
    //
    // If 1<<32 = Q * c + R
    // and    x = hi << 32 + lo
    //
    // Then x = (hi/c*c + hi%c) << 32 + lo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top