Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for getProp3 (0.29 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    				ab.asmvex(ctxt, p.GetFrom3(), &p.To, nil, o.op[z], o.op[z+1])
    				ab.asmando(ctxt, cursym, p, p.GetFrom3(), int(o.op[z+2]))
    				ab.Put1(byte(p.From.Offset))
    
    			case Zvex_i_r_v:
    				ab.asmvex(ctxt, p.GetFrom3(), &p.To, nil, o.op[z], o.op[z+1])
    				regnum := byte(0x7)
    				if p.GetFrom3().Reg >= REG_X0 && p.GetFrom3().Reg <= REG_X15 {
    					regnum &= byte(p.GetFrom3().Reg - REG_X0)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionLifecycleIntegrationTest.groovy

            given:
            settingsFile << 'rootProject.name = "broken"'
            buildFile """
                interface ProjectModel {
                    ConfigurableFileCollection getProp()
                }
    
                project.extensions.create('thing', ProjectModel.class)
                thing.prop.disallowUnsafeRead()
                thing.prop.from(layout.buildDirectory)
    
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 10:55:07 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DefaultInstantiationSchemeTest.groovy

            Impl() {
                throw new RuntimeException("should not be called")
            }
        }
    
        static abstract class WithServices {
            @Inject
            abstract String getProp()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/link.go

    	Destination
    )
    
    // From3Type returns p.GetFrom3().Type, or TYPE_NONE when
    // p.GetFrom3() returns nil.
    func (p *Prog) From3Type() AddrType {
    	from3 := p.GetFrom3()
    	if from3 == nil {
    		return TYPE_NONE
    	}
    	return from3.Type
    }
    
    // GetFrom3 returns second source operand (the first is Prog.From).
    // The same kinds of operands are saved in order so GetFrom3 actually
    // return the first source operand in p.RestArgs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

                    String toString() { display.toString() }
                }
    
                abstract class MyTask extends DefaultTask {
                    @Input
                    abstract MapProperty<$keyType, $valueType> getProp()
    
                    @TaskAction
                    void go() {
                        println("prop = \${prop.get()}")
                    }
                }
    
                def key = new Param<String>(display: 'a')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CollectionPropertyIntegrationTest.groovy

                    T display
                    String toString() { display.toString() }
                }
    
                abstract class ATask extends DefaultTask {
                    @Input
                    abstract ListProperty<$type> getProp()
    
                    @TaskAction
                    void go() {
                        println("prop = \${prop.get()}")
                    }
                }
    
                tasks.create("thing", ATask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:57:00 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/AbstractOptionIntegrationSpec.groovy

                        this.prop2 = prop2;
                    }
                    
                    @Option(option = "prop3", description = "Configures command line option 'prop3'.")
                    public void setProp3(String prop3) {
                        this.prop3 = prop3;
                    }
                    
                    @TaskAction
                    public void renderOptionValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 09:40:56 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

        }
    
        interface Params extends BuildServiceParameters {
            String getProp()
    
            void setProp(String value)
        }
    
        static abstract class ServiceImpl implements BuildService<Params> {
            static List<ServiceImpl> instances = []
    
            String getProp() {
                return getParameters().prop
            }
    
            static void reset() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    		v := c.regoff(p.GetFrom3())
    
    		r := int(p.From.Reg)
    		o1 = AOP_IRR(c.opirr(p.As), uint32(p.To.Reg), uint32(r), uint32(v))
    
    	case 28: /* subc r1,$lcon,r2 ==> cau+or+subfc */
    		if p.To.Reg == REGTMP || p.From.Reg == REGTMP {
    			c.ctxt.Diag("can't synthesize large constant\n%v", p)
    		}
    		v := c.vregoff(p.GetFrom3())
    		o1 = AOP_IRR(OP_ADDIS, REGTMP, REGZERO, uint32(v)>>16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    			}
    		}
    		p.From.Class = int8(a1)
    	}
    
    	a2 := C_NONE
    	if p.Reg != 0 {
    		a2 = rclass(p.Reg)
    	}
    
    	a3 := C_NONE
    	if p.GetFrom3() != nil {
    		a3 = int(p.GetFrom3().Class)
    		if a3 == 0 {
    			a3 = c.aclass(p.GetFrom3())
    			p.GetFrom3().Class = int8(a3)
    		}
    	}
    
    	a4 := int(p.To.Class)
    	if a4 == 0 {
    		a4 = c.aclass(&p.To)
    		if p.To.Type == obj.TYPE_MEM {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top