Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NOR (0.38 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

    but 1000 = 1k; I didn't choose the capitalization.)\n\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    func rewriteValuePPC64_OpCom16(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Com16 x)
    	// result: (NOR x x)
    	for {
    		x := v_0
    		v.reset(OpPPC64NOR)
    		v.AddArg2(x, x)
    		return true
    	}
    }
    func rewriteValuePPC64_OpCom32(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Com32 x)
    	// result: (NOR x x)
    	for {
    		x := v_0
    		v.reset(OpPPC64NOR)
    		v.AddArg2(x, x)
    		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)
  3. doc/go_spec.html

    <a href="#Method_declarations">methods</a> declared with receiver type <code>T</code>.
    </li>
    
    <li>
    The method set of a pointer to a defined type <code>T</code>
    (where <code>T</code> is neither a pointer nor an interface)
    is the set of all methods declared with receiver <code>*T</code> or <code>T</code>.
    </li>
    
    <li>The method set of an <a href="#Interface_types">interface type</a> is the intersection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - CEL can now correctly handle a CRD `openAPIV3Schema` that has neither `Properties` nor `AdditionalProperties`. ([#121459](https://github.com/kubernetes/kubernetes/pull/121459), [@jiahuif](https://github.com/jiahuif))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    type http2UnknownFrame struct {
    	http2FrameHeader
    	p []byte
    }
    
    // Payload returns the frame's payload (after the header).  It is not
    // valid to call this method after a subsequent call to
    // Framer.ReadFrame, nor is it valid to retain the returned slice.
    // The memory is owned by the Framer and is invalidated when the next
    // frame is read.
    func (f *http2UnknownFrame) Payload() []byte {
    	f.checkValid()
    	return f.p
    }
    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