Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for set_rsp (0.2 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/ClassInspectorTest.groovy

            String getProp() {
                return null
            }
    
            boolean isProp() {
                return false
            }
    
            void setProp(String value) {
            }
    
            void setProp(int value) {
            }
    
            void setProp(Object value) {
            }
        }
    
        class SubClass extends SomeClass {
            Long other
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. src/runtime/signal_windows.go

    	if ep.context.ip() == abi.FuncPCABI0(sigresume) {
    		// sigresume has already been set up by a previous exception.
    		return ret
    	}
    	prepareContextForSigResume(ep.context)
    	ep.context.set_sp(gp.m.g0.sched.sp)
    	ep.context.set_ip(abi.FuncPCABI0(sigresume))
    	return ret
    }
    
    // Called by sigtramp from Windows VEH handler.
    // Return value signals whether the exception has been handled (EXCEPTION_CONTINUE_EXECUTION)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/a.out.go

    	REG_V17
    	REG_V18
    	REG_V19
    	REG_V20
    	REG_V21
    	REG_V22
    	REG_V23
    	REG_V24
    	REG_V25
    	REG_V26
    	REG_V27
    	REG_V28
    	REG_V29
    	REG_V30
    	REG_V31
    
    	REG_RSP = REG_V31 + 32 // to differentiate ZR/SP, REG_RSP&0x1f = 31
    )
    
    // bits 0-4 indicates register: Vn
    // bits 5-8 indicates arrangement: <T>
    const (
    	REG_ARNG = obj.RBaseARM64 + 1<<10 + iota<<9 // Vn.<T>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

        }
    
        def "plugin can create instance of interface with mutable properties"() {
            buildFile """
                interface Thing {
                    String getProp()
                    void setProp(String value)
                }
    
                def t = objects.newInstance(Thing)
                assert t.prop == null
                t.prop = "value"
                assert t.prop == "value"
    """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. src/runtime/os_windows.go

    				c.set_sp(sp)
    				c.set_ip(targetPC)
    
    			case "arm":
    				// Push LR. The injected call is responsible
    				// for restoring LR. gentraceback is aware of
    				// this extra slot. See sigctxt.pushCall in
    				// signal_arm.go, which is similar except we
    				// subtract 1 from IP here.
    				sp := c.sp()
    				sp -= goarch.PtrSize
    				c.set_sp(sp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/shape_inference.cc

            TensorShapeProto shape_proto;
            context->ShapeHandleToProto(handle, &shape_proto);
            if (!shape_proto.unknown_rank()) {
              NodeDef const_def;
              const_def.set_op("Const");
              Node* var_node;
              TF_RETURN_IF_ERROR(n->input_node(0, &var_node));
              const_def.set_name(
                  graph->NewName(absl::StrCat("var_shape_", var_node->name())));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/node_matchers.cc

      props.set_name(std::move(name));
      return props;
    }
    
    // Matches a node with op `op`.
    impl::NodeMatcherProperties Op(string op) {
      impl::NodeMatcherProperties props;
      props.set_op(std::move(op));
      return props;
    }
    
    // Matches a node with assigned device `assigned_device`.
    impl::NodeMatcherProperties AssignedDevice(string assigned_device) {
      impl::NodeMatcherProperties props;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/obj7.go

    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    					}
    				}
    			}
    		}
    		if p.From.Type == obj.TYPE_SHIFT && (p.To.Reg == REG_RSP || p.Reg == REG_RSP) {
    			offset := p.From.Offset
    			op := offset & (3 << 22)
    			if op != SHIFT_LL {
    				ctxt.Diag("illegal combination: %v", p)
    			}
    			r := (offset >> 16) & 31
    			shift := (offset >> 10) & 63
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

        }
    
        class MyAspect implements ModelSchemaAspect {}
    
        @Managed
        static abstract class MyTypeOfAspect {
            abstract String getProp()
    
            abstract void setProp(String prop)
    
            String getCalculatedProp() {
                return "calc"
            }
        }
    
        def "aspects can be extracted"() {
            def aspect = new MyAspect()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
Back to top