Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for opcodes (0.36 sec)

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

    		call.AuxInt = stksize // Call operations carry the argsize of the callee along with them
    	}
    	s.prevCall = call
    	s.vars[memVar] = s.newValue1I(ssa.OpSelectN, types.TypeMem, int64(len(ACResults)), call)
    	// Insert VarLive opcodes.
    	for _, v := range n.KeepAlive {
    		if !v.Addrtaken() {
    			s.Fatalf("KeepAlive variable %v must have Addrtaken set", v)
    		}
    		switch v.Class {
    		case ir.PAUTO, ir.PPARAM, ir.PPARAMOUT:
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. ChangeLog.md

    - [`KT-61958`](https://youtrack.jetbrains.com/issue/KT-61958) Update SpiderMonkey and return its usage in box tests when they switch to the final opcodes for GC and FTR proposals
    - [`KT-60828`](https://youtrack.jetbrains.com/issue/KT-60828) K/Wasm: return br_on_cast_fail usages
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/avx_optabs.go

    //	- EVEX prefixes (evex-prefixed constants); similar to VEX
    //	- Displacement multiplier info (scale / broadcast scale)
    //	- Opcode byte; similar to VEX
    //
    // Both VEX and EVEX instructions may have opdigit (opcode extension) byte
    // which follows the primary opcode byte.
    // Because it can only have value of 0-7, it is written in octal notation.
    //
    // x86.csv can be very useful for figuring out proper [E]VEX parts.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 15:34:19 UTC 2018
    - 260.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'crawler.failure.url.status.codes'. <br>
         * The value is, e.g. 404 <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCrawlerFailureUrlStatusCodes();
    
        /**
         * Get the value for the key 'crawler.failure.url.status.codes' as {@link Integer}. <br>
         * The value is, e.g. 404 <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                            See the HTTPBackendRef definition for the rules about what
                            makes a single HTTPBackendRef invalid. \n When a HTTPBackendRef
                            is invalid, 500 status codes MUST be returned for requests
                            that would have otherwise been routed to an invalid backend.
                            If multiple backends are specified, and some are invalid,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.18.md

    - Make Azure clients only retry on specified HTTP status codes ([#88017](https://github.com/kubernetes/kubernetes/pull/88017), [@feiskyer](https://github.com/feiskyer)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    func http2checkWriteHeaderCode(code int) {
    	// Issue 22880: require valid WriteHeader status codes.
    	// For now we only enforce that it's three digits.
    	// In the future we might block things over 599 (600 and above aren't defined
    	// at http://httpwg.org/specs/rfc7231.html#status.codes).
    	// But for now any three digits.
    	//
    	// We used to send "HTTP/1.1 000 0" on the wire in responses but there's
    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