Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for fadds (0.33 sec)

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

    			}
    		}
    		break
    	}
    	return false
    }
    func rewriteValuePPC64_OpPPC64FADDS(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (FADDS (FMULS x y) z)
    	// cond: x.Block.Func.useFMA(v)
    	// result: (FMADDS x y z)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpPPC64FMULS {
    				continue
    			}
    			_ = v_0.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    func (s *state) peekPos() src.XPos {
    	return s.line[len(s.line)-1]
    }
    
    // newValue0 adds a new value with no arguments to the current block.
    func (s *state) newValue0(op ssa.Op, t *types.Type) *ssa.Value {
    	return s.curBlock.NewValue0(s.peekPos(), op, t)
    }
    
    // newValue0A adds a new value with no arguments and an aux value to the current block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

    - Adds CEL expressions to v1alpha1 AuthenticationConfiguration. ([#121078](https://github.com/kubernetes/kubernetes/pull/121078), [@aramase](https://github.com/aramase)) [SIG API Machinery, Auth and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

    ### Bug or Regression
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  5. CHANGELOG/CHANGELOG-1.30.md

    - Added apiserver_watch_cache_read_wait metric to measure watch cache impact on request latency. ([#123190](https://github.com/kubernetes/kubernetes/pull/123190), [@padlar](https://github.com/padlar)) [SIG API Machinery and Instrumentation]
    - Adds new flag, namely `custom`, in kubectl debug to let users customize pre-defined profiles. ([#120346](https://github.com/kubernetes/kubernetes/pull/120346), [@ardaguclu](https://github.com/ardaguclu)) [SIG CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - Adds auditAnnotations to ValidatingAdmissionPolicy, enabling CEL to be used to add audit annotations to request audit events.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  7. doc/go_spec.html

    the same number of fields with the same names and if the
    field types unify.
    The type argument for <code>P</code> is not known yet (there is no map entry),
    so unifying <code>P</code> with <code>string</code> adds
    the mapping <code>P ➞ string</code> to the map.
    Unifying the types of the <code>list</code> field requires
    unifying <code>[]P</code> and <code>[]string</code> and
    thus <code>P</code> and <code>string</code>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  8. docs/en/docs/release-notes.md

    ## 0.95.0
    
    ### Highlights
    
    This release adds support for dependencies and parameters using `Annotated` and recommends its usage. ✨
    
    This has **several benefits**, one of the main ones is that now the parameters of your functions with `Annotated` would **not be affected** at all.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    type http2inflow struct {
    	avail  int32
    	unsent int32
    }
    
    // init sets the initial window.
    func (f *http2inflow) init(n int32) {
    	f.avail = n
    }
    
    // add adds n bytes to the window, with a maximum window size of max,
    // indicating that the peer can now send us more data.
    // For example, the user read from a {Request,Response} body and consumed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (CSIVolumeSource) SwaggerDoc() map[string]string {
    	return map_CSIVolumeSource
    }
    
    var map_Capabilities = map[string]string{
    	"":     "Adds and removes POSIX capabilities from running containers.",
    	"add":  "Added capabilities",
    	"drop": "Removed capabilities",
    }
    
    func (Capabilities) SwaggerDoc() map[string]string {
    	return map_Capabilities
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top