Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for flts (0.28 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Indexed ops generate indexed load or store instructions for all GOPPC64 values.
    // Non-indexed ops generate DS-form loads and stores when the offset fits in 16 bits,
    // and on power8 and power9, a multiple of 4 is required for MOVW and MOVD ops.
    // On power10, prefixed loads and stores can be used for offsets > 16 bits and <= 32 bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	inFlightAllocations sync.Map
    }
    
    // New initializes a new plugin and returns it.
    func New(ctx context.Context, plArgs runtime.Object, fh framework.Handle, fts feature.Features) (framework.Plugin, error) {
    	if !fts.EnableDynamicResourceAllocation {
    		// Disabled, won't do anything.
    		return &dynamicResources{}, nil
    	}
    
    	logger := klog.FromContext(ctx)
    	pl := &dynamicResources{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    // It will panic if t is not a *types.Type.
    func sizeof(t interface{}) int64 {
    	return t.(*types.Type).Size()
    }
    
    // registerizable reports whether t is a primitive type that fits in
    // a register. It assumes float64 values will always fit into registers
    // even if that isn't strictly true.
    func registerizable(b *Block, typ *types.Type) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    			if x2 != 0 {
    				zRX(op_LA, regtmp(p), regtmp(p), uint32(x2), 0, asm)
    			}
    			x2 = int16(regtmp(p))
    			d2 = 0
    		}
    		// Emits an RX instruction if an appropriate one exists and the displacement fits in 12 bits. Otherwise use an RXY instruction.
    		if op, ok := c.zopstore12(p.As); ok && isU12(d2) {
    			zRX(op, uint32(p.From.Reg), uint32(x2), uint32(b2), uint32(d2), asm)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    			fts := feature.Features{}
    			pluginRegistrations := []tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterScorePlugin(noderesources.Name, frameworkruntime.FactoryAdapter(fts, noderesources.NewFit), 1),
    				tf.RegisterScorePlugin(noderesources.BalancedAllocationName, frameworkruntime.FactoryAdapter(fts, noderesources.NewBalancedAllocation), 1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	log.Printf("%s.Close() = %v", c.name, err)
    	return
    }
    
    // checkConnErrorWriter writes to c.rwc and records any write errors to c.werr.
    // It only contains one field (and a pointer field at that), so it
    // fits in an interface value without an extra allocation.
    type checkConnErrorWriter struct {
    	c *conn
    }
    
    func (w checkConnErrorWriter) Write(p []byte) (n int, err error) {
    	n, err = w.c.rwc.Write(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteARM64.go

    			v_0 := b.Controls[0]
    			cmp := v_0.Args[0]
    			b.resetWithControl(BlockARM64FLE, cmp)
    			return true
    		}
    	case BlockARM64FGT:
    		// match: (FGT (InvertFlags cmp) yes no)
    		// result: (FLT cmp yes no)
    		for b.Controls[0].Op == OpARM64InvertFlags {
    			v_0 := b.Controls[0]
    			cmp := v_0.Args[0]
    			b.resetWithControl(BlockARM64FLT, cmp)
    			return true
    		}
    	case BlockARM64FLE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  8. doc/go_spec.html

    </pre>
    
    <p>
    If the capacity of <code>s</code> is not large enough to fit the additional
    values, <code>append</code> <a href="#Allocation">allocates</a> a new, sufficiently large underlying
    array that fits both the existing slice elements and the additional values.
    Otherwise, <code>append</code> re-uses the underlying array.
    </p>
    
    <pre>
    s0 := []int{0, 0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  9. src/cmd/compile/internal/ssa/rewritePPC64.go

    			v_0 := b.Controls[0]
    			cc := v_0.Args[0]
    			b.resetWithControl(BlockPPC64GE, cc)
    			return true
    		}
    		// match: (If (FLessThan cc) yes no)
    		// result: (FLT cc yes no)
    		for b.Controls[0].Op == OpPPC64FLessThan {
    			v_0 := b.Controls[0]
    			cc := v_0.Args[0]
    			b.resetWithControl(BlockPPC64FLT, cc)
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    }
    
    func (http2writeSettingsAck) staysWithinBuffer(max int) bool { return http2frameHeaderLen <= max }
    
    // splitHeaderBlock splits headerBlock into fragments so that each fragment fits
    // in a single frame, then calls fn for each fragment. firstFrag/lastFrag are true
    // for the first/last fragment, respectively.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top